Enable to handle app immediately after closing modal (#3082)

This commit is contained in:
geta6 2017-05-16 19:12:38 +09:00 committed by Eugen Rochko
parent 0dfffb6dcb
commit bbaac89eb0

View file

@ -48,9 +48,10 @@ class ModalRoot extends React.PureComponent {
render () {
const { type, props, onClose } = this.props;
const visible = !!type;
const items = [];
if (!!type) {
if (visible) {
items.push({
key: type,
data: { type, props },
@ -69,7 +70,7 @@ class ModalRoot extends React.PureComponent {
const SpecificComponent = MODAL_COMPONENTS[type];
return (
<div key={key}>
<div key={key} style={{ pointerEvents: visible ? 'auto' : 'none' }}>
<div role='presentation' className='modal-root__overlay' style={{ opacity: style.opacity }} onClick={onClose} />
<div className='modal-root__container' style={{ opacity: style.opacity, transform: `translateZ(0px) scale(${style.scale})` }}>
<SpecificComponent {...props} onClose={onClose} />