1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- import { connect } from 'react-redux';
-
- import { createToolbarEvent } from '../../../analytics/AnalyticsEvents';
- import { sendAnalytics } from '../../../analytics/functions';
- import { IReduxState } from '../../../app/types';
- import { isIosMobileBrowser } from '../../../base/environment/utils';
- import { translate } from '../../../base/i18n/functions';
- import { IconEnterFullscreen, IconExitFullscreen } from '../../../base/icons/svg';
- import AbstractButton, { IProps as AbstractButtonProps } from '../../../base/toolbox/components/AbstractButton';
- import { closeOverflowMenuIfOpen, setFullScreen } from '../../actions.web';
-
- interface IProps extends AbstractButtonProps {
-
- /**
- * Whether or not the app is currently in full screen.
- */
- _fullScreen?: boolean;
- }
-
- /**
- * Implementation of a button for toggling fullscreen state.
- */
- class FullscreenButton extends AbstractButton<IProps> {
- accessibilityLabel = 'toolbar.accessibilityLabel.enterFullScreen';
- toggledAccessibilityLabel = 'toolbar.accessibilityLabel.exitFullScreen';
- label = 'toolbar.enterFullScreen';
- toggledLabel = 'toolbar.exitFullScreen';
- tooltip = 'toolbar.enterFullScreen';
- toggledTooltip = 'toolbar.exitFullScreen';
- toggledIcon = IconExitFullscreen;
- icon = IconEnterFullscreen;
-
- /**
- * Indicates whether this button is in toggled state or not.
- *
- * @override
- * @protected
- * @returns {boolean}
- */
- _isToggled() {
- return this.props._fullScreen;
- }
-
- /**
- * Handles clicking the button, and toggles fullscreen.
- *
- * @private
- * @returns {void}
- */
- _handleClick() {
- const { dispatch, _fullScreen } = this.props;
-
- sendAnalytics(createToolbarEvent(
- 'toggle.fullscreen',
- {
- enable: !_fullScreen
- }));
- dispatch(closeOverflowMenuIfOpen());
-
- dispatch(setFullScreen(!_fullScreen));
- }
- }
-
- /**
- * Function that maps parts of Redux state tree into component props.
- *
- * @param {Object} state - Redux state.
- * @returns {Object}
- */
- const mapStateToProps = (state: IReduxState) => {
- return {
- _fullScreen: state['features/toolbox'].fullScreen,
- visible: !isIosMobileBrowser()
- };
- };
-
- export default translate(connect(mapStateToProps)(FullscreenButton));
|