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