2018-09-26 02:12:07 +02:00
|
|
|
// @flow
|
2017-12-21 22:08:54 +01:00
|
|
|
import React from 'react';
|
2019-12-18 06:27:08 +01:00
|
|
|
import { withRouter } from 'react-router';
|
2018-10-29 18:23:53 +01:00
|
|
|
import * as MODALS from 'constants/modal_types';
|
2021-10-19 04:31:23 +02:00
|
|
|
|
|
|
|
import ModalAffirmPurchase from 'modal/modalAffirmPurchase';
|
|
|
|
|
|
|
|
import ModalAutoGenerateThumbnail from 'modal/modalAutoGenerateThumbnail';
|
|
|
|
|
|
|
|
import ModalAutoUpdateDownloaded from 'modal/modalAutoUpdateDownloaded';
|
|
|
|
|
|
|
|
import ModalBlockChannel from 'modal/modalBlockChannel';
|
|
|
|
|
|
|
|
import ModalClaimCollectionAdd from 'modal/modalClaimCollectionAdd';
|
|
|
|
|
|
|
|
import ModalCommentAcknowledgement from 'modal/modalCommentAcknowledgement';
|
|
|
|
|
|
|
|
import ModalConfirmAge from 'modal/modalConfirmAge';
|
|
|
|
import ModalConfirmThumbnailUpload from 'modal/modalConfirmThumbnailUpload';
|
|
|
|
|
|
|
|
import ModalConfirmTransaction from 'modal/modalConfirmTransaction';
|
|
|
|
|
|
|
|
import ModalDeleteCollection from 'modal/modalRemoveCollection';
|
|
|
|
|
|
|
|
import ModalDownloading from 'modal/modalDownloading';
|
|
|
|
import ModalError from 'modal/modalError';
|
|
|
|
import ModalFileSelection from 'modal/modalFileSelection';
|
|
|
|
|
|
|
|
import ModalFileTimeout from 'modal/modalFileTimeout';
|
|
|
|
import ModalFirstReward from 'modal/modalFirstReward';
|
|
|
|
import ModalFirstSubscription from 'modal/modalFirstSubscription';
|
|
|
|
|
|
|
|
import ModalImageUpload from 'modal/modalImageUpload';
|
|
|
|
import ModalMassTipsUnlock from 'modal/modalMassTipUnlock';
|
|
|
|
|
|
|
|
import ModalMobileSearch from 'modal/modalMobileSearch';
|
|
|
|
|
|
|
|
import ModalOpenExternalResource from 'modal/modalOpenExternalResource';
|
|
|
|
|
|
|
|
import ModalPasswordUnsave from 'modal/modalPasswordUnsave';
|
|
|
|
|
|
|
|
import ModalPhoneCollection from 'modal/modalPhoneCollection';
|
|
|
|
|
|
|
|
import ModalPublish from 'modal/modalPublish';
|
|
|
|
import ModalPublishPreview from 'modal/modalPublishPreview';
|
|
|
|
|
|
|
|
import ModalRemoveBtcSwapAddress from 'modal/modalRemoveBtcSwapAddress';
|
|
|
|
|
|
|
|
import ModalRemoveCard from 'modal/modalRemoveCard';
|
|
|
|
import ModalRemoveComment from 'modal/modalRemoveComment';
|
|
|
|
|
|
|
|
import ModalRemoveFile from 'modal/modalRemoveFile';
|
|
|
|
import ModalRevokeClaim from 'modal/modalRevokeClaim';
|
|
|
|
import ModalRewardCode from 'modal/modalRewardCode';
|
|
|
|
import ModalSendTip from 'modal/modalSendTip';
|
2021-12-12 07:03:00 +01:00
|
|
|
import ModalRepost from 'modal/modalRepost';
|
2021-10-19 04:31:23 +02:00
|
|
|
import ModalSetReferrer from 'modal/modalSetReferrer';
|
|
|
|
import ModalSignOut from 'modal/modalSignOut';
|
|
|
|
import ModalSocialShare from 'modal/modalSocialShare';
|
|
|
|
import ModalSupportsLiquidate from 'modal/modalSupportsLiquidate';
|
|
|
|
|
|
|
|
import ModalSyncEnable from 'modal/modalSyncEnable';
|
|
|
|
import ModalTransactionFailed from 'modal/modalTransactionFailed';
|
|
|
|
|
|
|
|
import ModalUpgrade from 'modal/modalUpgrade';
|
|
|
|
import ModalViewImage from 'modal/modalViewImage';
|
|
|
|
import ModalWalletDecrypt from 'modal/modalWalletDecrypt';
|
|
|
|
|
|
|
|
import ModalWalletEncrypt from 'modal/modalWalletEncrypt';
|
|
|
|
|
|
|
|
import ModalWalletUnlock from 'modal/modalWalletUnlock';
|
|
|
|
|
|
|
|
import ModalYoutubeWelcome from 'modal/modalYoutubeWelcome';
|
2017-08-18 19:09:40 +02:00
|
|
|
|
2018-04-02 18:03:12 +02:00
|
|
|
type Props = {
|
2019-01-08 03:46:33 +01:00
|
|
|
modal: { id: string, modalProps: {} },
|
2019-01-10 02:38:26 +01:00
|
|
|
error: { message: string },
|
2019-12-18 06:27:08 +01:00
|
|
|
location: { pathname: string },
|
|
|
|
hideModal: () => void,
|
2018-04-02 18:03:12 +02:00
|
|
|
};
|
|
|
|
|
2019-04-03 06:17:00 +02:00
|
|
|
function ModalRouter(props: Props) {
|
2019-12-18 06:27:08 +01:00
|
|
|
const { modal, error, location, hideModal } = props;
|
|
|
|
const { pathname } = location;
|
|
|
|
|
|
|
|
React.useEffect(() => {
|
|
|
|
hideModal();
|
|
|
|
}, [pathname, hideModal]);
|
2017-08-18 19:09:40 +02:00
|
|
|
|
2019-04-03 06:17:00 +02:00
|
|
|
if (error) {
|
|
|
|
return <ModalError {...error} />;
|
2017-08-18 19:09:40 +02:00
|
|
|
}
|
|
|
|
|
2019-04-03 06:17:00 +02:00
|
|
|
if (!modal) {
|
|
|
|
return null;
|
2017-08-21 05:06:26 +02:00
|
|
|
}
|
|
|
|
|
2021-06-11 08:06:29 +02:00
|
|
|
function getModal(id) {
|
|
|
|
switch (id) {
|
|
|
|
case MODALS.UPGRADE:
|
|
|
|
return ModalUpgrade;
|
|
|
|
case MODALS.DOWNLOADING:
|
|
|
|
return ModalDownloading;
|
|
|
|
case MODALS.AUTO_GENERATE_THUMBNAIL:
|
|
|
|
return ModalAutoGenerateThumbnail;
|
|
|
|
case MODALS.AUTO_UPDATE_DOWNLOADED:
|
|
|
|
return ModalAutoUpdateDownloaded;
|
|
|
|
case MODALS.ERROR:
|
|
|
|
return ModalError;
|
|
|
|
case MODALS.FILE_TIMEOUT:
|
|
|
|
return ModalFileTimeout;
|
|
|
|
case MODALS.FIRST_REWARD:
|
|
|
|
return ModalFirstReward;
|
|
|
|
case MODALS.TRANSACTION_FAILED:
|
|
|
|
return ModalTransactionFailed;
|
|
|
|
case MODALS.CONFIRM_FILE_REMOVE:
|
|
|
|
return ModalRemoveFile;
|
|
|
|
case MODALS.AFFIRM_PURCHASE:
|
|
|
|
return ModalAffirmPurchase;
|
|
|
|
case MODALS.CONFIRM_CLAIM_REVOKE:
|
|
|
|
return ModalRevokeClaim;
|
|
|
|
case MODALS.PHONE_COLLECTION:
|
|
|
|
return ModalPhoneCollection;
|
|
|
|
case MODALS.FIRST_SUBSCRIPTION:
|
|
|
|
return ModalFirstSubscription;
|
|
|
|
case MODALS.SEND_TIP:
|
|
|
|
return ModalSendTip;
|
2021-12-12 07:03:00 +01:00
|
|
|
case MODALS.REPOST:
|
|
|
|
return ModalRepost;
|
2021-06-11 08:06:29 +02:00
|
|
|
case MODALS.SOCIAL_SHARE:
|
|
|
|
return ModalSocialShare;
|
|
|
|
case MODALS.PUBLISH:
|
|
|
|
return ModalPublish;
|
|
|
|
case MODALS.PUBLISH_PREVIEW:
|
|
|
|
return ModalPublishPreview;
|
|
|
|
case MODALS.CONFIRM_EXTERNAL_RESOURCE:
|
|
|
|
return ModalOpenExternalResource;
|
|
|
|
case MODALS.CONFIRM_TRANSACTION:
|
|
|
|
return ModalConfirmTransaction;
|
|
|
|
case MODALS.CONFIRM_THUMBNAIL_UPLOAD:
|
|
|
|
return ModalConfirmThumbnailUpload;
|
|
|
|
case MODALS.WALLET_ENCRYPT:
|
|
|
|
return ModalWalletEncrypt;
|
|
|
|
case MODALS.WALLET_DECRYPT:
|
|
|
|
return ModalWalletDecrypt;
|
|
|
|
case MODALS.WALLET_UNLOCK:
|
|
|
|
return ModalWalletUnlock;
|
|
|
|
case MODALS.WALLET_PASSWORD_UNSAVE:
|
|
|
|
return ModalPasswordUnsave;
|
|
|
|
case MODALS.REWARD_GENERATED_CODE:
|
|
|
|
return ModalRewardCode;
|
|
|
|
case MODALS.COMMENT_ACKNOWEDGEMENT:
|
|
|
|
return ModalCommentAcknowledgement;
|
|
|
|
case MODALS.YOUTUBE_WELCOME:
|
|
|
|
return ModalYoutubeWelcome;
|
|
|
|
case MODALS.SET_REFERRER:
|
|
|
|
return ModalSetReferrer;
|
|
|
|
case MODALS.SIGN_OUT:
|
|
|
|
return ModalSignOut;
|
|
|
|
case MODALS.CONFIRM_AGE:
|
|
|
|
return ModalConfirmAge;
|
|
|
|
case MODALS.FILE_SELECTION:
|
|
|
|
return ModalFileSelection;
|
|
|
|
case MODALS.LIQUIDATE_SUPPORTS:
|
|
|
|
return ModalSupportsLiquidate;
|
|
|
|
case MODALS.IMAGE_UPLOAD:
|
|
|
|
return ModalImageUpload;
|
|
|
|
case MODALS.SYNC_ENABLE:
|
|
|
|
return ModalSyncEnable;
|
|
|
|
case MODALS.MOBILE_SEARCH:
|
|
|
|
return ModalMobileSearch;
|
|
|
|
case MODALS.VIEW_IMAGE:
|
|
|
|
return ModalViewImage;
|
|
|
|
case MODALS.MASS_TIP_UNLOCK:
|
|
|
|
return ModalMassTipsUnlock;
|
|
|
|
case MODALS.CONFIRM_REMOVE_BTC_SWAP_ADDRESS:
|
|
|
|
return ModalRemoveBtcSwapAddress;
|
2021-08-12 09:10:44 +02:00
|
|
|
case MODALS.BLOCK_CHANNEL:
|
|
|
|
return ModalBlockChannel;
|
2021-06-11 08:06:29 +02:00
|
|
|
case MODALS.COLLECTION_ADD:
|
|
|
|
return ModalClaimCollectionAdd;
|
|
|
|
case MODALS.COLLECTION_DELETE:
|
|
|
|
return ModalDeleteCollection;
|
2021-07-06 22:28:29 +02:00
|
|
|
case MODALS.CONFIRM_REMOVE_CARD:
|
|
|
|
return ModalRemoveCard;
|
2021-07-19 23:22:39 +02:00
|
|
|
case MODALS.CONFIRM_REMOVE_COMMENT:
|
|
|
|
return ModalRemoveComment;
|
2021-06-11 08:06:29 +02:00
|
|
|
default:
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-03 06:17:00 +02:00
|
|
|
const { id, modalProps } = modal;
|
2021-06-11 08:06:29 +02:00
|
|
|
const SelectedModal = getModal(id);
|
2019-04-03 06:17:00 +02:00
|
|
|
|
2021-06-11 08:06:29 +02:00
|
|
|
if (SelectedModal === null) {
|
|
|
|
return null;
|
2017-08-18 19:09:40 +02:00
|
|
|
}
|
2021-06-11 08:06:29 +02:00
|
|
|
|
2021-10-19 04:31:23 +02:00
|
|
|
return <SelectedModal {...modalProps} />;
|
2017-08-18 19:09:40 +02:00
|
|
|
}
|
|
|
|
|
2019-12-18 06:27:08 +01:00
|
|
|
export default withRouter(ModalRouter);
|