|
|
|
@ -5,24 +5,24 @@ import spring from 'react-motion/lib/spring';
|
|
|
|
|
import BundleContainer from '../containers/bundle_container';
|
|
|
|
|
import BundleModalError from './bundle_modal_error';
|
|
|
|
|
import ModalLoading from './modal_loading';
|
|
|
|
|
import ActionsModal from '../components/actions_modal';
|
|
|
|
|
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';
|
|
|
|
|
import {
|
|
|
|
|
MediaModal,
|
|
|
|
|
OnboardingModal,
|
|
|
|
|
VideoModal,
|
|
|
|
|
BoostModal,
|
|
|
|
|
ConfirmationModal,
|
|
|
|
|
ReportModal,
|
|
|
|
|
SettingsModal,
|
|
|
|
|
EmbedModal,
|
|
|
|
|
} from '../../../features/ui/util/async-components';
|
|
|
|
|
|
|
|
|
|
const MODAL_COMPONENTS = {
|
|
|
|
|
'MEDIA': MediaModal,
|
|
|
|
|
'MEDIA': () => Promise.resolve({ default: MediaModal }),
|
|
|
|
|
'ONBOARDING': OnboardingModal,
|
|
|
|
|
'VIDEO': VideoModal,
|
|
|
|
|
'BOOST': BoostModal,
|
|
|
|
|
'CONFIRM': ConfirmationModal,
|
|
|
|
|
'VIDEO': () => Promise.resolve({ default: VideoModal }),
|
|
|
|
|
'BOOST': () => Promise.resolve({ default: BoostModal }),
|
|
|
|
|
'CONFIRM': () => Promise.resolve({ default: ConfirmationModal }),
|
|
|
|
|
'REPORT': ReportModal,
|
|
|
|
|
'SETTINGS': SettingsModal,
|
|
|
|
|
'ACTIONS': () => Promise.resolve({ default: ActionsModal }),
|
|
|
|
@ -84,8 +84,8 @@ export default class ModalRoot extends React.PureComponent {
|
|
|
|
|
return { opacity: spring(0), scale: spring(0.98) };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
renderLoading = () => {
|
|
|
|
|
return <ModalLoading />;
|
|
|
|
|
renderLoading = modalId => () => {
|
|
|
|
|
return ['MEDIA', 'VIDEO', 'BOOST', 'CONFIRM', 'ACTIONS'].indexOf(modalId) === -1 ? <ModalLoading /> : null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
renderError = (props) => {
|
|
|
|
@ -119,7 +119,7 @@ export default class ModalRoot extends React.PureComponent {
|
|
|
|
|
<div key={key} style={{ pointerEvents: visible ? 'auto' : 'none' }}>
|
|
|
|
|
<div role='presentation' className='modal-root__overlay' style={{ opacity: style.opacity }} onClick={onClose} />
|
|
|
|
|
<div role='dialog' className='modal-root__container' style={{ opacity: style.opacity, transform: `translateZ(0px) scale(${style.scale})` }}>
|
|
|
|
|
<BundleContainer fetchComponent={MODAL_COMPONENTS[type]} loading={this.renderLoading} error={this.renderError} renderDelay={200}>
|
|
|
|
|
<BundleContainer fetchComponent={MODAL_COMPONENTS[type]} loading={this.renderLoading(type)} error={this.renderError} renderDelay={200}>
|
|
|
|
|
{(SpecificComponent) => <SpecificComponent {...props} onClose={onClose} />}
|
|
|
|
|
</BundleContainer>
|
|
|
|
|
</div>
|
|
|
|
|