1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- import { connect } from 'react-redux';
-
- import { createToolbarEvent } from '../../../analytics/AnalyticsEvents';
- import { sendAnalytics } from '../../../analytics/functions';
- import { IReduxState, IStore } from '../../../app/types';
- import { translate } from '../../../base/i18n/functions';
- import { IconRaiseHand } from '../../../base/icons/svg';
- import { raiseHand } from '../../../base/participants/actions';
- import { getLocalParticipant, hasRaisedHand } from '../../../base/participants/functions';
- import AbstractButton, { IProps as AbstractButtonProps } from '../../../base/toolbox/components/AbstractButton';
-
-
- /**
- * The type of the React {@code Component} props of {@link RaiseHandButton}.
- */
- interface IProps extends AbstractButtonProps {
-
- /**
- * Whether or not the click is disabled.
- */
- disableClick?: boolean;
-
- /**
- * Redux dispatch function.
- */
- dispatch: IStore['dispatch'];
-
- /**
- * Whether or not the hand is raised.
- */
- raisedHand: boolean;
- }
-
- /**
- * Implementation of a button for raising hand.
- */
- class RaiseHandButton extends AbstractButton<IProps> {
- accessibilityLabel = 'toolbar.accessibilityLabel.raiseHand';
- toggledAccessibilityLabel = 'toolbar.accessibilityLabel.lowerHand';
- icon = IconRaiseHand;
- label = 'toolbar.raiseHand';
- toggledLabel = 'toolbar.lowerYourHand';
- tooltip = 'toolbar.raiseHand';
- toggledTooltip = 'toolbar.lowerYourHand';
-
- /**
- * Indicates whether this button is in toggled state or not.
- *
- * @override
- * @protected
- * @returns {boolean}
- */
- _isToggled() {
- return this.props.raisedHand;
- }
-
- /**
- * Handles clicking the button, and toggles the raise hand.
- *
- * @private
- * @returns {void}
- */
- _handleClick() {
- const { disableClick, dispatch, raisedHand } = this.props;
-
- if (disableClick) {
- return;
- }
-
- sendAnalytics(createToolbarEvent(
- 'raise.hand',
- { enable: !raisedHand }));
-
- dispatch(raiseHand(!raisedHand));
- }
- }
-
-
- /**
- * Function that maps parts of Redux state tree into component props.
- *
- * @param {Object} state - Redux state.
- * @returns {Object}
- */
- const mapStateToProps = (state: IReduxState) => {
- const localParticipant = getLocalParticipant(state);
-
- return {
- raisedHand: hasRaisedHand(localParticipant)
- };
- };
-
- export { RaiseHandButton };
-
- export default translate(connect(mapStateToProps)(RaiseHandButton));
|