/* eslint-disable lines-around-comment */ import React, { useCallback } from 'react'; import { WithTranslation } from 'react-i18next'; import { useSelector } from 'react-redux'; import { IState } from '../../../app/types'; import { isMobileBrowser } from '../../../base/environment/utils'; import { translate } from '../../../base/i18n/functions'; import { IconArrowUp } from '../../../base/icons/svg'; import { connect } from '../../../base/redux/functions'; // @ts-ignore import ToolboxButtonWithIconPopup from '../../../base/toolbox/components/web/ToolboxButtonWithIconPopup'; import { toggleReactionsMenuVisibility } from '../../actions.web'; import { ReactionEmojiProps } from '../../constants'; import { getReactionsQueue, isReactionsEnabled } from '../../functions.any'; import { getReactionsMenuVisibility } from '../../functions.web'; // @ts-ignore import RaiseHandButton from './RaiseHandButton'; import ReactionEmoji from './ReactionEmoji'; import ReactionsMenu from './ReactionsMenu'; interface Props extends WithTranslation { /** * Whether or not reactions are enabled. */ _reactionsEnabled: Boolean; /** * The button's key. */ buttonKey?: string; /** * Redux dispatch function. */ dispatch: Function; /** * Click handler for raise hand functionality. */ handleClick: Function; /** * Whether or not it's a mobile browser. */ isMobile: boolean; /** * Whether or not the reactions menu is open. */ isOpen: boolean; /** * Notify mode for `toolbarButtonClicked` event - * whether to only notify or to also prevent button click routine. */ notifyMode?: string; /** * The array of reactions to be displayed. */ reactionsQueue: Array; } /** * Button used for the reactions menu. * * @returns {ReactElement} */ function ReactionsMenuButton({ _reactionsEnabled, buttonKey, dispatch, handleClick, isOpen, isMobile, notifyMode, reactionsQueue, t }: Props) { const visible = useSelector(getReactionsMenuVisibility); const toggleReactionsMenu = useCallback(() => { dispatch(toggleReactionsMenuVisibility()); }, [ dispatch ]); const openReactionsMenu = useCallback(() => { !visible && toggleReactionsMenu(); }, [ visible, toggleReactionsMenu ]); const reactionsMenu = (
); return (
{!_reactionsEnabled || isMobile ? ( ) : ( )} {reactionsQueue.map(({ reaction, uid }, index) => ())}
); } /** * Function that maps parts of Redux state tree into component props. * * @param {Object} state - Redux state. * @returns {Object} */ function mapStateToProps(state: IState) { return { _reactionsEnabled: isReactionsEnabled(state), isOpen: getReactionsMenuVisibility(state), isMobile: isMobileBrowser(), reactionsQueue: getReactionsQueue(state) }; } export default translate(connect(mapStateToProps)(ReactionsMenuButton));