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';
|
2017-12-21 22:08:54 +01:00
|
|
|
import ModalError from 'modal/modalError';
|
|
|
|
import ModalDownloading from 'modal/modalDownloading';
|
2019-05-21 23:18:11 +02:00
|
|
|
import ModalAutoGenerateThumbnail from 'modal/modalAutoGenerateThumbnail';
|
2018-01-23 08:44:15 +01:00
|
|
|
import ModalAutoUpdateDownloaded from 'modal/modalAutoUpdateDownloaded';
|
2017-12-21 22:08:54 +01:00
|
|
|
import ModalUpgrade from 'modal/modalUpgrade';
|
|
|
|
import ModalWelcome from 'modal/modalWelcome';
|
|
|
|
import ModalFirstReward from 'modal/modalFirstReward';
|
|
|
|
import ModalRemoveFile from 'modal/modalRemoveFile';
|
|
|
|
import ModalTransactionFailed from 'modal/modalTransactionFailed';
|
|
|
|
import ModalFileTimeout from 'modal/modalFileTimeout';
|
|
|
|
import ModalAffirmPurchase from 'modal/modalAffirmPurchase';
|
|
|
|
import ModalRevokeClaim from 'modal/modalRevokeClaim';
|
2018-03-16 19:22:19 +01:00
|
|
|
import ModalPhoneCollection from 'modal/modalPhoneCollection';
|
|
|
|
import ModalFirstSubscription from 'modal/modalFirstSubscription';
|
2018-05-28 21:53:15 +02:00
|
|
|
import ModalConfirmTransaction from 'modal/modalConfirmTransaction';
|
2018-09-12 18:42:15 +02:00
|
|
|
import ModalSocialShare from 'modal/modalSocialShare';
|
|
|
|
import ModalSendTip from 'modal/modalSendTip';
|
|
|
|
import ModalPublish from 'modal/modalPublish';
|
2019-05-12 16:46:14 +02:00
|
|
|
import ModalOpenExternalResource from 'modal/modalOpenExternalResource';
|
2018-04-02 18:03:12 +02:00
|
|
|
import ModalConfirmThumbnailUpload from 'modal/modalConfirmThumbnailUpload';
|
2018-07-18 21:48:30 +02:00
|
|
|
import ModalWalletEncrypt from 'modal/modalWalletEncrypt';
|
|
|
|
import ModalWalletDecrypt from 'modal/modalWalletDecrypt';
|
|
|
|
import ModalWalletUnlock from 'modal/modalWalletUnlock';
|
2018-09-26 02:12:07 +02:00
|
|
|
import ModalRewardCode from 'modal/modalRewardCode';
|
2019-08-20 14:29:59 +02:00
|
|
|
import ModalPasswordUnsave from 'modal/modalPasswordUnsave';
|
2019-11-14 21:02:15 +01:00
|
|
|
import ModalCommentAcknowledgement from 'modal/modalCommentAcknowledgement';
|
2019-11-22 22:13:00 +01:00
|
|
|
import ModalWalletSend from 'modal/modalWalletSend';
|
|
|
|
import ModalWalletReceive from 'modal/modalWalletReceive';
|
2019-12-05 06:24:54 +01:00
|
|
|
import ModalYoutubeWelcome from 'modal/modalYoutubeWelcome';
|
2019-12-06 20:42:44 +01:00
|
|
|
import ModalCreateChannel from 'modal/modalChannelCreate';
|
2019-12-18 06:27:08 +01:00
|
|
|
import ModalMobileNavigation from 'modal/modalMobileNavigation';
|
2020-01-14 21:44:07 +01:00
|
|
|
import ModalSetReferrer from 'modal/modalSetReferrer';
|
2020-02-06 19:49:05 +01:00
|
|
|
import ModalRepost from 'modal/modalRepost';
|
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
|
|
|
}
|
|
|
|
|
2019-04-03 06:17:00 +02:00
|
|
|
const { id, modalProps } = modal;
|
|
|
|
|
|
|
|
switch (id) {
|
|
|
|
case MODALS.UPGRADE:
|
|
|
|
return <ModalUpgrade {...modalProps} />;
|
|
|
|
case MODALS.DOWNLOADING:
|
|
|
|
return <ModalDownloading {...modalProps} />;
|
2019-05-21 23:18:11 +02:00
|
|
|
case MODALS.AUTO_GENERATE_THUMBNAIL:
|
|
|
|
return <ModalAutoGenerateThumbnail {...modalProps} />;
|
2019-04-03 06:17:00 +02:00
|
|
|
case MODALS.AUTO_UPDATE_DOWNLOADED:
|
|
|
|
return <ModalAutoUpdateDownloaded {...modalProps} />;
|
|
|
|
case MODALS.ERROR:
|
|
|
|
return <ModalError {...modalProps} />;
|
|
|
|
case MODALS.FILE_TIMEOUT:
|
|
|
|
return <ModalFileTimeout {...modalProps} />;
|
|
|
|
case MODALS.WELCOME:
|
|
|
|
return <ModalWelcome {...modalProps} />;
|
|
|
|
case MODALS.FIRST_REWARD:
|
|
|
|
return <ModalFirstReward {...modalProps} />;
|
|
|
|
case MODALS.TRANSACTION_FAILED:
|
|
|
|
return <ModalTransactionFailed {...modalProps} />;
|
|
|
|
case MODALS.CONFIRM_FILE_REMOVE:
|
|
|
|
return <ModalRemoveFile {...modalProps} />;
|
|
|
|
case MODALS.AFFIRM_PURCHASE:
|
|
|
|
return <ModalAffirmPurchase {...modalProps} />;
|
|
|
|
case MODALS.CONFIRM_CLAIM_REVOKE:
|
|
|
|
return <ModalRevokeClaim {...modalProps} />;
|
|
|
|
case MODALS.PHONE_COLLECTION:
|
|
|
|
return <ModalPhoneCollection {...modalProps} />;
|
|
|
|
case MODALS.FIRST_SUBSCRIPTION:
|
|
|
|
return <ModalFirstSubscription {...modalProps} />;
|
|
|
|
case MODALS.SEND_TIP:
|
|
|
|
return <ModalSendTip {...modalProps} />;
|
|
|
|
case MODALS.SOCIAL_SHARE:
|
|
|
|
return <ModalSocialShare {...modalProps} />;
|
|
|
|
case MODALS.PUBLISH:
|
|
|
|
return <ModalPublish {...modalProps} />;
|
2019-05-12 16:46:14 +02:00
|
|
|
case MODALS.CONFIRM_EXTERNAL_RESOURCE:
|
|
|
|
return <ModalOpenExternalResource {...modalProps} />;
|
2019-04-03 06:17:00 +02:00
|
|
|
case MODALS.CONFIRM_TRANSACTION:
|
|
|
|
return <ModalConfirmTransaction {...modalProps} />;
|
|
|
|
case MODALS.CONFIRM_THUMBNAIL_UPLOAD:
|
|
|
|
return <ModalConfirmThumbnailUpload {...modalProps} />;
|
|
|
|
case MODALS.WALLET_ENCRYPT:
|
|
|
|
return <ModalWalletEncrypt {...modalProps} />;
|
|
|
|
case MODALS.WALLET_DECRYPT:
|
|
|
|
return <ModalWalletDecrypt {...modalProps} />;
|
|
|
|
case MODALS.WALLET_UNLOCK:
|
|
|
|
return <ModalWalletUnlock {...modalProps} />;
|
2019-08-20 14:29:59 +02:00
|
|
|
case MODALS.WALLET_PASSWORD_UNSAVE:
|
|
|
|
return <ModalPasswordUnsave {...modalProps} />;
|
2019-04-03 06:17:00 +02:00
|
|
|
case MODALS.REWARD_GENERATED_CODE:
|
|
|
|
return <ModalRewardCode {...modalProps} />;
|
2019-11-14 21:02:15 +01:00
|
|
|
case MODALS.COMMENT_ACKNOWEDGEMENT:
|
|
|
|
return <ModalCommentAcknowledgement {...modalProps} />;
|
2019-11-22 22:13:00 +01:00
|
|
|
case MODALS.WALLET_SEND:
|
|
|
|
return <ModalWalletSend {...modalProps} />;
|
|
|
|
case MODALS.WALLET_RECEIVE:
|
|
|
|
return <ModalWalletReceive {...modalProps} />;
|
2019-12-05 06:24:54 +01:00
|
|
|
case MODALS.YOUTUBE_WELCOME:
|
|
|
|
return <ModalYoutubeWelcome />;
|
2019-12-06 20:42:44 +01:00
|
|
|
case MODALS.CREATE_CHANNEL:
|
|
|
|
return <ModalCreateChannel {...modalProps} />;
|
2019-12-18 06:27:08 +01:00
|
|
|
case MODALS.MOBILE_NAVIGATION:
|
|
|
|
return <ModalMobileNavigation {...modalProps} />;
|
2020-01-14 21:44:07 +01:00
|
|
|
case MODALS.SET_REFERRER:
|
|
|
|
return <ModalSetReferrer {...modalProps} />;
|
2020-02-06 19:49:05 +01:00
|
|
|
case MODALS.REPOST:
|
|
|
|
return <ModalRepost {...modalProps} />;
|
2019-04-03 06:17:00 +02:00
|
|
|
default:
|
2018-10-29 18:23:53 +01:00
|
|
|
return null;
|
2017-08-18 19:09:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-18 06:27:08 +01:00
|
|
|
export default withRouter(ModalRouter);
|