import React, { useState } from 'react';
import { defineMessages } from 'react-intl';
import PropTypes from 'prop-types';
import BBBMenu from '/imports/ui/components/common/menu/component';
import { convertRemToPixels } from '/imports/utils/dom-utils';
import data from '@emoji-mart/data';
import { init } from 'emoji-mart';
import { SET_REACTION_EMOJI } from '/imports/ui/core/graphql/mutations/userMutations';
import { SET_AWAY } from '/imports/ui/components/user-list/user-list-content/user-participants/user-list-participants/user-actions/mutations';
import { useMutation } from '@apollo/client';
import Toggle from '/imports/ui/components/common/switch/component';
import useToggleVoice from '/imports/ui/components/audio/audio-graphql/hooks/useToggleVoice';
import {
muteAway,
} from '/imports/ui/components/audio/audio-graphql/audio-controls/input-stream-live-selector/service';
import Styled from './styles';
const ReactionsButton = (props) => {
const {
intl,
actionsBarRef,
away,
muted,
isMobile,
currentUserReaction,
autoCloseReactionsBar,
} = props;
const REACTIONS = window.meetingClientSettings.public.userReaction.reactions;
// initialize emoji-mart data, need for the new version
init({ data });
const [setAway] = useMutation(SET_AWAY);
const [setReactionEmoji] = useMutation(SET_REACTION_EMOJI);
const [showEmojiPicker, setShowEmojiPicker] = useState(false);
const voiceToggle = useToggleVoice();
const intlMessages = defineMessages({
reactionsLabel: {
id: 'app.actionsBar.reactions.reactionsButtonLabel',
description: 'reactions Label',
},
setAwayLabel: {
id: 'app.actionsBar.reactions.setAway',
description: 'setAway Label',
},
setActiveLabel: {
id: 'app.actionsBar.reactions.setActive',
description: 'setActive Label',
},
});
const handleClose = () => {
setShowEmojiPicker(false);
setTimeout(() => {
document.activeElement.blur();
}, 0);
};
const handleReactionSelect = (reaction) => {
setReactionEmoji({ variables: { reactionEmoji: reaction } });
};
const handleToggleAFK = () => {
muteAway(muted, away, voiceToggle);
setAway({
variables: {
away: !away,
},
});
};
const ToggleAFKLabel = () => (away
? intl.formatMessage(intlMessages.setActiveLabel)
: intl.formatMessage(intlMessages.setAwayLabel));
const customStyles = {
top: '-1rem',
borderRadius: '1.7rem',
};
const actionCustomStyles = {
paddingLeft: 0,
paddingRight: 0,
paddingTop: isMobile ? '0' : '0.5rem',
paddingBottom: isMobile ? '0' : '0.5rem',
};
const emojiProps = {
size: convertRemToPixels(1.5),
padding: '4px',
};
const awayReaction = {
id: 'clock7',
native: '⏰',
};
let actions = [];
REACTIONS.forEach(({ id, native }) => {
actions.push({
label: ,
key: id,
onClick: () => handleReactionSelect(native),
customStyles: actionCustomStyles,
});
});
actions.push({
label:
{isMobile ? (
{ToggleAFKLabel()}
) : (
<>
{ToggleAFKLabel()}
>
)}
,
key: 'none',
isToggle: true,
customStyles: { ...actionCustomStyles, width: 'auto' },
});
const svgIcon = !away && currentUserReaction === 'none' ? 'reactions' : null;
const currentUserReactionEmoji = REACTIONS.find(({ native }) => native === currentUserReaction);
let customIcon = null;
if (!svgIcon) {
customIcon = ;
}
if (away) {
customIcon = ;
}
return (
{ }}
onClick={() => setShowEmojiPicker(true)}
color={showEmojiPicker || customIcon ? 'primary' : 'default'}
hideLabel
circle
size="lg"
/>
)}
actions={actions}
onCloseCallback={() => handleClose()}
customAnchorEl={!isMobile ? actionsBarRef.current : null}
customStyles={customStyles}
open={showEmojiPicker}
hasRoundedCorners
overrideMobileStyles
isHorizontal={!isMobile}
isMobile={isMobile}
isEmoji
roundButtons
keepOpen={!autoCloseReactionsBar}
opts={{
id: 'reactions-dropdown-menu',
keepMounted: true,
transitionDuration: 0,
elevation: 3,
getcontentanchorel: null,
anchorOrigin: { vertical: 'top', horizontal: 'center' },
transformOrigin: { vertical: 'bottom', horizontal: 'center' },
}}
/>
);
};
const propTypes = {
intl: PropTypes.shape({
formatMessage: PropTypes.func.isRequired,
}).isRequired,
userId: PropTypes.string.isRequired,
sidebarContentPanel: PropTypes.string.isRequired,
layoutContextDispatch: PropTypes.func.isRequired,
muted: PropTypes.bool.isRequired,
};
ReactionsButton.propTypes = propTypes;
export default ReactionsButton;