123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244 |
- // @flow
-
- import React, { Component } from 'react';
- import { bindActionCreators } from 'redux';
-
- import {
- createReactionMenuEvent,
- createToolbarEvent,
- sendAnalytics
- } from '../../../analytics';
- import { translate } from '../../../base/i18n';
- import { getLocalParticipant, getParticipantCount, participantUpdated } from '../../../base/participants';
- import { connect } from '../../../base/redux';
- import { dockToolbox } from '../../../toolbox/actions.web';
- import { addReactionToBuffer } from '../../actions.any';
- import { toggleReactionsMenuVisibility } from '../../actions.web';
- import { REACTIONS } from '../../constants';
-
- import ReactionButton from './ReactionButton';
-
- type Props = {
-
- /**
- * The number of conference participants.
- */
- _participantCount: number,
-
- /**
- * Used for translation.
- */
- t: Function,
-
- /**
- * Whether or not the local participant's hand is raised.
- */
- _raisedHand: boolean,
-
- /**
- * The ID of the local participant.
- */
- _localParticipantID: String,
-
- /**
- * The Redux Dispatch function.
- */
- dispatch: Function,
-
- /**
- * Docks the toolbox
- */
- _dockToolbox: Function,
-
- /**
- * Whether or not it's displayed in the overflow menu.
- */
- overflowMenu: boolean
- };
-
- declare var APP: Object;
-
- /**
- * Implements the reactions menu.
- *
- * @returns {ReactElement}
- */
- class ReactionsMenu extends Component<Props> {
- /**
- * Initializes a new {@code ReactionsMenu} instance.
- *
- * @param {Props} props - The read-only React {@code Component} props with
- * which the new instance is to be initialized.
- */
- constructor(props: Props) {
- super(props);
-
- this._onToolbarToggleRaiseHand = this._onToolbarToggleRaiseHand.bind(this);
- this._getReactionButtons = this._getReactionButtons.bind(this);
- }
-
- _onToolbarToggleRaiseHand: () => void;
-
- _getReactionButtons: () => Array<React$Element<*>>;
-
- /**
- * Implements React Component's componentDidMount.
- *
- * @inheritdoc
- */
- componentDidMount() {
- this.props._dockToolbox(true);
- }
-
- /**
- * Implements React Component's componentWillUnmount.
- *
- * @inheritdoc
- */
- componentWillUnmount() {
- this.props._dockToolbox(false);
- }
-
- /**
- * Creates an analytics toolbar event and dispatches an action for toggling
- * raise hand.
- *
- * @returns {void}
- */
- _onToolbarToggleRaiseHand() {
- const { dispatch, _raisedHand } = this.props;
-
- sendAnalytics(createToolbarEvent(
- 'raise.hand',
- { enable: !_raisedHand }));
- this._doToggleRaiseHand();
- dispatch(toggleReactionsMenuVisibility());
- }
-
- /**
- * Dispatches an action to toggle the local participant's raised hand state.
- *
- * @private
- * @returns {void}
- */
- _doToggleRaiseHand() {
- const { _localParticipantID, _raisedHand } = this.props;
- const newRaisedStatus = !_raisedHand;
-
- this.props.dispatch(participantUpdated({
- // XXX Only the local participant is allowed to update without
- // stating the JitsiConference instance (i.e. participant property
- // `conference` for a remote participant) because the local
- // participant is uniquely identified by the very fact that there is
- // only one local participant.
-
- id: _localParticipantID,
- local: true,
- raisedHand: newRaisedStatus
- }));
-
- APP.API.notifyRaiseHandUpdated(_localParticipantID, newRaisedStatus);
- }
-
- /**
- * Returns the emoji reaction buttons.
- *
- * @returns {Array}
- */
- _getReactionButtons() {
- const { t, dispatch } = this.props;
- let modifierKey = 'Alt';
-
- if (window.navigator?.platform) {
- if (window.navigator.platform.indexOf('Mac') !== -1) {
- modifierKey = '⌥';
- }
- }
-
- return Object.keys(REACTIONS).map(key => {
- /**
- * Sends reaction message.
- *
- * @returns {void}
- */
- function doSendReaction() {
- dispatch(addReactionToBuffer(key));
- sendAnalytics(createReactionMenuEvent(key));
- }
-
- return (<ReactionButton
- accessibilityLabel = { t(`toolbar.accessibilityLabel.${key}`) }
- icon = { REACTIONS[key].emoji }
- key = { key }
- onClick = { doSendReaction }
- toggled = { false }
- tooltip = { `${t(`toolbar.${key}`)} (${modifierKey} + ${REACTIONS[key].shortcutChar})` } />);
- });
- }
-
- /**
- * Implements React's {@link Component#render}.
- *
- * @inheritdoc
- */
- render() {
- const { _participantCount, _raisedHand, t, overflowMenu } = this.props;
-
- return (
- <div className = { `reactions-menu ${overflowMenu ? 'overflow' : ''}` }>
- { _participantCount > 1 && <div className = 'reactions-row'>
- { this._getReactionButtons() }
- </div> }
- <div className = 'raise-hand-row'>
- <ReactionButton
- accessibilityLabel = { t('toolbar.accessibilityLabel.raiseHand') }
- icon = '✋'
- key = 'raisehand'
- label = {
- `${t(`toolbar.${_raisedHand ? 'lowerYourHand' : 'raiseYourHand'}`)}
- ${overflowMenu ? '' : ' (R)'}`
- }
- onClick = { this._onToolbarToggleRaiseHand }
- toggled = { true } />
- </div>
- </div>
- );
- }
- }
-
- /**
- * Function that maps parts of Redux state tree into component props.
- *
- * @param {Object} state - Redux state.
- * @returns {Object}
- */
- function mapStateToProps(state) {
- const localParticipant = getLocalParticipant(state);
-
- return {
- _localParticipantID: localParticipant.id,
- _raisedHand: localParticipant.raisedHand,
- _participantCount: getParticipantCount(state)
- };
- }
-
- /**
- * Function that maps parts of Redux actions into component props.
- *
- * @param {Object} dispatch - Redux dispatch.
- * @returns {Object}
- */
- function mapDispatchToProps(dispatch) {
- return {
- dispatch,
- ...bindActionCreators(
- {
- _dockToolbox: dockToolbox
- }, dispatch)
- };
- }
-
- export default translate(connect(
- mapStateToProps,
- mapDispatchToProps,
- )(ReactionsMenu));
|