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';
|
2018-04-20 13:58:36 +00:00
|
|
|
import Base from '../../../components/modal_root';
|
2017-07-07 22:06:02 +00:00
|
|
|
import BundleContainer from '../containers/bundle_container';
|
|
|
|
import BundleModalError from './bundle_modal_error';
|
|
|
|
import ModalLoading from './modal_loading';
|
2017-09-10 08:26:01 +00:00
|
|
|
import ActionsModal from './actions_modal';
|
|
|
|
import MediaModal from './media_modal';
|
|
|
|
import VideoModal from './video_modal';
|
|
|
|
import BoostModal from './boost_modal';
|
2017-12-09 16:26:22 +00:00
|
|
|
import FavouriteModal from './favourite_modal';
|
2017-10-13 16:01:14 +00:00
|
|
|
import DoodleModal from './doodle_modal';
|
2017-09-10 08:26:01 +00:00
|
|
|
import ConfirmationModal from './confirmation_modal';
|
2018-08-18 09:01:53 +00:00
|
|
|
import FocalPointModal from './focal_point_modal';
|
2017-07-07 22:06:02 +00:00
|
|
|
import {
|
|
|
|
OnboardingModal,
|
2017-08-06 22:36:04 +00:00
|
|
|
MuteModal,
|
2017-07-07 22:06:02 +00:00
|
|
|
ReportModal,
|
2017-07-12 09:03:17 +00:00
|
|
|
SettingsModal,
|
2017-08-31 01:38:35 +00:00
|
|
|
EmbedModal,
|
2017-12-09 02:13:08 +00:00
|
|
|
ListEditor,
|
2018-11-06 16:44:28 +00:00
|
|
|
ListAdder,
|
2018-08-20 12:22:19 +00:00
|
|
|
PinnedAccountsEditor,
|
2017-12-04 07:26:40 +00:00
|
|
|
} from 'flavours/glitch/util/async-components';
|
2017-04-01 20:11:28 +00:00
|
|
|
|
|
|
|
const MODAL_COMPONENTS = {
|
2017-09-10 08:26:01 +00:00
|
|
|
'MEDIA': () => Promise.resolve({ default: MediaModal }),
|
2017-04-16 18:32:00 +00:00
|
|
|
'ONBOARDING': OnboardingModal,
|
2017-09-10 08:26:01 +00:00
|
|
|
'VIDEO': () => Promise.resolve({ default: VideoModal }),
|
|
|
|
'BOOST': () => Promise.resolve({ default: BoostModal }),
|
2017-12-09 16:26:22 +00:00
|
|
|
'FAVOURITE': () => Promise.resolve({ default: FavouriteModal }),
|
2017-10-13 16:01:14 +00:00
|
|
|
'DOODLE': () => Promise.resolve({ default: DoodleModal }),
|
2017-09-10 08:26:01 +00:00
|
|
|
'CONFIRM': () => Promise.resolve({ default: ConfirmationModal }),
|
2017-08-06 22:36:04 +00:00
|
|
|
'MUTE': MuteModal,
|
2017-06-27 16:07:21 +00:00
|
|
|
'REPORT': ReportModal,
|
2017-07-12 09:03:17 +00:00
|
|
|
'SETTINGS': SettingsModal,
|
2017-07-27 20:31:59 +00:00
|
|
|
'ACTIONS': () => Promise.resolve({ default: ActionsModal }),
|
2017-08-31 01:38:35 +00:00
|
|
|
'EMBED': EmbedModal,
|
2017-12-09 02:13:08 +00:00
|
|
|
'LIST_EDITOR': ListEditor,
|
2018-11-06 16:44:28 +00:00
|
|
|
'LIST_ADDER':ListAdder,
|
2018-08-18 09:01:53 +00:00
|
|
|
'FOCAL_POINT': () => Promise.resolve({ default: FocalPointModal }),
|
2018-08-20 12:22:19 +00:00
|
|
|
'PINNED_ACCOUNTS_EDITOR': PinnedAccountsEditor,
|
2017-04-01 20:11:28 +00:00
|
|
|
};
|
|
|
|
|
2017-06-23 17:36:54 +00:00
|
|
|
export default 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
|
|
|
|
2018-07-31 21:03:16 +00:00
|
|
|
getSnapshotBeforeUpdate () {
|
2018-07-31 21:04:09 +00:00
|
|
|
return { visible: !!this.props.type };
|
2018-07-31 21:03:16 +00:00
|
|
|
}
|
|
|
|
|
2018-07-31 21:04:09 +00:00
|
|
|
componentDidUpdate (prevProps, prevState, { visible }) {
|
|
|
|
if (visible) {
|
|
|
|
document.body.classList.add('with-modals--active');
|
|
|
|
} else {
|
|
|
|
document.body.classList.remove('with-modals--active');
|
|
|
|
}
|
2018-07-31 21:03:16 +00:00
|
|
|
}
|
|
|
|
|
2017-09-10 08:26:01 +00:00
|
|
|
renderLoading = modalId => () => {
|
2017-12-09 16:26:22 +00:00
|
|
|
return ['MEDIA', 'VIDEO', 'BOOST', 'FAVOURITE', 'DOODLE', 'CONFIRM', 'ACTIONS'].indexOf(modalId) === -1 ? <ModalLoading /> : null;
|
2017-07-07 22:06:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
renderError = (props) => {
|
|
|
|
const { onClose } = this.props;
|
|
|
|
|
|
|
|
return <BundleModalError {...props} onClose={onClose} />;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
|
|
return (
|
2018-05-15 08:39:12 +00:00
|
|
|
<Base onClose={onClose} noEsc={props ? props.noEsc : false}>
|
2018-04-20 13:58:36 +00:00
|
|
|
{visible && (
|
|
|
|
<BundleContainer fetchComponent={MODAL_COMPONENTS[type]} loading={this.renderLoading(type)} error={this.renderError} renderDelay={200}>
|
|
|
|
{(SpecificComponent) => <SpecificComponent {...props} onClose={onClose} />}
|
|
|
|
</BundleContainer>
|
|
|
|
)}
|
|
|
|
</Base>
|
2017-04-01 20:11:28 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 18:05:35 +00:00
|
|
|
}
|