jiti-meet/react/features/reactions/components/native/ReactionsMenuButton.js

91 lines
2.4 KiB
JavaScript
Raw Normal View History

2019-03-27 13:47:19 +00:00
// @flow
import { type Dispatch } from 'redux';
import { isDialogOpen, openDialog } from '../../../base/dialog';
2020-05-20 10:57:03 +00:00
import { RAISE_HAND_ENABLED, getFeatureFlag } from '../../../base/flags';
2019-03-27 13:47:19 +00:00
import { translate } from '../../../base/i18n';
2019-08-30 16:39:06 +00:00
import { IconRaisedHand } from '../../../base/icons';
2019-03-27 13:47:19 +00:00
import {
getLocalParticipant
2019-03-27 13:47:19 +00:00
} from '../../../base/participants';
import { connect } from '../../../base/redux';
2020-07-24 12:14:33 +00:00
import { AbstractButton, type AbstractButtonProps } from '../../../base/toolbox/components';
2019-03-27 13:47:19 +00:00
import ReactionMenuDialog from './ReactionMenuDialog';
2019-03-27 13:47:19 +00:00
/**
* The type of the React {@code Component} props of {@link ReactionsMenuButton}.
2019-03-27 13:47:19 +00:00
*/
type Props = AbstractButtonProps & {
/**
* Whether the participant raised their hand or not.
2019-03-27 13:47:19 +00:00
*/
_raisedHand: boolean,
2019-03-27 13:47:19 +00:00
/**
* Whether or not the reactions menu is open.
2019-03-27 13:47:19 +00:00
*/
_reactionsOpen: boolean,
2019-03-27 13:47:19 +00:00
/**
* The redux {@code dispatch} function.
*/
dispatch: Dispatch<any>
};
/**
* An implementation of a button to raise or lower hand.
*/
class ReactionsMenuButton extends AbstractButton<Props, *> {
accessibilityLabel = 'toolbar.accessibilityLabel.reactionsMenu';
2019-08-30 16:39:06 +00:00
icon = IconRaisedHand;
label = 'toolbar.openReactionsMenu';
toggledLabel = 'toolbar.closeReactionsMenu';
2019-03-27 13:47:19 +00:00
/**
* Handles clicking / pressing the button.
*
* @override
* @protected
* @returns {void}
*/
_handleClick() {
this.props.dispatch(openDialog(ReactionMenuDialog));
2019-03-27 13:47:19 +00:00
}
/**
* Indicates whether this button is in toggled state or not.
*
* @override
* @protected
* @returns {boolean}
*/
_isToggled() {
return this.props._raisedHand || this.props._reactionsOpen;
2019-03-27 13:47:19 +00:00
}
}
/**
* Maps part of the Redux state to the props of this component.
*
* @param {Object} state - The Redux state.
* @param {Object} ownProps - The properties explicitly passed to the component instance.
2019-03-27 13:47:19 +00:00
* @private
* @returns {Props}
2019-03-27 13:47:19 +00:00
*/
function _mapStateToProps(state, ownProps): Object {
2019-03-27 13:47:19 +00:00
const _localParticipant = getLocalParticipant(state);
const enabled = getFeatureFlag(state, RAISE_HAND_ENABLED, true);
const { visible = enabled } = ownProps;
2019-03-27 13:47:19 +00:00
return {
_raisedHand: _localParticipant.raisedHand,
_reactionsOpen: isDialogOpen(state, ReactionMenuDialog),
visible
2019-03-27 13:47:19 +00:00
};
}
export default translate(connect(_mapStateToProps)(ReactionsMenuButton));