2017-05-03 02:04:16 +02:00
|
|
|
import React from 'react';
|
2017-04-21 20:05:35 +02:00
|
|
|
import PropTypes from 'prop-types';
|
2019-09-29 14:30:58 +02:00
|
|
|
import { getScrollbarWidth } from 'flavours/glitch/util/scrollbar';
|
|
|
|
import Base from 'flavours/glitch/components/modal_root';
|
2017-07-08 00:06:02 +02:00
|
|
|
import BundleContainer from '../containers/bundle_container';
|
|
|
|
import BundleModalError from './bundle_modal_error';
|
|
|
|
import ModalLoading from './modal_loading';
|
2017-09-10 10:26:01 +02:00
|
|
|
import ActionsModal from './actions_modal';
|
|
|
|
import MediaModal from './media_modal';
|
|
|
|
import VideoModal from './video_modal';
|
|
|
|
import BoostModal from './boost_modal';
|
2017-12-09 17:26:22 +01:00
|
|
|
import FavouriteModal from './favourite_modal';
|
2019-10-03 03:34:58 +02:00
|
|
|
import AudioModal from './audio_modal';
|
2017-10-13 18:01:14 +02:00
|
|
|
import DoodleModal from './doodle_modal';
|
2017-09-10 10:26:01 +02:00
|
|
|
import ConfirmationModal from './confirmation_modal';
|
2018-08-18 11:01:53 +02:00
|
|
|
import FocalPointModal from './focal_point_modal';
|
2022-05-15 17:30:40 +02:00
|
|
|
import DeprecatedSettingsModal from './deprecated_settings_modal';
|
2017-07-08 00:06:02 +02:00
|
|
|
import {
|
|
|
|
OnboardingModal,
|
2017-08-07 00:36:04 +02:00
|
|
|
MuteModal,
|
2019-09-29 21:46:05 +02:00
|
|
|
BlockModal,
|
2017-07-08 00:06:02 +02:00
|
|
|
ReportModal,
|
2017-07-12 11:03:17 +02:00
|
|
|
SettingsModal,
|
2017-08-31 03:38:35 +02:00
|
|
|
EmbedModal,
|
2017-12-09 03:13:08 +01:00
|
|
|
ListEditor,
|
2018-11-06 17:44:28 +01:00
|
|
|
ListAdder,
|
2018-08-20 14:22:19 +02:00
|
|
|
PinnedAccountsEditor,
|
2022-02-09 01:17:07 +01:00
|
|
|
CompareHistoryModal,
|
2022-08-25 04:27:47 +02:00
|
|
|
FilterModal,
|
2017-12-04 08:26:40 +01:00
|
|
|
} from 'flavours/glitch/util/async-components';
|
2017-04-01 22:11:28 +02:00
|
|
|
|
|
|
|
const MODAL_COMPONENTS = {
|
2017-09-10 10:26:01 +02:00
|
|
|
'MEDIA': () => Promise.resolve({ default: MediaModal }),
|
2017-04-16 20:32:00 +02:00
|
|
|
'ONBOARDING': OnboardingModal,
|
2017-09-10 10:26:01 +02:00
|
|
|
'VIDEO': () => Promise.resolve({ default: VideoModal }),
|
2019-10-03 03:34:58 +02:00
|
|
|
'AUDIO': () => Promise.resolve({ default: AudioModal }),
|
2017-09-10 10:26:01 +02:00
|
|
|
'BOOST': () => Promise.resolve({ default: BoostModal }),
|
2017-12-09 17:26:22 +01:00
|
|
|
'FAVOURITE': () => Promise.resolve({ default: FavouriteModal }),
|
2017-10-13 18:01:14 +02:00
|
|
|
'DOODLE': () => Promise.resolve({ default: DoodleModal }),
|
2017-09-10 10:26:01 +02:00
|
|
|
'CONFIRM': () => Promise.resolve({ default: ConfirmationModal }),
|
2017-08-07 00:36:04 +02:00
|
|
|
'MUTE': MuteModal,
|
2019-09-29 21:46:05 +02:00
|
|
|
'BLOCK': BlockModal,
|
2017-06-27 18:07:21 +02:00
|
|
|
'REPORT': ReportModal,
|
2017-07-12 11:03:17 +02:00
|
|
|
'SETTINGS': SettingsModal,
|
2022-05-15 17:30:40 +02:00
|
|
|
'DEPRECATED_SETTINGS': () => Promise.resolve({ default: DeprecatedSettingsModal }),
|
2017-07-27 22:31:59 +02:00
|
|
|
'ACTIONS': () => Promise.resolve({ default: ActionsModal }),
|
2017-08-31 03:38:35 +02:00
|
|
|
'EMBED': EmbedModal,
|
2017-12-09 03:13:08 +01:00
|
|
|
'LIST_EDITOR': ListEditor,
|
2018-08-18 11:01:53 +02:00
|
|
|
'FOCAL_POINT': () => Promise.resolve({ default: FocalPointModal }),
|
2022-02-09 01:17:07 +01:00
|
|
|
'LIST_ADDER': ListAdder,
|
2018-08-20 14:22:19 +02:00
|
|
|
'PINNED_ACCOUNTS_EDITOR': PinnedAccountsEditor,
|
2022-02-09 01:17:07 +01:00
|
|
|
'COMPARE_HISTORY': CompareHistoryModal,
|
2022-08-25 04:27:47 +02:00
|
|
|
'FILTER': FilterModal,
|
2017-04-01 22:11:28 +02:00
|
|
|
};
|
|
|
|
|
2017-06-23 19:36:54 +02:00
|
|
|
export default class ModalRoot extends React.PureComponent {
|
2017-04-01 22:11:28 +02:00
|
|
|
|
2017-05-12 14:44:10 +02:00
|
|
|
static propTypes = {
|
|
|
|
type: PropTypes.string,
|
|
|
|
props: PropTypes.object,
|
2017-05-20 17:31:47 +02:00
|
|
|
onClose: PropTypes.func.isRequired,
|
2022-02-25 00:51:01 +01:00
|
|
|
ignoreFocus: PropTypes.bool,
|
2017-05-12 14:44:10 +02:00
|
|
|
};
|
2017-04-01 22:11:28 +02:00
|
|
|
|
2020-11-27 03:24:11 +01:00
|
|
|
state = {
|
|
|
|
backgroundColor: null,
|
|
|
|
};
|
|
|
|
|
2021-07-12 17:55:40 +02:00
|
|
|
componentDidUpdate () {
|
|
|
|
if (!!this.props.type) {
|
2018-07-31 23:04:09 +02:00
|
|
|
document.body.classList.add('with-modals--active');
|
2019-07-19 09:25:22 +02:00
|
|
|
document.documentElement.style.marginRight = `${getScrollbarWidth()}px`;
|
2018-07-31 23:04:09 +02:00
|
|
|
} else {
|
|
|
|
document.body.classList.remove('with-modals--active');
|
2019-07-19 09:25:22 +02:00
|
|
|
document.documentElement.style.marginRight = 0;
|
2018-07-31 23:04:09 +02:00
|
|
|
}
|
2018-07-31 23:03:16 +02:00
|
|
|
}
|
|
|
|
|
2020-11-27 03:24:11 +01:00
|
|
|
setBackgroundColor = color => {
|
|
|
|
this.setState({ backgroundColor: color });
|
|
|
|
}
|
|
|
|
|
2017-09-10 10:26:01 +02:00
|
|
|
renderLoading = modalId => () => {
|
2017-12-09 17:26:22 +01:00
|
|
|
return ['MEDIA', 'VIDEO', 'BOOST', 'FAVOURITE', 'DOODLE', 'CONFIRM', 'ACTIONS'].indexOf(modalId) === -1 ? <ModalLoading /> : null;
|
2017-07-08 00:06:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
renderError = (props) => {
|
|
|
|
const { onClose } = this.props;
|
|
|
|
|
|
|
|
return <BundleModalError {...props} onClose={onClose} />;
|
|
|
|
}
|
|
|
|
|
2022-02-25 00:51:01 +01:00
|
|
|
handleClose = (ignoreFocus = false) => {
|
2021-07-25 01:14:43 +02: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 00:51:01 +01:00
|
|
|
onClose(message, ignoreFocus);
|
2021-07-25 01:14:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
setModalRef = (c) => {
|
|
|
|
this._modal = c;
|
|
|
|
}
|
|
|
|
|
2017-04-01 22:11:28 +02:00
|
|
|
render () {
|
2022-02-25 00:51:01 +01:00
|
|
|
const { type, props, ignoreFocus } = this.props;
|
2020-11-27 03:24:11 +01:00
|
|
|
const { backgroundColor } = this.state;
|
2017-05-16 12:12:38 +02:00
|
|
|
const visible = !!type;
|
2017-04-01 22:11:28 +02:00
|
|
|
|
|
|
|
return (
|
2022-02-25 00:51:01 +01:00
|
|
|
<Base backgroundColor={backgroundColor} onClose={this.handleClose} noEsc={props ? props.noEsc : false} ignoreFocus={ignoreFocus}>
|
2018-04-20 15:58:36 +02:00
|
|
|
{visible && (
|
|
|
|
<BundleContainer fetchComponent={MODAL_COMPONENTS[type]} loading={this.renderLoading(type)} error={this.renderError} renderDelay={200}>
|
2021-07-25 01:14:43 +02:00
|
|
|
{(SpecificComponent) => <SpecificComponent {...props} onChangeBackgroundColor={this.setBackgroundColor} onClose={this.handleClose} ref={this.setModalRef} />}
|
2018-04-20 15:58:36 +02:00
|
|
|
</BundleContainer>
|
|
|
|
)}
|
|
|
|
</Base>
|
2017-04-01 22:11:28 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-21 20:05:35 +02:00
|
|
|
}
|