123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- // @flow
-
- import type { Dispatch } from 'redux';
-
- import { openDialog } from '../../../base/dialog';
- import { translate } from '../../../base/i18n';
- import { IconParticipants } from '../../../base/icons';
- import { connect } from '../../../base/redux';
- import { AbstractButton, type AbstractButtonProps } from '../../../base/toolbox/components';
-
- import { ParticipantsPane } from './';
-
- type Props = AbstractButtonProps & {
-
- /**
- * The redux {@code dispatch} function.
- */
- dispatch: Dispatch<any>
- };
-
-
- /**
- * Implements an {@link AbstractButton} to open the participants panel.
- */
- class ParticipantsPaneButton extends AbstractButton<Props, *> {
- accessibilityLabel = 'toolbar.accessibilityLabel.participants';
- icon = IconParticipants;
- label = 'toolbar.participants';
-
- /**
- * Handles clicking / pressing the button, and opens the participants panel.
- *
- * @private
- * @returns {void}
- */
- _handleClick() {
- this.props.dispatch(openDialog(ParticipantsPane));
- }
- }
-
- /**
- * Maps part of the redux state to the component's props.
- *
- * @param {Object} state - The redux store/state.
- * @returns {Props}
- */
- function mapStateToProps(state: Object) {
-
- return {
- state
- };
- }
-
- export default translate(connect(mapStateToProps)(ParticipantsPaneButton));
|