2019-01-08 02:12:28 +08:00
|
|
|
import React from 'react';
|
2020-05-26 04:00:13 +08:00
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
2019-01-08 02:12:28 +08:00
|
|
|
import Button from '/imports/ui/components/button/component';
|
2019-01-15 21:13:55 +08:00
|
|
|
import cx from 'classnames';
|
2019-02-08 01:47:28 +08:00
|
|
|
import PropTypes from 'prop-types';
|
2019-01-25 21:06:17 +08:00
|
|
|
import { styles } from './styles';
|
2021-06-25 00:47:16 +08:00
|
|
|
import { ACTIONS } from '../layout/enums';
|
2019-01-08 02:12:28 +08:00
|
|
|
|
|
|
|
const intlMessages = defineMessages({
|
|
|
|
fullscreenButton: {
|
|
|
|
id: 'app.fullscreenButton.label',
|
|
|
|
description: 'Fullscreen label',
|
|
|
|
},
|
2020-10-04 10:06:54 +08:00
|
|
|
fullscreenUndoButton: {
|
|
|
|
id: 'app.fullscreenUndoButton.label',
|
|
|
|
description: 'Undo fullscreen label',
|
|
|
|
},
|
2019-01-08 02:12:28 +08:00
|
|
|
});
|
|
|
|
|
2019-02-08 01:47:28 +08:00
|
|
|
const propTypes = {
|
2021-07-13 03:47:06 +08:00
|
|
|
intl: PropTypes.shape({
|
|
|
|
formatMessage: PropTypes.func.isRequired,
|
|
|
|
}).isRequired,
|
2019-02-08 01:47:28 +08:00
|
|
|
dark: PropTypes.bool,
|
2019-07-24 06:24:31 +08:00
|
|
|
bottom: PropTypes.bool,
|
|
|
|
isIphone: PropTypes.bool,
|
|
|
|
isFullscreen: PropTypes.bool,
|
2019-02-08 01:47:28 +08:00
|
|
|
elementName: PropTypes.string,
|
2019-04-14 05:22:47 +08:00
|
|
|
className: PropTypes.string,
|
2019-02-08 01:47:28 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
const defaultProps = {
|
|
|
|
dark: false,
|
2019-07-24 06:24:31 +08:00
|
|
|
bottom: false,
|
|
|
|
isIphone: false,
|
|
|
|
isFullscreen: false,
|
2019-02-08 01:47:28 +08:00
|
|
|
elementName: '',
|
2019-04-14 05:22:47 +08:00
|
|
|
className: '',
|
2019-02-08 01:47:28 +08:00
|
|
|
};
|
|
|
|
|
2019-02-07 05:12:59 +08:00
|
|
|
const FullscreenButtonComponent = ({
|
2019-03-12 00:21:12 +08:00
|
|
|
intl,
|
|
|
|
dark,
|
2019-07-24 03:56:39 +08:00
|
|
|
bottom,
|
2019-03-12 00:21:12 +08:00
|
|
|
elementName,
|
2021-07-06 19:28:17 +08:00
|
|
|
elementId,
|
2021-07-13 03:47:06 +08:00
|
|
|
elementGroup,
|
2019-04-14 05:22:47 +08:00
|
|
|
className,
|
2019-06-17 23:55:53 +08:00
|
|
|
isIphone,
|
2019-07-24 03:56:39 +08:00
|
|
|
isFullscreen,
|
2021-08-05 19:03:24 +08:00
|
|
|
layoutContextDispatch,
|
2021-07-06 19:28:17 +08:00
|
|
|
currentElement,
|
2021-07-13 03:47:06 +08:00
|
|
|
currentGroup,
|
2019-02-07 05:12:59 +08:00
|
|
|
}) => {
|
2019-06-17 23:55:53 +08:00
|
|
|
if (isIphone) return null;
|
|
|
|
|
2021-07-13 03:47:06 +08:00
|
|
|
const formattedLabel = (fullscreen) => (fullscreen
|
|
|
|
? intl.formatMessage(
|
|
|
|
intlMessages.fullscreenUndoButton,
|
|
|
|
({ 0: elementName || '' }),
|
|
|
|
)
|
|
|
|
: intl.formatMessage(
|
|
|
|
intlMessages.fullscreenButton,
|
|
|
|
({ 0: elementName || '' }),
|
|
|
|
)
|
|
|
|
);
|
2019-02-07 05:12:59 +08:00
|
|
|
|
2019-03-12 00:21:12 +08:00
|
|
|
const wrapperClassName = cx({
|
|
|
|
[styles.wrapper]: true,
|
|
|
|
[styles.dark]: dark,
|
|
|
|
[styles.light]: !dark,
|
2019-07-24 03:56:39 +08:00
|
|
|
[styles.top]: !bottom,
|
|
|
|
[styles.bottom]: bottom,
|
2019-03-12 00:21:12 +08:00
|
|
|
});
|
|
|
|
|
2021-06-25 00:47:16 +08:00
|
|
|
const handleClick = () => {
|
2021-08-05 12:22:07 +08:00
|
|
|
const newElement = (elementId === currentElement) ? '' : elementId;
|
|
|
|
const newGroup = (elementGroup === currentGroup) ? '' : elementGroup;
|
2021-07-06 00:52:25 +08:00
|
|
|
|
2021-08-05 19:03:24 +08:00
|
|
|
layoutContextDispatch({
|
2021-08-05 12:22:07 +08:00
|
|
|
type: ACTIONS.SET_FULLSCREEN_ELEMENT,
|
|
|
|
value: {
|
|
|
|
element: newElement,
|
|
|
|
group: newGroup,
|
|
|
|
},
|
|
|
|
});
|
2021-07-13 03:47:06 +08:00
|
|
|
};
|
2021-06-25 00:47:16 +08:00
|
|
|
|
2019-02-07 05:12:59 +08:00
|
|
|
return (
|
2019-03-12 00:21:12 +08:00
|
|
|
<div className={wrapperClassName}>
|
2019-02-07 05:12:59 +08:00
|
|
|
<Button
|
|
|
|
color="default"
|
2019-07-24 03:56:39 +08:00
|
|
|
icon={!isFullscreen ? 'fullscreen' : 'exit_fullscreen'}
|
2019-02-07 05:12:59 +08:00
|
|
|
size="sm"
|
2021-06-25 00:47:16 +08:00
|
|
|
onClick={() => handleClick()}
|
2020-10-04 10:06:54 +08:00
|
|
|
label={formattedLabel(isFullscreen)}
|
2019-02-07 05:12:59 +08:00
|
|
|
hideLabel
|
2019-04-14 05:22:47 +08:00
|
|
|
className={cx(styles.button, styles.fullScreenButton, className)}
|
2019-06-22 04:11:05 +08:00
|
|
|
data-test="presentationFullscreenButton"
|
2019-02-07 05:12:59 +08:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
2019-01-08 02:12:28 +08:00
|
|
|
|
2019-02-08 01:47:28 +08:00
|
|
|
FullscreenButtonComponent.propTypes = propTypes;
|
|
|
|
FullscreenButtonComponent.defaultProps = defaultProps;
|
|
|
|
|
2019-01-08 02:12:28 +08:00
|
|
|
export default injectIntl(FullscreenButtonComponent);
|