2019-03-19 20:58:21 +08:00
|
|
|
import React, { PureComponent } from 'react';
|
2017-06-04 10:40:14 +08:00
|
|
|
import PropTypes from 'prop-types';
|
2017-04-05 22:25:26 +08:00
|
|
|
import Button from '/imports/ui/components/button/component';
|
2016-09-01 03:52:17 +08:00
|
|
|
import cx from 'classnames';
|
2019-05-17 06:13:08 +08:00
|
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
2017-10-06 20:50:01 +08:00
|
|
|
import ModalBase, { withModalState } from '../base/component';
|
2018-01-08 14:17:18 +08:00
|
|
|
import { styles } from './styles.scss';
|
2016-09-01 03:52:17 +08:00
|
|
|
|
2019-05-17 06:13:08 +08:00
|
|
|
const intlMessages = defineMessages({
|
|
|
|
modalClose: {
|
|
|
|
id: 'app.modal.close',
|
|
|
|
description: 'Close',
|
|
|
|
},
|
|
|
|
modalCloseDescription: {
|
|
|
|
id: 'app.modal.close.description',
|
|
|
|
description: 'Disregards changes and closes the modal',
|
|
|
|
},
|
|
|
|
modalDone: {
|
|
|
|
id: 'app.modal.confirm',
|
|
|
|
description: 'Close',
|
|
|
|
},
|
|
|
|
modalDoneDescription: {
|
|
|
|
id: 'app.modal.confirm.description',
|
|
|
|
description: 'Disregards changes and closes the modal',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2016-09-01 03:52:17 +08:00
|
|
|
const propTypes = {
|
|
|
|
title: PropTypes.string.isRequired,
|
|
|
|
confirm: PropTypes.shape({
|
|
|
|
callback: PropTypes.func.isRequired,
|
2017-10-02 22:12:58 +08:00
|
|
|
disabled: PropTypes.bool,
|
2016-09-01 03:52:17 +08:00
|
|
|
}),
|
|
|
|
dismiss: PropTypes.shape({
|
|
|
|
callback: PropTypes.func,
|
2017-10-02 22:12:58 +08:00
|
|
|
disabled: PropTypes.bool,
|
2016-09-01 03:52:17 +08:00
|
|
|
}),
|
2017-10-02 22:12:58 +08:00
|
|
|
preventClosing: PropTypes.bool,
|
2016-09-01 03:52:17 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
const defaultProps = {
|
2017-04-05 22:25:26 +08:00
|
|
|
shouldCloseOnOverlayClick: false,
|
2016-09-01 03:52:17 +08:00
|
|
|
confirm: {
|
2017-10-02 22:12:58 +08:00
|
|
|
disabled: false,
|
2016-09-01 03:52:17 +08:00
|
|
|
},
|
|
|
|
dismiss: {
|
2017-10-02 22:12:58 +08:00
|
|
|
disabled: false,
|
2016-09-01 03:52:17 +08:00
|
|
|
},
|
2017-10-02 22:12:58 +08:00
|
|
|
preventClosing: false,
|
2016-09-01 03:52:17 +08:00
|
|
|
};
|
|
|
|
|
2019-03-19 20:58:21 +08:00
|
|
|
class ModalFullscreen extends PureComponent {
|
2017-04-05 22:25:26 +08:00
|
|
|
handleAction(name) {
|
|
|
|
const action = this.props[name];
|
2017-10-02 22:12:58 +08:00
|
|
|
return this.props.modalHide(action.callback);
|
2016-09-01 03:52:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const {
|
2019-05-17 06:13:08 +08:00
|
|
|
intl,
|
2016-09-01 03:52:17 +08:00
|
|
|
title,
|
|
|
|
confirm,
|
2017-04-19 03:06:51 +08:00
|
|
|
dismiss,
|
|
|
|
className,
|
|
|
|
modalisOpen,
|
2017-10-02 22:12:58 +08:00
|
|
|
preventClosing,
|
|
|
|
...otherProps
|
2016-09-01 03:52:17 +08:00
|
|
|
} = this.props;
|
|
|
|
|
|
|
|
return (
|
2017-04-19 03:06:51 +08:00
|
|
|
<ModalBase
|
2017-10-02 22:12:58 +08:00
|
|
|
isOpen={modalisOpen || preventClosing}
|
2017-04-19 03:06:51 +08:00
|
|
|
className={cx(className, styles.modal)}
|
|
|
|
contentLabel={title}
|
|
|
|
{...otherProps}
|
|
|
|
>
|
2016-09-01 03:52:17 +08:00
|
|
|
<header className={styles.header}>
|
|
|
|
<h1 className={styles.title}>{title}</h1>
|
|
|
|
<div className={styles.actions}>
|
|
|
|
<Button
|
2019-05-09 03:13:05 +08:00
|
|
|
data-test="modalDismissButton"
|
2016-09-01 03:52:17 +08:00
|
|
|
className={styles.dismiss}
|
2019-05-17 06:13:08 +08:00
|
|
|
label={intl.formatMessage(intlMessages.modalClose)}
|
|
|
|
aria-label={`${intl.formatMessage(intlMessages.modalClose)} ${title}`}
|
2017-10-02 22:12:58 +08:00
|
|
|
disabled={dismiss.disabled}
|
2017-10-11 23:06:29 +08:00
|
|
|
onClick={this.handleAction.bind(this, 'dismiss')}
|
2019-05-09 03:13:05 +08:00
|
|
|
aria-describedby="modalDismissDescription"
|
2017-10-02 22:12:58 +08:00
|
|
|
/>
|
2016-09-01 03:52:17 +08:00
|
|
|
<Button
|
2019-05-09 03:13:05 +08:00
|
|
|
data-test="modalConfirmButton"
|
|
|
|
color="primary"
|
2016-09-01 03:52:17 +08:00
|
|
|
className={styles.confirm}
|
2019-05-17 06:13:08 +08:00
|
|
|
label={intl.formatMessage(intlMessages.modalDone)}
|
|
|
|
aria-label={`${intl.formatMessage(intlMessages.modalDone)} ${title}`}
|
2017-10-02 22:12:58 +08:00
|
|
|
disabled={confirm.disabled}
|
2017-10-11 23:06:29 +08:00
|
|
|
onClick={this.handleAction.bind(this, 'confirm')}
|
2019-05-09 03:13:05 +08:00
|
|
|
aria-describedby="modalConfirmDescription"
|
2017-10-02 22:12:58 +08:00
|
|
|
/>
|
2016-09-01 03:52:17 +08:00
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
<div className={styles.content}>
|
|
|
|
{this.props.children}
|
|
|
|
</div>
|
2019-05-17 06:13:08 +08:00
|
|
|
<div id="modalDismissDescription" hidden>{intl.formatMessage(intlMessages.modalCloseDescription)}</div>
|
|
|
|
<div id="modalConfirmDescription" hidden>{intl.formatMessage(intlMessages.modalDoneDescription)}</div>
|
2017-04-19 03:06:51 +08:00
|
|
|
</ModalBase>
|
2016-09-01 03:52:17 +08:00
|
|
|
);
|
|
|
|
}
|
2017-10-02 22:12:58 +08:00
|
|
|
}
|
2016-09-01 03:52:17 +08:00
|
|
|
|
2017-04-05 22:25:26 +08:00
|
|
|
ModalFullscreen.propTypes = propTypes;
|
|
|
|
ModalFullscreen.defaultProps = defaultProps;
|
|
|
|
|
2019-05-17 06:13:08 +08:00
|
|
|
export default withModalState(injectIntl(ModalFullscreen));
|