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';
|
2019-09-29 08:30:58 -04:00
|
|
|
import { getScrollbarWidth } from 'mastodon/utils/scrollbar';
|
|
|
|
import Base from 'mastodon/components/modal_root';
|
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';
|
2019-10-02 21:34:58 -04:00
|
|
|
import AudioModal from './audio_modal';
|
2017-09-10 04:26:01 -04:00
|
|
|
import ConfirmationModal from './confirmation_modal';
|
2018-02-21 18:35:46 -05:00
|
|
|
import FocalPointModal from './focal_point_modal';
|
2017-07-07 18:06:02 -04:00
|
|
|
import {
|
2017-11-14 21:56:41 -05:00
|
|
|
MuteModal,
|
2019-09-29 15:46:05 -04:00
|
|
|
BlockModal,
|
2017-07-07 18:06:02 -04:00
|
|
|
ReportModal,
|
2017-08-30 21:38:35 -04:00
|
|
|
EmbedModal,
|
2017-12-05 17:02:27 -05:00
|
|
|
ListEditor,
|
2018-11-05 12:52:38 -05:00
|
|
|
ListAdder,
|
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 }),
|
|
|
|
'VIDEO': () => Promise.resolve({ default: VideoModal }),
|
2019-10-02 21:34:58 -04:00
|
|
|
'AUDIO': () => Promise.resolve({ default: AudioModal }),
|
2017-09-10 04:26:01 -04:00
|
|
|
'BOOST': () => Promise.resolve({ default: BoostModal }),
|
|
|
|
'CONFIRM': () => Promise.resolve({ default: ConfirmationModal }),
|
2017-11-14 21:56:41 -05:00
|
|
|
'MUTE': MuteModal,
|
2019-09-29 15:46:05 -04:00
|
|
|
'BLOCK': BlockModal,
|
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-12-05 17:02:27 -05:00
|
|
|
'LIST_EDITOR': ListEditor,
|
2018-02-21 18:35:46 -05:00
|
|
|
'FOCAL_POINT': () => Promise.resolve({ default: FocalPointModal }),
|
2018-11-05 12:52:38 -05:00
|
|
|
'LIST_ADDER':ListAdder,
|
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
|
|
|
|
2018-05-08 07:33:09 -04:00
|
|
|
getSnapshotBeforeUpdate () {
|
2018-07-30 19:14:33 -04:00
|
|
|
return { visible: !!this.props.type };
|
2018-05-08 07:33:09 -04:00
|
|
|
}
|
|
|
|
|
2018-07-30 19:14:33 -04:00
|
|
|
componentDidUpdate (prevProps, prevState, { visible }) {
|
|
|
|
if (visible) {
|
|
|
|
document.body.classList.add('with-modals--active');
|
2019-07-19 03:25:22 -04:00
|
|
|
document.documentElement.style.marginRight = `${getScrollbarWidth()}px`;
|
2018-07-30 19:14:33 -04:00
|
|
|
} else {
|
|
|
|
document.body.classList.remove('with-modals--active');
|
2019-07-19 03:25:22 -04:00
|
|
|
document.documentElement.style.marginRight = 0;
|
2018-07-30 19:14:33 -04:00
|
|
|
}
|
2018-05-08 07:33:09 -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
|
|
|
|
|
|
|
return (
|
2018-03-24 07:52:26 -04:00
|
|
|
<Base onClose={onClose}>
|
|
|
|
{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 16:11:28 -04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 14:05:35 -04:00
|
|
|
}
|