Split modal into two separated components and move state to a hoc on the base
This commit is contained in:
parent
6b8e9146c7
commit
c8dd83aebe
@ -1,6 +1,6 @@
|
|||||||
import React, { Component } from 'react';
|
import React, { Component } from 'react';
|
||||||
import { defineMessages, injectIntl } from 'react-intl';
|
import { defineMessages, injectIntl } from 'react-intl';
|
||||||
import Modal from '/imports/ui/components/modal/component';
|
import Modal from '/imports/ui/components/modal/simple/component';
|
||||||
|
|
||||||
const intlMessages = defineMessages({
|
const intlMessages = defineMessages({
|
||||||
title: {
|
title: {
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
import React, { Component } from 'react';
|
import React, { Component } from 'react';
|
||||||
import { defineMessages, injectIntl } from 'react-intl';
|
import { defineMessages, injectIntl } from 'react-intl';
|
||||||
import { clearModal } from '/imports/ui/components/app/service';
|
import { clearModal } from '/imports/ui/components/app/service';
|
||||||
import { exitAudio } from '/imports/api/phone'
|
import { exitAudio } from '/imports/api/phone';
|
||||||
import Modal from '/imports/ui/components/modal/component';
|
import Modal from '/imports/ui/components/modal/fullscreen/component';
|
||||||
|
|
||||||
const intlMessages = defineMessages({
|
const intlMessages = defineMessages({
|
||||||
title: {
|
title: {
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import React, { Component } from 'react';
|
import React, { Component } from 'react';
|
||||||
import { withRouter } from 'react-router';
|
import { withRouter } from 'react-router';
|
||||||
import { defineMessages, injectIntl } from 'react-intl';
|
import { defineMessages, injectIntl } from 'react-intl';
|
||||||
import Modal from '/imports/ui/components/modal/component';
|
import Modal from '/imports/ui/components/modal/fullscreen/component';
|
||||||
|
|
||||||
const intlMessages = defineMessages({
|
const intlMessages = defineMessages({
|
||||||
title: {
|
title: {
|
||||||
|
@ -1,16 +1,22 @@
|
|||||||
import React, { Component, PropTypes } from 'react';
|
import React, { Component, PropTypes } from 'react';
|
||||||
import ReactModal from 'react-modal';
|
import ReactModal from 'react-modal';
|
||||||
import styles from './styles.scss';
|
import styles from './styles.scss';
|
||||||
import cx from 'classnames';
|
|
||||||
|
|
||||||
const propTypes = {
|
const propTypes = {
|
||||||
|
modalClassName: PropTypes.string.isRequired,
|
||||||
|
overlayClassName: PropTypes.string.isRequired,
|
||||||
|
portalClassName: PropTypes.string.isRequired,
|
||||||
|
contentLabel: PropTypes.string.isRequired,
|
||||||
isOpen: PropTypes.bool.isRequired,
|
isOpen: PropTypes.bool.isRequired,
|
||||||
onShow: PropTypes.func,
|
onShow: PropTypes.func,
|
||||||
onHide: PropTypes.func,
|
onHide: PropTypes.func,
|
||||||
isTransparent: PropTypes.bool
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const defaultProps = {
|
const defaultProps = {
|
||||||
|
modalClassName: styles.modal,
|
||||||
|
overlayClassName: styles.overlay,
|
||||||
|
portalClassName: styles.portal,
|
||||||
|
contentLabel: 'Modal',
|
||||||
isOpen: false,
|
isOpen: false,
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -41,20 +47,23 @@ export default class ModalBase extends Component {
|
|||||||
isOpen,
|
isOpen,
|
||||||
onShow,
|
onShow,
|
||||||
onHide,
|
onHide,
|
||||||
className,
|
contentLabel,
|
||||||
isTransparent,
|
shouldCloseOnOverlayClick,
|
||||||
|
modalClassName,
|
||||||
|
overlayClassName,
|
||||||
|
portalClassName,
|
||||||
} = this.props;
|
} = this.props;
|
||||||
|
|
||||||
let styleOverlay = (isTransparent) ? styles.transparentOverlay : styles.overlay;
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ReactModal
|
<ReactModal
|
||||||
className={cx(styles.modal, className)}
|
className={modalClassName}
|
||||||
overlayClassName={styleOverlay}
|
contentLabel={contentLabel}
|
||||||
portalClassName={styles.portal}
|
shouldCloseOnOverlayClick={shouldCloseOnOverlayClick}
|
||||||
isOpen={isOpen}
|
overlayClassName={overlayClassName}
|
||||||
onAfterOpen={this.handleAfterOpen}
|
portalClassName={portalClassName}
|
||||||
onRequestClose={this.handleRequestClose}>
|
isOpen={isOpen}
|
||||||
|
onAfterOpen={this.handleAfterOpen}
|
||||||
|
onRequestClose={this.handleRequestClose}>
|
||||||
{this.props.children}
|
{this.props.children}
|
||||||
</ReactModal>
|
</ReactModal>
|
||||||
);
|
);
|
||||||
@ -63,3 +72,60 @@ export default class ModalBase extends Component {
|
|||||||
|
|
||||||
ModalBase.propTypes = propTypes;
|
ModalBase.propTypes = propTypes;
|
||||||
ModalBase.defaultProps = defaultProps;
|
ModalBase.defaultProps = defaultProps;
|
||||||
|
|
||||||
|
export const withModalBase = (ComponentToWrap) =>
|
||||||
|
class ModalStateWrapper extends Component {
|
||||||
|
constructor(props) {
|
||||||
|
super(props);
|
||||||
|
|
||||||
|
this.state = {
|
||||||
|
isOpen: props.isOpen || true,
|
||||||
|
};
|
||||||
|
|
||||||
|
this.hide = this.hide.bind(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
hide(cb) {
|
||||||
|
this.setState({ isOpen: false }, cb);
|
||||||
|
}
|
||||||
|
|
||||||
|
show(cb) {
|
||||||
|
this.setState({ isOpen: true }, cb);
|
||||||
|
}
|
||||||
|
|
||||||
|
componentDidUpdate(prevProps, prevState) {
|
||||||
|
if (prevState.isOpen !== this.props.isOpen
|
||||||
|
&& this.state.isOpen !== this.props.isOpen) {
|
||||||
|
this.setState({ isOpen: this.props.isOpen });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
render() {
|
||||||
|
const { isOpen } = this.state;
|
||||||
|
const {
|
||||||
|
modalClassName,
|
||||||
|
overlayClassName,
|
||||||
|
portalClassName,
|
||||||
|
contentLabel,
|
||||||
|
shouldCloseOnOverlayClick,
|
||||||
|
onShow,
|
||||||
|
onHide,
|
||||||
|
...modalProps,
|
||||||
|
} = this.props;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<ModalBase {...{
|
||||||
|
isOpen,
|
||||||
|
modalClassName,
|
||||||
|
overlayClassName,
|
||||||
|
portalClassName,
|
||||||
|
contentLabel,
|
||||||
|
shouldCloseOnOverlayClick,
|
||||||
|
onShow,
|
||||||
|
onHide,
|
||||||
|
}}>
|
||||||
|
<ComponentToWrap {...modalProps} hide={this.hide} show={this.show}/>
|
||||||
|
</ModalBase>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
@ -20,11 +20,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.transparentOverlay {
|
.overlay {
|
||||||
background: transparentize($color-gray-dark, .40) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.overlay, .transparentOverlay {
|
|
||||||
z-index: 1000;
|
z-index: 1000;
|
||||||
background: #fff;
|
background: #fff;
|
||||||
display: flex;
|
display: flex;
|
||||||
@ -37,4 +33,6 @@
|
|||||||
bottom: 0;
|
bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.portal {}
|
.portal {
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
@ -1,12 +1,10 @@
|
|||||||
import React, { Component, PropTypes } from 'react';
|
import React, { Component, PropTypes } from 'react';
|
||||||
import { clearModal } from '/imports/ui/components/app/service';
|
import { withModalBase } from '../base/component';
|
||||||
import ModalBase from './base/component';
|
import Button from '/imports/ui/components/button/component';
|
||||||
import Button from '../button/component';
|
|
||||||
import styles from './styles.scss';
|
import styles from './styles.scss';
|
||||||
import cx from 'classnames';
|
import cx from 'classnames';
|
||||||
|
|
||||||
const propTypes = {
|
const propTypes = {
|
||||||
isOpen: PropTypes.bool.isRequired,
|
|
||||||
title: PropTypes.string.isRequired,
|
title: PropTypes.string.isRequired,
|
||||||
confirm: PropTypes.shape({
|
confirm: PropTypes.shape({
|
||||||
callback: PropTypes.func.isRequired,
|
callback: PropTypes.func.isRequired,
|
||||||
@ -21,7 +19,7 @@ const propTypes = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const defaultProps = {
|
const defaultProps = {
|
||||||
isOpen: true,
|
shouldCloseOnOverlayClick: false,
|
||||||
confirm: {
|
confirm: {
|
||||||
label: 'Done',
|
label: 'Done',
|
||||||
description: 'Saves changes and closes the modal',
|
description: 'Saves changes and closes the modal',
|
||||||
@ -32,40 +30,10 @@ const defaultProps = {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
export default class Modal extends Component {
|
class ModalFullscreen extends Component {
|
||||||
constructor(props) {
|
handleAction(name) {
|
||||||
super(props);
|
const action = this.props[name];
|
||||||
|
this.props.hide(action.callback);
|
||||||
this.state = {
|
|
||||||
isOpen: this.props.isOpen,
|
|
||||||
};
|
|
||||||
|
|
||||||
this.handleDismiss = this.handleDismiss.bind(this);
|
|
||||||
this.handleConfirm = this.handleConfirm.bind(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
handleDismiss() {
|
|
||||||
const { dismiss } = this.props;
|
|
||||||
if (dismiss && dismiss.callback) {
|
|
||||||
dismiss.callback(...arguments);
|
|
||||||
}
|
|
||||||
|
|
||||||
this.setState({ isOpen: false });
|
|
||||||
clearModal();
|
|
||||||
}
|
|
||||||
|
|
||||||
handleConfirm() {
|
|
||||||
const { confirm } = this.props;
|
|
||||||
confirm.callback(...arguments);
|
|
||||||
this.setState({ isOpen: false });
|
|
||||||
clearModal();
|
|
||||||
}
|
|
||||||
|
|
||||||
componentDidUpdate(prevProps, prevState) {
|
|
||||||
if (prevState.isOpen !== this.props.isOpen
|
|
||||||
&& this.state.isOpen !== this.props.isOpen) {
|
|
||||||
this.setState({ isOpen: this.props.isOpen });
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
@ -75,29 +43,22 @@ export default class Modal extends Component {
|
|||||||
confirm,
|
confirm,
|
||||||
} = this.props;
|
} = this.props;
|
||||||
|
|
||||||
const { isOpen } = this.state;
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ModalBase
|
<div>
|
||||||
className={styles.modal}
|
|
||||||
isOpen={isOpen}
|
|
||||||
onHide={dismiss.callback}
|
|
||||||
onShow={this.props.onShow}
|
|
||||||
>
|
|
||||||
<header className={styles.header}>
|
<header className={styles.header}>
|
||||||
<h1 className={styles.title}>{title}</h1>
|
<h1 className={styles.title}>{title}</h1>
|
||||||
<div className={styles.actions}>
|
<div className={styles.actions}>
|
||||||
<Button
|
<Button
|
||||||
className={styles.dismiss}
|
className={styles.dismiss}
|
||||||
label={dismiss.label}
|
label={dismiss.label}
|
||||||
onClick={this.handleDismiss}
|
onClick={this.handleAction.bind(this, 'dismiss')}
|
||||||
aria-describedby={'modalDismissDescription'}
|
aria-describedby={'modalDismissDescription'}
|
||||||
tabIndex={0} />
|
tabIndex={0} />
|
||||||
<Button
|
<Button
|
||||||
color={'primary'}
|
color={'primary'}
|
||||||
className={styles.confirm}
|
className={styles.confirm}
|
||||||
label={confirm.label}
|
label={confirm.label}
|
||||||
onClick={this.handleConfirm}
|
onClick={this.handleAction.bind(this, 'confirm')}
|
||||||
aria-describedby={'modalConfirmDescription'}
|
aria-describedby={'modalConfirmDescription'}
|
||||||
tabIndex={0} />
|
tabIndex={0} />
|
||||||
</div>
|
</div>
|
||||||
@ -107,10 +68,12 @@ export default class Modal extends Component {
|
|||||||
</div>
|
</div>
|
||||||
<div id="modalDismissDescription" hidden>{dismiss.description}</div>
|
<div id="modalDismissDescription" hidden>{dismiss.description}</div>
|
||||||
<div id="modalConfirmDescription" hidden>{confirm.description}</div>
|
<div id="modalConfirmDescription" hidden>{confirm.description}</div>
|
||||||
</ModalBase>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
Modal.propTypes = propTypes;
|
ModalFullscreen.propTypes = propTypes;
|
||||||
Modal.defaultProps = defaultProps;
|
ModalFullscreen.defaultProps = defaultProps;
|
||||||
|
|
||||||
|
export default withModalBase(ModalFullscreen);
|
@ -1,4 +1,4 @@
|
|||||||
@import "../../stylesheets/variables/_all";
|
@import "../../../stylesheets/variables/_all";
|
||||||
|
|
||||||
.modal {
|
.modal {
|
||||||
display: flex;
|
display: flex;
|
@ -0,0 +1,64 @@
|
|||||||
|
import React, { Component, PropTypes } from 'react';
|
||||||
|
import { withModalBase } from '../base/component';
|
||||||
|
import Button from '/imports/ui/components/button/component';
|
||||||
|
import styles from './styles.scss';
|
||||||
|
import cx from 'classnames';
|
||||||
|
|
||||||
|
const propTypes = {
|
||||||
|
title: PropTypes.string.isRequired,
|
||||||
|
dismiss: PropTypes.shape({
|
||||||
|
callback: PropTypes.func,
|
||||||
|
label: PropTypes.string.isRequired,
|
||||||
|
description: PropTypes.string,
|
||||||
|
}),
|
||||||
|
};
|
||||||
|
|
||||||
|
const defaultProps = {
|
||||||
|
overlayClassName: styles.overlay,
|
||||||
|
dismiss: {
|
||||||
|
label: 'Close',
|
||||||
|
description: 'Closes the modal',
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
class ModalSimple extends Component {
|
||||||
|
handleAction(name) {
|
||||||
|
const action = this.props[name];
|
||||||
|
this.props.close(action.callback);
|
||||||
|
}
|
||||||
|
|
||||||
|
render() {
|
||||||
|
const {
|
||||||
|
title,
|
||||||
|
dismiss,
|
||||||
|
} = this.props;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<header className={styles.header}>
|
||||||
|
<h1 className={styles.title}>{title}</h1>
|
||||||
|
<div className={styles.actions}>
|
||||||
|
<Button
|
||||||
|
className={styles.dismiss}
|
||||||
|
onClick={() => this.props.hide(dismiss.callback)}
|
||||||
|
label={dismiss.label}
|
||||||
|
aria-describedby={'modalDismissDescription'}
|
||||||
|
icon={'close'}
|
||||||
|
size={'lg'}
|
||||||
|
hideLabel={true}
|
||||||
|
tabIndex={0} />
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
<div className={styles.content}>
|
||||||
|
{this.props.children}
|
||||||
|
</div>
|
||||||
|
<div id="modalDismissDescription" hidden>{dismiss.description}</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
ModalSimple.propTypes = propTypes;
|
||||||
|
ModalSimple.defaultProps = defaultProps;
|
||||||
|
|
||||||
|
export default withModalBase(ModalSimple);
|
@ -0,0 +1,44 @@
|
|||||||
|
@import "../../../stylesheets/variables/_all";
|
||||||
|
|
||||||
|
.modal {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-self: flex-start;
|
||||||
|
padding: ($line-height-computed / 2) $line-height-computed;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
overflow: auto;
|
||||||
|
color: $color-text;
|
||||||
|
font-weight: normal;
|
||||||
|
padding: $line-height-computed 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header {
|
||||||
|
display: flex;
|
||||||
|
padding: $line-height-computed 0;
|
||||||
|
border-bottom: $border-size solid $color-gray-lighter;
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.actions {
|
||||||
|
flex: 0 1 35%;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
@extend %text-elipsis;
|
||||||
|
flex: 1;
|
||||||
|
margin: 0;
|
||||||
|
font-weight: 400;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dismiss {
|
||||||
|
flex: 0 1 48%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.overlay {
|
||||||
|
background-color: rgba(0, 0, 0, .5);
|
||||||
|
}
|
@ -1,5 +1,5 @@
|
|||||||
import React, { Component } from 'react';
|
import React, { Component } from 'react';
|
||||||
import Modal from '/imports/ui/components/modal/component';
|
import Modal from '/imports/ui/components/modal/fullscreen/component';
|
||||||
import { Tab, Tabs, TabList, TabPanel } from 'react-tabs';
|
import { Tab, Tabs, TabList, TabPanel } from 'react-tabs';
|
||||||
|
|
||||||
import ClosedCaptions from '/imports/ui/components/settings/submenus/closed-captions/component';
|
import ClosedCaptions from '/imports/ui/components/settings/submenus/closed-captions/component';
|
||||||
|
Loading…
Reference in New Issue
Block a user