2017-05-03 09:04:16 +09:00
|
|
|
import React from 'react';
|
2017-04-22 03:05:35 +09:00
|
|
|
import PropTypes from 'prop-types';
|
2019-09-29 21:30:58 +09:00
|
|
|
import { getScrollbarWidth } from 'mastodon/utils/scrollbar';
|
|
|
|
import Base from 'mastodon/components/modal_root';
|
2017-07-08 07:06:02 +09:00
|
|
|
import BundleContainer from '../containers/bundle_container';
|
|
|
|
import BundleModalError from './bundle_modal_error';
|
|
|
|
import ModalLoading from './modal_loading';
|
2017-09-10 17:26:01 +09:00
|
|
|
import ActionsModal from './actions_modal';
|
|
|
|
import MediaModal from './media_modal';
|
|
|
|
import VideoModal from './video_modal';
|
|
|
|
import BoostModal from './boost_modal';
|
2019-10-03 10:34:58 +09:00
|
|
|
import AudioModal from './audio_modal';
|
2017-09-10 17:26:01 +09:00
|
|
|
import ConfirmationModal from './confirmation_modal';
|
2018-02-22 08:35:46 +09:00
|
|
|
import FocalPointModal from './focal_point_modal';
|
2022-11-10 16:49:35 +09:00
|
|
|
import ImageModal from './image_modal';
|
2017-07-08 07:06:02 +09:00
|
|
|
import {
|
2017-11-15 11:56:41 +09:00
|
|
|
MuteModal,
|
2019-09-30 04:46:05 +09:00
|
|
|
BlockModal,
|
2017-07-08 07:06:02 +09:00
|
|
|
ReportModal,
|
2017-08-31 10:38:35 +09:00
|
|
|
EmbedModal,
|
2017-12-06 07:02:27 +09:00
|
|
|
ListEditor,
|
2018-11-06 02:52:38 +09:00
|
|
|
ListAdder,
|
2022-02-09 09:17:07 +09:00
|
|
|
CompareHistoryModal,
|
2022-08-25 11:27:47 +09:00
|
|
|
FilterModal,
|
2022-10-20 21:35:29 +09:00
|
|
|
InteractionModal,
|
|
|
|
SubscribedLanguagesModal,
|
2022-10-27 02:35:55 +09:00
|
|
|
ClosedRegistrationsModal,
|
2022-02-09 09:17:07 +09:00
|
|
|
} from 'mastodon/features/ui/util/async-components';
|
2022-10-20 21:35:29 +09:00
|
|
|
import { Helmet } from 'react-helmet';
|
2017-04-02 05:11:28 +09:00
|
|
|
|
|
|
|
const MODAL_COMPONENTS = {
|
2017-09-10 17:26:01 +09:00
|
|
|
'MEDIA': () => Promise.resolve({ default: MediaModal }),
|
|
|
|
'VIDEO': () => Promise.resolve({ default: VideoModal }),
|
2019-10-03 10:34:58 +09:00
|
|
|
'AUDIO': () => Promise.resolve({ default: AudioModal }),
|
2022-11-10 16:49:35 +09:00
|
|
|
'IMAGE': () => Promise.resolve({ default: ImageModal }),
|
2017-09-10 17:26:01 +09:00
|
|
|
'BOOST': () => Promise.resolve({ default: BoostModal }),
|
|
|
|
'CONFIRM': () => Promise.resolve({ default: ConfirmationModal }),
|
2017-11-15 11:56:41 +09:00
|
|
|
'MUTE': MuteModal,
|
2019-09-30 04:46:05 +09:00
|
|
|
'BLOCK': BlockModal,
|
2017-06-28 01:07:21 +09:00
|
|
|
'REPORT': ReportModal,
|
2017-07-28 05:31:59 +09:00
|
|
|
'ACTIONS': () => Promise.resolve({ default: ActionsModal }),
|
2017-08-31 10:38:35 +09:00
|
|
|
'EMBED': EmbedModal,
|
2017-12-06 07:02:27 +09:00
|
|
|
'LIST_EDITOR': ListEditor,
|
2018-02-22 08:35:46 +09:00
|
|
|
'FOCAL_POINT': () => Promise.resolve({ default: FocalPointModal }),
|
2022-02-09 09:17:07 +09:00
|
|
|
'LIST_ADDER': ListAdder,
|
|
|
|
'COMPARE_HISTORY': CompareHistoryModal,
|
2022-08-25 11:27:47 +09:00
|
|
|
'FILTER': FilterModal,
|
2022-10-20 21:35:29 +09:00
|
|
|
'SUBSCRIBED_LANGUAGES': SubscribedLanguagesModal,
|
|
|
|
'INTERACTION': InteractionModal,
|
2022-10-27 02:35:55 +09:00
|
|
|
'CLOSED_REGISTRATIONS': ClosedRegistrationsModal,
|
2017-04-02 05:11:28 +09:00
|
|
|
};
|
|
|
|
|
2017-06-24 02:36:54 +09:00
|
|
|
export default class ModalRoot extends React.PureComponent {
|
2017-04-02 05:11:28 +09:00
|
|
|
|
2017-05-12 21:44:10 +09:00
|
|
|
static propTypes = {
|
|
|
|
type: PropTypes.string,
|
|
|
|
props: PropTypes.object,
|
2017-05-21 00:31:47 +09:00
|
|
|
onClose: PropTypes.func.isRequired,
|
2022-02-25 08:51:01 +09:00
|
|
|
ignoreFocus: PropTypes.bool,
|
2017-05-12 21:44:10 +09:00
|
|
|
};
|
2017-04-02 05:11:28 +09:00
|
|
|
|
2020-11-27 11:24:11 +09:00
|
|
|
state = {
|
|
|
|
backgroundColor: null,
|
|
|
|
};
|
|
|
|
|
2018-05-08 20:33:09 +09:00
|
|
|
getSnapshotBeforeUpdate () {
|
2018-07-31 08:14:33 +09:00
|
|
|
return { visible: !!this.props.type };
|
2018-05-08 20:33:09 +09:00
|
|
|
}
|
|
|
|
|
2018-07-31 08:14:33 +09:00
|
|
|
componentDidUpdate (prevProps, prevState, { visible }) {
|
|
|
|
if (visible) {
|
|
|
|
document.body.classList.add('with-modals--active');
|
2019-07-19 16:25:22 +09:00
|
|
|
document.documentElement.style.marginRight = `${getScrollbarWidth()}px`;
|
2018-07-31 08:14:33 +09:00
|
|
|
} else {
|
|
|
|
document.body.classList.remove('with-modals--active');
|
2023-04-05 17:57:36 +09:00
|
|
|
document.documentElement.style.marginRight = '0';
|
2018-07-31 08:14:33 +09:00
|
|
|
}
|
2018-05-08 20:33:09 +09:00
|
|
|
}
|
|
|
|
|
2020-11-27 11:24:11 +09:00
|
|
|
setBackgroundColor = color => {
|
|
|
|
this.setState({ backgroundColor: color });
|
2023-01-30 09:45:35 +09:00
|
|
|
};
|
2020-11-27 11:24:11 +09:00
|
|
|
|
2017-09-10 17:26:01 +09:00
|
|
|
renderLoading = modalId => () => {
|
|
|
|
return ['MEDIA', 'VIDEO', 'BOOST', 'CONFIRM', 'ACTIONS'].indexOf(modalId) === -1 ? <ModalLoading /> : null;
|
2023-01-30 09:45:35 +09:00
|
|
|
};
|
2017-07-08 07:06:02 +09:00
|
|
|
|
|
|
|
renderError = (props) => {
|
|
|
|
const { onClose } = this.props;
|
|
|
|
|
|
|
|
return <BundleModalError {...props} onClose={onClose} />;
|
2023-01-30 09:45:35 +09:00
|
|
|
};
|
2017-07-08 07:06:02 +09:00
|
|
|
|
2022-02-25 08:51:01 +09:00
|
|
|
handleClose = (ignoreFocus = false) => {
|
2021-07-25 08:14:43 +09:00
|
|
|
const { onClose } = this.props;
|
|
|
|
let message = null;
|
|
|
|
try {
|
|
|
|
message = this._modal?.getWrappedInstance?.().getCloseConfirmationMessage?.();
|
|
|
|
} catch (_) {
|
|
|
|
// injectIntl defines `getWrappedInstance` but errors out if `withRef`
|
|
|
|
// isn't set.
|
|
|
|
// This would be much smoother with react-intl 3+ and `forwardRef`.
|
|
|
|
}
|
2022-02-25 08:51:01 +09:00
|
|
|
onClose(message, ignoreFocus);
|
2023-01-30 09:45:35 +09:00
|
|
|
};
|
2021-07-25 08:14:43 +09:00
|
|
|
|
|
|
|
setModalRef = (c) => {
|
|
|
|
this._modal = c;
|
2023-01-30 09:45:35 +09:00
|
|
|
};
|
2021-07-25 08:14:43 +09:00
|
|
|
|
2017-04-02 05:11:28 +09:00
|
|
|
render () {
|
2022-02-25 08:51:01 +09:00
|
|
|
const { type, props, ignoreFocus } = this.props;
|
2020-11-27 11:24:11 +09:00
|
|
|
const { backgroundColor } = this.state;
|
2017-05-16 19:12:38 +09:00
|
|
|
const visible = !!type;
|
2017-04-02 05:11:28 +09:00
|
|
|
|
|
|
|
return (
|
2022-02-25 08:51:01 +09:00
|
|
|
<Base backgroundColor={backgroundColor} onClose={this.handleClose} ignoreFocus={ignoreFocus}>
|
2018-03-24 20:52:26 +09:00
|
|
|
{visible && (
|
2022-10-20 21:35:29 +09:00
|
|
|
<>
|
|
|
|
<BundleContainer fetchComponent={MODAL_COMPONENTS[type]} loading={this.renderLoading(type)} error={this.renderError} renderDelay={200}>
|
|
|
|
{(SpecificComponent) => <SpecificComponent {...props} onChangeBackgroundColor={this.setBackgroundColor} onClose={this.handleClose} ref={this.setModalRef} />}
|
|
|
|
</BundleContainer>
|
|
|
|
|
|
|
|
<Helmet>
|
|
|
|
<meta name='robots' content='noindex' />
|
|
|
|
</Helmet>
|
|
|
|
</>
|
2018-03-24 20:52:26 +09:00
|
|
|
)}
|
|
|
|
</Base>
|
2017-04-02 05:11:28 +09:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-22 03:05:35 +09:00
|
|
|
}
|