1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- import { connect } from 'react-redux';
-
- import { IReduxState } from '../../../app/types';
- import { translate } from '../../../base/i18n/functions';
- import { IconEnterFullscreen, IconExitFullscreen } from '../../../base/icons/svg';
- import AbstractButton, { IProps as AbstractButtonProps } from '../../../base/toolbox/components/AbstractButton';
-
- 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;
- }
- }
-
- /**
- * 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
- };
- };
-
- export default translate(connect(mapStateToProps)(FullscreenButton));
|