Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
86 lines
2.5 KiB
TypeScript
86 lines
2.5 KiB
TypeScript
import { connect } from 'react-redux';
|
|
|
|
import { IReduxState } from '../../../app/types';
|
|
import { openDialog } from '../../../base/dialog/actions';
|
|
import { isDialogOpen } from '../../../base/dialog/functions';
|
|
import { RAISE_HAND_ENABLED } from '../../../base/flags/constants';
|
|
import { getFeatureFlag } from '../../../base/flags/functions';
|
|
import { translate } from '../../../base/i18n/functions';
|
|
import { IconRaiseHand } from '../../../base/icons/svg';
|
|
import {
|
|
getLocalParticipant, hasRaisedHand
|
|
} from '../../../base/participants/functions';
|
|
import AbstractButton, { IProps as AbstractButtonProps } from '../../../base/toolbox/components/AbstractButton';
|
|
|
|
import ReactionMenuDialog from './ReactionMenuDialog';
|
|
|
|
/**
|
|
* The type of the React {@code Component} props of {@link ReactionsMenuButton}.
|
|
*/
|
|
interface IProps extends AbstractButtonProps {
|
|
|
|
/**
|
|
* Whether the participant raised their hand or not.
|
|
*/
|
|
_raisedHand: boolean;
|
|
|
|
/**
|
|
* Whether or not the reactions menu is open.
|
|
*/
|
|
_reactionsOpen: boolean;
|
|
}
|
|
|
|
/**
|
|
* An implementation of a button to raise or lower hand.
|
|
*/
|
|
class ReactionsMenuButton extends AbstractButton<IProps> {
|
|
override accessibilityLabel = 'toolbar.accessibilityLabel.reactionsMenu';
|
|
override icon = IconRaiseHand;
|
|
override label = 'toolbar.openReactionsMenu';
|
|
override toggledLabel = 'toolbar.closeReactionsMenu';
|
|
|
|
/**
|
|
* Handles clicking / pressing the button.
|
|
*
|
|
* @override
|
|
* @protected
|
|
* @returns {void}
|
|
*/
|
|
override _handleClick() {
|
|
this.props.dispatch(openDialog(ReactionMenuDialog));
|
|
}
|
|
|
|
/**
|
|
* Indicates whether this button is in toggled state or not.
|
|
*
|
|
* @override
|
|
* @protected
|
|
* @returns {boolean}
|
|
*/
|
|
override _isToggled() {
|
|
return this.props._raisedHand || this.props._reactionsOpen;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 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.
|
|
* @private
|
|
* @returns {IProps}
|
|
*/
|
|
function _mapStateToProps(state: IReduxState, ownProps: any) {
|
|
const _localParticipant = getLocalParticipant(state);
|
|
const enabled = getFeatureFlag(state, RAISE_HAND_ENABLED, true);
|
|
const { visible = enabled } = ownProps;
|
|
|
|
return {
|
|
_raisedHand: hasRaisedHand(_localParticipant),
|
|
_reactionsOpen: isDialogOpen(state, ReactionMenuDialog),
|
|
visible
|
|
};
|
|
}
|
|
|
|
export default translate(connect(_mapStateToProps)(ReactionsMenuButton));
|