2017-05-03 00:04:16 +00:00
|
|
|
import React from 'react';
|
2017-04-21 18:05:35 +00:00
|
|
|
import PropTypes from 'prop-types';
|
2017-04-01 20:11:28 +00:00
|
|
|
import MediaModal from './media_modal';
|
2017-04-16 18:32:00 +00:00
|
|
|
import OnboardingModal from './onboarding_modal';
|
2017-04-13 13:04:18 +00:00
|
|
|
import VideoModal from './video_modal';
|
2017-04-11 02:28:52 +00:00
|
|
|
import BoostModal from './boost_modal';
|
2017-04-23 02:39:50 +00:00
|
|
|
import ConfirmationModal from './confirmation_modal';
|
2017-05-20 12:58:13 +00:00
|
|
|
import TransitionMotion from 'react-motion/lib/TransitionMotion';
|
|
|
|
import spring from 'react-motion/lib/spring';
|
2017-04-01 20:11:28 +00:00
|
|
|
|
|
|
|
const MODAL_COMPONENTS = {
|
2017-04-11 02:28:52 +00:00
|
|
|
'MEDIA': MediaModal,
|
2017-04-16 18:32:00 +00:00
|
|
|
'ONBOARDING': OnboardingModal,
|
2017-04-13 13:04:18 +00:00
|
|
|
'VIDEO': VideoModal,
|
2017-04-23 02:39:50 +00:00
|
|
|
'BOOST': BoostModal,
|
2017-05-20 15:31:47 +00:00
|
|
|
'CONFIRM': ConfirmationModal,
|
2017-04-01 20:11:28 +00:00
|
|
|
};
|
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
class ModalRoot extends React.PureComponent {
|
2017-04-01 20:11:28 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
static propTypes = {
|
|
|
|
type: PropTypes.string,
|
|
|
|
props: PropTypes.object,
|
2017-05-20 15:31:47 +00:00
|
|
|
onClose: PropTypes.func.isRequired,
|
2017-05-12 12:44:10 +00:00
|
|
|
};
|
2017-04-01 20:11:28 +00:00
|
|
|
|
2017-05-12 12:44:10 +00:00
|
|
|
handleKeyUp = (e) => {
|
2017-04-30 13:12:14 +00:00
|
|
|
if ((e.key === 'Escape' || e.key === 'Esc' || e.keyCode === 27)
|
|
|
|
&& !!this.props.type) {
|
2017-04-01 20:11:28 +00:00
|
|
|
this.props.onClose();
|
|
|
|
}
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2017-04-01 20:11:28 +00:00
|
|
|
|
|
|
|
componentDidMount () {
|
|
|
|
window.addEventListener('keyup', this.handleKeyUp, false);
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2017-04-01 20:11:28 +00:00
|
|
|
|
|
|
|
componentWillUnmount () {
|
|
|
|
window.removeEventListener('keyup', this.handleKeyUp);
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2017-04-01 20:11:28 +00:00
|
|
|
|
|
|
|
willEnter () {
|
|
|
|
return { opacity: 0, scale: 0.98 };
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2017-04-01 20:11:28 +00:00
|
|
|
|
|
|
|
willLeave () {
|
|
|
|
return { opacity: spring(0), scale: spring(0.98) };
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
2017-04-01 20:11:28 +00:00
|
|
|
|
|
|
|
render () {
|
|
|
|
const { type, props, onClose } = this.props;
|
2017-05-16 10:12:38 +00:00
|
|
|
const visible = !!type;
|
2017-04-01 20:11:28 +00:00
|
|
|
const items = [];
|
|
|
|
|
2017-05-16 10:12:38 +00:00
|
|
|
if (visible) {
|
2017-04-01 20:11:28 +00:00
|
|
|
items.push({
|
|
|
|
key: type,
|
|
|
|
data: { type, props },
|
2017-05-20 15:31:47 +00:00
|
|
|
style: { opacity: spring(1), scale: spring(1, { stiffness: 120, damping: 14 }) },
|
2017-04-01 20:11:28 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<TransitionMotion
|
|
|
|
styles={items}
|
|
|
|
willEnter={this.willEnter}
|
|
|
|
willLeave={this.willLeave}>
|
|
|
|
{interpolatedStyles =>
|
|
|
|
<div className='modal-root'>
|
|
|
|
{interpolatedStyles.map(({ key, data: { type, props }, style }) => {
|
|
|
|
const SpecificComponent = MODAL_COMPONENTS[type];
|
|
|
|
|
|
|
|
return (
|
2017-05-16 10:12:38 +00:00
|
|
|
<div key={key} style={{ pointerEvents: visible ? 'auto' : 'none' }}>
|
2017-04-23 02:26:55 +00:00
|
|
|
<div role='presentation' className='modal-root__overlay' style={{ opacity: style.opacity }} onClick={onClose} />
|
2017-04-01 20:11:28 +00:00
|
|
|
<div className='modal-root__container' style={{ opacity: style.opacity, transform: `translateZ(0px) scale(${style.scale})` }}>
|
|
|
|
<SpecificComponent {...props} onClose={onClose} />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
})}
|
|
|
|
</div>
|
|
|
|
}
|
|
|
|
</TransitionMotion>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|
|
|
|
|
2017-04-01 20:11:28 +00:00
|
|
|
export default ModalRoot;
|