2017-05-02 20:04:16 -04:00
|
|
|
import React from 'react';
|
2017-04-21 14:05:35 -04:00
|
|
|
import PropTypes from 'prop-types';
|
2017-05-20 08:58:13 -04:00
|
|
|
import TransitionMotion from 'react-motion/lib/TransitionMotion';
|
|
|
|
import spring from 'react-motion/lib/spring';
|
2017-07-07 18:06:02 -04:00
|
|
|
import BundleContainer from '../containers/bundle_container';
|
|
|
|
import BundleModalError from './bundle_modal_error';
|
|
|
|
import ModalLoading from './modal_loading';
|
2017-09-10 04:26:01 -04:00
|
|
|
import ActionsModal from './actions_modal';
|
|
|
|
import MediaModal from './media_modal';
|
|
|
|
import VideoModal from './video_modal';
|
|
|
|
import BoostModal from './boost_modal';
|
|
|
|
import ConfirmationModal from './confirmation_modal';
|
2017-07-07 18:06:02 -04:00
|
|
|
import {
|
|
|
|
OnboardingModal,
|
|
|
|
ReportModal,
|
2017-08-30 21:38:35 -04:00
|
|
|
EmbedModal,
|
2017-07-07 18:06:02 -04:00
|
|
|
} from '../../../features/ui/util/async-components';
|
2017-04-01 16:11:28 -04:00
|
|
|
|
|
|
|
const MODAL_COMPONENTS = {
|
2017-09-10 04:26:01 -04:00
|
|
|
'MEDIA': () => Promise.resolve({ default: MediaModal }),
|
2017-04-16 14:32:00 -04:00
|
|
|
'ONBOARDING': OnboardingModal,
|
2017-09-10 04:26:01 -04:00
|
|
|
'VIDEO': () => Promise.resolve({ default: VideoModal }),
|
|
|
|
'BOOST': () => Promise.resolve({ default: BoostModal }),
|
|
|
|
'CONFIRM': () => Promise.resolve({ default: ConfirmationModal }),
|
2017-06-27 12:07:21 -04:00
|
|
|
'REPORT': ReportModal,
|
2017-07-27 16:31:59 -04:00
|
|
|
'ACTIONS': () => Promise.resolve({ default: ActionsModal }),
|
2017-08-30 21:38:35 -04:00
|
|
|
'EMBED': EmbedModal,
|
2017-04-01 16:11:28 -04:00
|
|
|
};
|
|
|
|
|
2017-06-23 13:36:54 -04:00
|
|
|
export default class ModalRoot extends React.PureComponent {
|
2017-04-01 16:11:28 -04:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
static propTypes = {
|
|
|
|
type: PropTypes.string,
|
|
|
|
props: PropTypes.object,
|
2017-05-20 11:31:47 -04:00
|
|
|
onClose: PropTypes.func.isRequired,
|
2017-05-12 08:44:10 -04:00
|
|
|
};
|
2017-04-01 16:11:28 -04:00
|
|
|
|
2017-05-12 08:44:10 -04:00
|
|
|
handleKeyUp = (e) => {
|
2017-04-30 09:12:14 -04:00
|
|
|
if ((e.key === 'Escape' || e.key === 'Esc' || e.keyCode === 27)
|
|
|
|
&& !!this.props.type) {
|
2017-04-01 16:11:28 -04:00
|
|
|
this.props.onClose();
|
|
|
|
}
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2017-04-01 16:11:28 -04:00
|
|
|
|
|
|
|
componentDidMount () {
|
|
|
|
window.addEventListener('keyup', this.handleKeyUp, false);
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2017-04-01 16:11:28 -04:00
|
|
|
|
2017-07-27 18:54:48 -04:00
|
|
|
componentWillReceiveProps (nextProps) {
|
|
|
|
if (!!nextProps.type && !this.props.type) {
|
|
|
|
this.activeElement = document.activeElement;
|
|
|
|
|
|
|
|
this.getSiblings().forEach(sibling => sibling.setAttribute('inert', true));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidUpdate (prevProps) {
|
2017-07-28 16:55:19 -04:00
|
|
|
if (!this.props.type && !!prevProps.type) {
|
2017-07-27 18:54:48 -04:00
|
|
|
this.getSiblings().forEach(sibling => sibling.removeAttribute('inert'));
|
|
|
|
this.activeElement.focus();
|
|
|
|
this.activeElement = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-01 16:11:28 -04:00
|
|
|
componentWillUnmount () {
|
|
|
|
window.removeEventListener('keyup', this.handleKeyUp);
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2017-04-01 16:11:28 -04:00
|
|
|
|
2017-07-27 18:54:48 -04:00
|
|
|
getSiblings = () => {
|
|
|
|
return Array(...this.node.parentElement.childNodes).filter(node => node !== this.node);
|
|
|
|
}
|
|
|
|
|
|
|
|
setRef = ref => {
|
|
|
|
this.node = ref;
|
|
|
|
}
|
|
|
|
|
2017-04-01 16:11:28 -04:00
|
|
|
willEnter () {
|
|
|
|
return { opacity: 0, scale: 0.98 };
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2017-04-01 16:11:28 -04:00
|
|
|
|
|
|
|
willLeave () {
|
|
|
|
return { opacity: spring(0), scale: spring(0.98) };
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|
2017-04-01 16:11:28 -04:00
|
|
|
|
2017-09-10 04:26:01 -04:00
|
|
|
renderLoading = modalId => () => {
|
|
|
|
return ['MEDIA', 'VIDEO', 'BOOST', 'CONFIRM', 'ACTIONS'].indexOf(modalId) === -1 ? <ModalLoading /> : null;
|
2017-07-07 18:06:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
renderError = (props) => {
|
|
|
|
const { onClose } = this.props;
|
|
|
|
|
|
|
|
return <BundleModalError {...props} onClose={onClose} />;
|
|
|
|
}
|
|
|
|
|
2017-04-01 16:11:28 -04:00
|
|
|
render () {
|
|
|
|
const { type, props, onClose } = this.props;
|
2017-05-16 06:12:38 -04:00
|
|
|
const visible = !!type;
|
2017-04-01 16:11:28 -04:00
|
|
|
const items = [];
|
|
|
|
|
2017-05-16 06:12:38 -04:00
|
|
|
if (visible) {
|
2017-04-01 16:11:28 -04:00
|
|
|
items.push({
|
|
|
|
key: type,
|
|
|
|
data: { type, props },
|
2017-05-20 11:31:47 -04:00
|
|
|
style: { opacity: spring(1), scale: spring(1, { stiffness: 120, damping: 14 }) },
|
2017-04-01 16:11:28 -04:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<TransitionMotion
|
|
|
|
styles={items}
|
|
|
|
willEnter={this.willEnter}
|
2017-06-06 07:20:07 -04:00
|
|
|
willLeave={this.willLeave}
|
|
|
|
>
|
2017-04-01 16:11:28 -04:00
|
|
|
{interpolatedStyles =>
|
2017-07-27 18:54:48 -04:00
|
|
|
<div className='modal-root' ref={this.setRef}>
|
2017-07-18 11:14:43 -04:00
|
|
|
{interpolatedStyles.map(({ key, data: { type, props }, style }) => (
|
2017-07-07 18:06:02 -04:00
|
|
|
<div key={key} style={{ pointerEvents: visible ? 'auto' : 'none' }}>
|
|
|
|
<div role='presentation' className='modal-root__overlay' style={{ opacity: style.opacity }} onClick={onClose} />
|
2017-07-27 18:54:48 -04:00
|
|
|
<div role='dialog' className='modal-root__container' style={{ opacity: style.opacity, transform: `translateZ(0px) scale(${style.scale})` }}>
|
2017-09-10 04:26:01 -04:00
|
|
|
<BundleContainer fetchComponent={MODAL_COMPONENTS[type]} loading={this.renderLoading(type)} error={this.renderError} renderDelay={200}>
|
2017-07-12 14:51:44 -04:00
|
|
|
{(SpecificComponent) => <SpecificComponent {...props} onClose={onClose} />}
|
|
|
|
</BundleContainer>
|
2017-04-01 16:11:28 -04:00
|
|
|
</div>
|
2017-07-07 18:06:02 -04:00
|
|
|
</div>
|
|
|
|
))}
|
2017-04-01 16:11:28 -04:00
|
|
|
</div>
|
|
|
|
}
|
|
|
|
</TransitionMotion>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|