1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- // @flow
-
- import { createToolbarEvent, sendAnalytics } from '../../analytics';
- import { translate } from '../../base/i18n';
- import { IconShareDoc } from '../../base/icons';
- import { connect } from '../../base/redux';
- import { AbstractButton, type AbstractButtonProps } from '../../base/toolbox/components';
- import { navigate } from '../../mobile/navigation/components/conference/ConferenceNavigationContainerRef';
- import { screen } from '../../mobile/navigation/routes';
-
-
- type Props = AbstractButtonProps;
-
- /**
- * Implements an {@link AbstractButton} to open the chat screen on mobile.
- */
- class SharedDocumentButton extends AbstractButton<Props, *> {
- accessibilityLabel = 'toolbar.accessibilityLabel.document';
- icon = IconShareDoc;
- label = 'toolbar.documentOpen';
- tooltip = 'toolbar.documentOpen';
-
- /**
- * Handles clicking / pressing the button, and opens / closes the appropriate dialog.
- *
- * @private
- * @returns {void}
- */
- _handleClick() {
- const { handleClick } = this.props;
-
- if (handleClick) {
- handleClick();
-
- return;
- }
-
- sendAnalytics(createToolbarEvent(
- 'toggle.etherpad',
- {
- enable: true
- }));
-
- navigate(screen.conference.sharedDocument);
- }
- }
-
- /**
- * Maps part of the redux state to the component's props.
- *
- * @param {Object} state - The redux store/state.
- * @param {Object} ownProps - The properties explicitly passed to the component
- * instance.
- * @returns {Object}
- */
- function _mapStateToProps(state: Object, ownProps: Object) {
- const { documentUrl } = state['features/etherpad'];
- const { visible = Boolean(documentUrl) } = ownProps;
-
- return {
- visible
- };
- }
-
- export default translate(connect(_mapStateToProps)(SharedDocumentButton));
|