2019-11-07 20:39:22 +01:00
|
|
|
// @flow
|
2019-12-02 18:30:08 +01:00
|
|
|
import React, { useEffect } from 'react';
|
2020-02-05 15:49:03 +01:00
|
|
|
import { Route, Redirect, Switch, withRouter } from 'react-router-dom';
|
2020-10-30 05:19:05 +01:00
|
|
|
|
2021-06-11 08:06:29 +02:00
|
|
|
import * as PAGES from 'constants/pages';
|
2020-08-25 21:25:33 +02:00
|
|
|
import { LINKED_COMMENT_QUERY_PARAM } from 'constants/comment';
|
2020-10-07 02:59:38 +02:00
|
|
|
import { parseURI, isURIValid } from 'lbry-redux';
|
2021-03-30 01:05:18 +02:00
|
|
|
import { SITE_TITLE, WELCOME_VERSION, SIMPLE_SITE } from 'config';
|
2021-06-01 05:04:26 +02:00
|
|
|
import LoadingBarOneOff from 'component/loadingBarOneOff';
|
2019-11-07 20:39:22 +01:00
|
|
|
|
2021-06-11 08:06:29 +02:00
|
|
|
import HomePage from 'page/home';
|
|
|
|
|
|
|
|
// @if TARGET='app'
|
|
|
|
const BackupPage = React.lazy(() => import('page/backup' /* webpackChunkName: "backup" */));
|
|
|
|
// @endif
|
|
|
|
|
2021-06-14 13:58:33 +02:00
|
|
|
// @if TARGET='web'
|
2021-06-11 08:06:29 +02:00
|
|
|
const Code2257Page = React.lazy(() => import('web/page/code2257'));
|
|
|
|
// @endif
|
|
|
|
|
2021-06-14 13:58:33 +02:00
|
|
|
// Chunk: "secondary"
|
|
|
|
const SignInPage = React.lazy(() => import('page/signIn' /* webpackChunkName: "secondary" */));
|
2021-06-25 10:02:45 +02:00
|
|
|
const SignInWalletPasswordPage = React.lazy(() =>
|
|
|
|
import('page/signInWalletPassword' /* webpackChunkName: "secondary" */)
|
|
|
|
);
|
2021-06-14 13:58:33 +02:00
|
|
|
const SignUpPage = React.lazy(() => import('page/signUp' /* webpackChunkName: "secondary" */));
|
|
|
|
const SignInVerifyPage = React.lazy(() => import('page/signInVerify' /* webpackChunkName: "secondary" */));
|
2021-06-11 08:06:29 +02:00
|
|
|
|
2021-06-14 13:58:33 +02:00
|
|
|
// Chunk: "wallet/secondary"
|
|
|
|
const BuyPage = React.lazy(() => import('page/buy' /* webpackChunkName: "secondary" */));
|
|
|
|
const ReceivePage = React.lazy(() => import('page/receive' /* webpackChunkName: "secondary" */));
|
|
|
|
const SendPage = React.lazy(() => import('page/send' /* webpackChunkName: "secondary" */));
|
|
|
|
const SwapPage = React.lazy(() => import('page/swap' /* webpackChunkName: "secondary" */));
|
|
|
|
const WalletPage = React.lazy(() => import('page/wallet' /* webpackChunkName: "secondary" */));
|
2021-06-11 08:06:29 +02:00
|
|
|
|
|
|
|
// Chunk: none
|
2021-06-14 13:58:33 +02:00
|
|
|
const NotificationsPage = React.lazy(() => import('page/notifications' /* webpackChunkName: "secondary" */));
|
|
|
|
const CollectionPage = React.lazy(() => import('page/collection' /* webpackChunkName: "secondary" */));
|
|
|
|
const ChannelNew = React.lazy(() => import('page/channelNew' /* webpackChunkName: "secondary" */));
|
2021-06-25 10:02:45 +02:00
|
|
|
const ChannelsFollowingDiscoverPage = React.lazy(() =>
|
|
|
|
import('page/channelsFollowingDiscover' /* webpackChunkName: "secondary" */)
|
|
|
|
);
|
2021-06-14 13:58:33 +02:00
|
|
|
const ChannelsFollowingPage = React.lazy(() => import('page/channelsFollowing' /* webpackChunkName: "secondary" */));
|
|
|
|
const ChannelsPage = React.lazy(() => import('page/channels' /* webpackChunkName: "secondary" */));
|
2021-06-11 08:06:29 +02:00
|
|
|
const CheckoutPage = React.lazy(() => import('page/checkoutPage' /* webpackChunkName: "checkoutPage" */));
|
2021-06-14 13:58:33 +02:00
|
|
|
const CreatorDashboard = React.lazy(() => import('page/creatorDashboard' /* webpackChunkName: "secondary" */));
|
|
|
|
const DiscoverPage = React.lazy(() => import('page/discover' /* webpackChunkName: "secondary" */));
|
|
|
|
const EmbedWrapperPage = React.lazy(() => import('page/embedWrapper' /* webpackChunkName: "secondary" */));
|
|
|
|
const FileListPublished = React.lazy(() => import('page/fileListPublished' /* webpackChunkName: "secondary" */));
|
2021-06-11 08:06:29 +02:00
|
|
|
const FourOhFourPage = React.lazy(() => import('page/fourOhFour' /* webpackChunkName: "fourOhFour" */));
|
|
|
|
const HelpPage = React.lazy(() => import('page/help' /* webpackChunkName: "help" */));
|
2021-06-14 13:58:33 +02:00
|
|
|
const InvitePage = React.lazy(() => import('page/invite' /* webpackChunkName: "secondary" */));
|
|
|
|
const InvitedPage = React.lazy(() => import('page/invited' /* webpackChunkName: "secondary" */));
|
|
|
|
const LibraryPage = React.lazy(() => import('page/library' /* webpackChunkName: "secondary" */));
|
|
|
|
const ListBlockedPage = React.lazy(() => import('page/listBlocked' /* webpackChunkName: "secondary" */));
|
|
|
|
const ListsPage = React.lazy(() => import('page/lists' /* webpackChunkName: "secondary" */));
|
|
|
|
const LiveStreamSetupPage = React.lazy(() => import('page/livestreamSetup' /* webpackChunkName: "secondary" */));
|
|
|
|
const LivestreamCurrentPage = React.lazy(() => import('page/livestreamCurrent' /* webpackChunkName: "secondary" */));
|
|
|
|
const PasswordResetPage = React.lazy(() => import('page/passwordReset' /* webpackChunkName: "secondary" */));
|
|
|
|
const PasswordSetPage = React.lazy(() => import('page/passwordSet' /* webpackChunkName: "secondary" */));
|
|
|
|
const PublishPage = React.lazy(() => import('page/publish' /* webpackChunkName: "secondary" */));
|
|
|
|
const ReportContentPage = React.lazy(() => import('page/reportContent' /* webpackChunkName: "secondary" */));
|
|
|
|
const ReportPage = React.lazy(() => import('page/report' /* webpackChunkName: "secondary" */));
|
|
|
|
const RepostNew = React.lazy(() => import('page/repost' /* webpackChunkName: "secondary" */));
|
|
|
|
const RewardsPage = React.lazy(() => import('page/rewards' /* webpackChunkName: "secondary" */));
|
|
|
|
const RewardsVerifyPage = React.lazy(() => import('page/rewardsVerify' /* webpackChunkName: "secondary" */));
|
|
|
|
const SearchPage = React.lazy(() => import('page/search' /* webpackChunkName: "secondary" */));
|
|
|
|
const SettingsAdvancedPage = React.lazy(() => import('page/settingsAdvanced' /* webpackChunkName: "secondary" */));
|
|
|
|
const SettingsCreatorPage = React.lazy(() => import('page/settingsCreator' /* webpackChunkName: "secondary" */));
|
2021-06-25 10:02:45 +02:00
|
|
|
const SettingsNotificationsPage = React.lazy(() =>
|
|
|
|
import('page/settingsNotifications' /* webpackChunkName: "secondary" */)
|
|
|
|
);
|
2021-06-14 13:58:33 +02:00
|
|
|
const SettingsPage = React.lazy(() => import('page/settings' /* webpackChunkName: "secondary" */));
|
|
|
|
const ShowPage = React.lazy(() => import('page/show' /* webpackChunkName: "secondary" */));
|
2021-06-25 10:02:45 +02:00
|
|
|
const TagsFollowingManagePage = React.lazy(() =>
|
|
|
|
import('page/tagsFollowingManage' /* webpackChunkName: "secondary" */)
|
|
|
|
);
|
2021-06-14 13:58:33 +02:00
|
|
|
const TagsFollowingPage = React.lazy(() => import('page/tagsFollowing' /* webpackChunkName: "secondary" */));
|
|
|
|
const TopPage = React.lazy(() => import('page/top' /* webpackChunkName: "secondary" */));
|
|
|
|
const Welcome = React.lazy(() => import('page/welcome' /* webpackChunkName: "secondary" */));
|
|
|
|
const YoutubeSyncPage = React.lazy(() => import('page/youtubeSync' /* webpackChunkName: "secondary" */));
|
2019-11-07 20:39:22 +01:00
|
|
|
|
|
|
|
// Tell the browser we are handling scroll restoration
|
|
|
|
if ('scrollRestoration' in history) {
|
|
|
|
history.scrollRestoration = 'manual';
|
|
|
|
}
|
|
|
|
|
|
|
|
type Props = {
|
|
|
|
currentScroll: number,
|
|
|
|
isAuthenticated: boolean,
|
2020-11-25 18:09:58 +01:00
|
|
|
location: { pathname: string, search: string, hash: string },
|
2020-01-25 21:37:02 +01:00
|
|
|
history: {
|
2020-11-25 18:09:58 +01:00
|
|
|
action: string,
|
2020-01-25 21:37:02 +01:00
|
|
|
entries: { title: string }[],
|
|
|
|
goBack: () => void,
|
|
|
|
goForward: () => void,
|
|
|
|
index: number,
|
|
|
|
length: number,
|
|
|
|
location: { pathname: string },
|
2021-02-16 22:09:20 +01:00
|
|
|
push: (string) => void,
|
2020-01-25 21:37:02 +01:00
|
|
|
state: {},
|
|
|
|
replaceState: ({}, string, string) => void,
|
2021-02-16 22:09:20 +01:00
|
|
|
listen: (any) => () => void,
|
2020-01-25 21:37:02 +01:00
|
|
|
},
|
|
|
|
uri: string,
|
|
|
|
title: string,
|
2020-02-19 07:31:40 +01:00
|
|
|
welcomeVersion: number,
|
2020-07-10 23:04:36 +02:00
|
|
|
hasNavigated: boolean,
|
|
|
|
setHasNavigated: () => void,
|
2021-02-16 22:09:20 +01:00
|
|
|
setReferrer: (string) => void,
|
2020-10-07 02:59:38 +02:00
|
|
|
hasUnclaimedRefereeReward: boolean,
|
2020-11-10 17:07:00 +01:00
|
|
|
homepageData: any,
|
2019-11-07 20:39:22 +01:00
|
|
|
};
|
|
|
|
|
2020-10-30 05:19:05 +01:00
|
|
|
type PrivateRouteProps = Props & {
|
|
|
|
component: any,
|
|
|
|
isAuthenticated: boolean,
|
|
|
|
};
|
|
|
|
|
|
|
|
function PrivateRoute(props: PrivateRouteProps) {
|
|
|
|
const { component: Component, isAuthenticated, ...rest } = props;
|
2021-04-03 06:28:54 +02:00
|
|
|
const urlSearchParams = new URLSearchParams(props.location.search);
|
|
|
|
const redirectUrl = urlSearchParams.get('redirect');
|
2020-10-30 05:19:05 +01:00
|
|
|
return (
|
|
|
|
<Route
|
|
|
|
{...rest}
|
2021-02-16 22:09:20 +01:00
|
|
|
render={(props) =>
|
2020-10-30 05:19:05 +01:00
|
|
|
isAuthenticated || !IS_WEB ? (
|
|
|
|
<Component {...props} />
|
|
|
|
) : (
|
2021-04-03 06:28:54 +02:00
|
|
|
<Redirect to={`/$/${PAGES.AUTH}?redirect=${redirectUrl || props.location.pathname}`} />
|
2020-10-30 05:19:05 +01:00
|
|
|
)
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-11-07 20:39:22 +01:00
|
|
|
function AppRouter(props: Props) {
|
2020-02-05 15:49:03 +01:00
|
|
|
const {
|
|
|
|
currentScroll,
|
2020-11-25 18:09:58 +01:00
|
|
|
location: { pathname, search, hash },
|
2020-02-05 15:49:03 +01:00
|
|
|
isAuthenticated,
|
2020-01-25 21:37:02 +01:00
|
|
|
history,
|
|
|
|
uri,
|
|
|
|
title,
|
2020-02-19 07:31:40 +01:00
|
|
|
welcomeVersion,
|
2020-07-10 23:04:36 +02:00
|
|
|
hasNavigated,
|
|
|
|
setHasNavigated,
|
2020-10-07 02:59:38 +02:00
|
|
|
hasUnclaimedRefereeReward,
|
|
|
|
setReferrer,
|
2020-11-10 17:07:00 +01:00
|
|
|
homepageData,
|
2020-02-05 15:49:03 +01:00
|
|
|
} = props;
|
2021-04-03 06:28:54 +02:00
|
|
|
const { entries, listen, action: historyAction } = history;
|
2020-01-25 21:37:02 +01:00
|
|
|
const entryIndex = history.index;
|
2020-02-27 20:00:23 +01:00
|
|
|
const urlParams = new URLSearchParams(search);
|
|
|
|
const resetScroll = urlParams.get('reset_scroll');
|
2020-08-25 21:25:33 +02:00
|
|
|
const hasLinkedCommentInUrl = urlParams.get(LINKED_COMMENT_QUERY_PARAM);
|
2020-01-25 21:37:02 +01:00
|
|
|
|
2020-11-10 17:07:00 +01:00
|
|
|
const dynamicRoutes = Object.values(homepageData).filter(
|
|
|
|
(potentialRoute: any) => potentialRoute && potentialRoute.route
|
|
|
|
);
|
|
|
|
|
2020-07-30 21:14:22 +02:00
|
|
|
// For people arriving at settings page from deeplinks, know whether they can "go back"
|
2020-07-10 23:04:36 +02:00
|
|
|
useEffect(() => {
|
2021-04-03 06:28:54 +02:00
|
|
|
const unlisten = listen((location, action) => {
|
2020-07-10 23:04:36 +02:00
|
|
|
if (action === 'PUSH') {
|
|
|
|
if (!hasNavigated && setHasNavigated) setHasNavigated();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return unlisten;
|
2021-04-03 06:28:54 +02:00
|
|
|
}, [listen, hasNavigated, setHasNavigated]);
|
2020-07-10 23:04:36 +02:00
|
|
|
|
2020-10-07 02:59:38 +02:00
|
|
|
useEffect(() => {
|
2020-10-07 19:02:09 +02:00
|
|
|
if (!hasNavigated && hasUnclaimedRefereeReward && !isAuthenticated) {
|
2020-10-07 02:59:38 +02:00
|
|
|
const valid = isURIValid(uri);
|
|
|
|
if (valid) {
|
|
|
|
const { path } = parseURI(uri);
|
2020-10-07 19:02:09 +02:00
|
|
|
if (path !== 'undefined') setReferrer(path);
|
2020-10-07 02:59:38 +02:00
|
|
|
}
|
|
|
|
}
|
2020-10-07 19:02:09 +02:00
|
|
|
}, [hasNavigated, uri, hasUnclaimedRefereeReward, setReferrer, isAuthenticated]);
|
2020-10-07 02:59:38 +02:00
|
|
|
|
2020-01-25 21:37:02 +01:00
|
|
|
useEffect(() => {
|
2020-02-13 02:48:28 +01:00
|
|
|
if (uri) {
|
|
|
|
const { channelName, streamName } = parseURI(uri);
|
|
|
|
|
2021-04-05 04:53:13 +02:00
|
|
|
if (title) {
|
2020-02-13 02:48:28 +01:00
|
|
|
document.title = title;
|
2021-04-05 04:53:13 +02:00
|
|
|
} else if (streamName) {
|
2020-02-13 02:48:28 +01:00
|
|
|
document.title = streamName;
|
2021-04-05 04:53:13 +02:00
|
|
|
} else if (channelName) {
|
2020-02-13 02:48:28 +01:00
|
|
|
document.title = channelName;
|
|
|
|
} else {
|
|
|
|
document.title = IS_WEB ? SITE_TITLE : 'LBRY';
|
|
|
|
}
|
2020-01-25 21:37:02 +01:00
|
|
|
} else {
|
|
|
|
document.title = IS_WEB ? SITE_TITLE : 'LBRY';
|
|
|
|
}
|
|
|
|
|
2020-01-26 04:40:30 +01:00
|
|
|
// @if TARGET='app'
|
2020-01-25 21:37:02 +01:00
|
|
|
entries[entryIndex].title = document.title;
|
2020-01-26 04:40:30 +01:00
|
|
|
// @endif
|
2020-01-25 21:37:02 +01:00
|
|
|
return () => {
|
|
|
|
document.title = IS_WEB ? SITE_TITLE : 'LBRY';
|
|
|
|
};
|
2020-02-13 02:48:28 +01:00
|
|
|
}, [entries, entryIndex, title, uri]);
|
2019-11-07 20:39:22 +01:00
|
|
|
|
|
|
|
useEffect(() => {
|
2020-08-25 21:25:33 +02:00
|
|
|
if (!hasLinkedCommentInUrl) {
|
2021-04-03 06:28:54 +02:00
|
|
|
if (hash && historyAction === 'PUSH') {
|
2020-11-25 18:09:58 +01:00
|
|
|
const id = hash.replace('#', '');
|
|
|
|
const element = document.getElementById(id);
|
|
|
|
if (element) {
|
|
|
|
window.scrollTo(0, element.offsetTop);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
window.scrollTo(0, currentScroll);
|
|
|
|
}
|
2020-08-25 21:25:33 +02:00
|
|
|
}
|
2021-04-03 06:28:54 +02:00
|
|
|
}, [currentScroll, pathname, search, hash, resetScroll, hasLinkedCommentInUrl, historyAction]);
|
2019-11-07 20:39:22 +01:00
|
|
|
|
2020-01-29 21:21:03 +01:00
|
|
|
// react-router doesn't decode pathanmes before doing the route matching check
|
|
|
|
// We have to redirect here because if we redirect on the server, it might get encoded again
|
|
|
|
// in the browser causing a redirect loop
|
2020-03-31 22:35:33 +02:00
|
|
|
const decodedUrl = decodeURIComponent(pathname) + search;
|
2020-03-30 22:47:07 +02:00
|
|
|
if (decodedUrl !== pathname + search) {
|
|
|
|
return <Redirect to={decodedUrl} />;
|
2020-01-29 21:21:03 +01:00
|
|
|
}
|
|
|
|
|
2019-11-07 20:39:22 +01:00
|
|
|
return (
|
2021-06-01 05:04:26 +02:00
|
|
|
<React.Suspense fallback={<LoadingBarOneOff />}>
|
2021-06-11 08:06:29 +02:00
|
|
|
<Switch>
|
|
|
|
{/* @if TARGET='app' */}
|
|
|
|
{welcomeVersion < WELCOME_VERSION && <Route path="/*" component={Welcome} />}
|
|
|
|
{/* @endif */}
|
|
|
|
<Redirect
|
|
|
|
from={`/$/${PAGES.DEPRECATED__CHANNELS_FOLLOWING_MANAGE}`}
|
|
|
|
to={`/$/${PAGES.CHANNELS_FOLLOWING_DISCOVER}`}
|
2020-10-05 20:24:57 +02:00
|
|
|
/>
|
2021-06-11 08:06:29 +02:00
|
|
|
<Redirect from={`/$/${PAGES.DEPRECATED__CHANNELS_FOLLOWING}`} to={`/$/${PAGES.CHANNELS_FOLLOWING}`} />
|
|
|
|
<Redirect from={`/$/${PAGES.DEPRECATED__TAGS_FOLLOWING}`} to={`/$/${PAGES.TAGS_FOLLOWING}`} />
|
|
|
|
<Redirect from={`/$/${PAGES.DEPRECATED__TAGS_FOLLOWING_MANAGE}`} to={`/$/${PAGES.TAGS_FOLLOWING_MANAGE}`} />
|
|
|
|
<Redirect from={`/$/${PAGES.DEPRECATED__PUBLISH}`} to={`/$/${PAGES.UPLOAD}`} />
|
|
|
|
<Redirect from={`/$/${PAGES.DEPRECATED__PUBLISHED}`} to={`/$/${PAGES.UPLOADS}`} />
|
|
|
|
|
|
|
|
<Route path={`/`} exact component={HomePage} />
|
|
|
|
<Route path={`/$/${PAGES.DISCOVER}`} exact component={DiscoverPage} />
|
|
|
|
{SIMPLE_SITE && <Route path={`/$/${PAGES.WILD_WEST}`} exact component={DiscoverPage} />}
|
|
|
|
{/* $FlowFixMe */}
|
|
|
|
{dynamicRoutes.map((dynamicRouteProps: RowDataItem) => (
|
|
|
|
<Route
|
|
|
|
key={dynamicRouteProps.route}
|
|
|
|
path={dynamicRouteProps.route}
|
|
|
|
component={(routerProps) => <DiscoverPage {...routerProps} dynamicRouteProps={dynamicRouteProps} />}
|
|
|
|
/>
|
|
|
|
))}
|
2020-10-05 20:24:57 +02:00
|
|
|
|
2021-06-11 08:06:29 +02:00
|
|
|
<Route path={`/$/${PAGES.AUTH_SIGNIN}`} exact component={SignInPage} />
|
|
|
|
<Route path={`/$/${PAGES.AUTH_PASSWORD_RESET}`} exact component={PasswordResetPage} />
|
|
|
|
<Route path={`/$/${PAGES.AUTH_PASSWORD_SET}`} exact component={PasswordSetPage} />
|
|
|
|
<Route path={`/$/${PAGES.AUTH}`} exact component={SignUpPage} />
|
|
|
|
<Route path={`/$/${PAGES.AUTH}/*`} exact component={SignUpPage} />
|
|
|
|
<Route path={`/$/${PAGES.WELCOME}`} exact component={Welcome} />
|
2020-08-10 22:47:39 +02:00
|
|
|
|
2021-06-11 08:06:29 +02:00
|
|
|
<Route path={`/$/${PAGES.HELP}`} exact component={HelpPage} />
|
|
|
|
{/* @if TARGET='app' */}
|
|
|
|
<Route path={`/$/${PAGES.BACKUP}`} exact component={BackupPage} />
|
|
|
|
{/* @endif */}
|
|
|
|
{/* @if TARGET='web' */}
|
|
|
|
<Route path={`/$/${PAGES.CODE_2257}`} exact component={Code2257Page} />
|
|
|
|
{/* @endif */}
|
|
|
|
<Route path={`/$/${PAGES.AUTH_VERIFY}`} exact component={SignInVerifyPage} />
|
|
|
|
<Route path={`/$/${PAGES.SEARCH}`} exact component={SearchPage} />
|
|
|
|
<Route path={`/$/${PAGES.TOP}`} exact component={TopPage} />
|
|
|
|
<Route path={`/$/${PAGES.SETTINGS}`} exact component={SettingsPage} />
|
|
|
|
<Route path={`/$/${PAGES.SETTINGS_ADVANCED}`} exact component={SettingsAdvancedPage} />
|
|
|
|
<Route path={`/$/${PAGES.INVITE}/:referrer`} exact component={InvitedPage} />
|
|
|
|
<Route path={`/$/${PAGES.CHECKOUT}`} exact component={CheckoutPage} />
|
|
|
|
<Route path={`/$/${PAGES.REPORT_CONTENT}`} exact component={ReportContentPage} />
|
|
|
|
<Route {...props} path={`/$/${PAGES.LIST}/:collectionId`} component={CollectionPage} />
|
2019-11-07 20:39:22 +01:00
|
|
|
|
2021-06-11 08:06:29 +02:00
|
|
|
<PrivateRoute {...props} exact path={`/$/${PAGES.YOUTUBE_SYNC}`} component={YoutubeSyncPage} />
|
|
|
|
<PrivateRoute {...props} exact path={`/$/${PAGES.TAGS_FOLLOWING}`} component={TagsFollowingPage} />
|
|
|
|
<PrivateRoute
|
|
|
|
{...props}
|
|
|
|
exact
|
|
|
|
path={`/$/${PAGES.CHANNELS_FOLLOWING}`}
|
|
|
|
component={isAuthenticated || !IS_WEB ? ChannelsFollowingPage : DiscoverPage}
|
|
|
|
/>
|
|
|
|
<PrivateRoute {...props} path={`/$/${PAGES.SETTINGS_NOTIFICATIONS}`} component={SettingsNotificationsPage} />
|
|
|
|
<PrivateRoute
|
|
|
|
{...props}
|
|
|
|
exact
|
|
|
|
path={`/$/${PAGES.CHANNELS_FOLLOWING_DISCOVER}`}
|
|
|
|
component={ChannelsFollowingDiscoverPage}
|
|
|
|
/>
|
|
|
|
<PrivateRoute {...props} path={`/$/${PAGES.INVITE}`} component={InvitePage} />
|
|
|
|
<PrivateRoute {...props} path={`/$/${PAGES.CHANNEL_NEW}`} component={ChannelNew} />
|
|
|
|
<PrivateRoute {...props} path={`/$/${PAGES.REPOST_NEW}`} component={RepostNew} />
|
|
|
|
<PrivateRoute {...props} path={`/$/${PAGES.UPLOADS}`} component={FileListPublished} />
|
|
|
|
<PrivateRoute {...props} path={`/$/${PAGES.CREATOR_DASHBOARD}`} component={CreatorDashboard} />
|
|
|
|
<PrivateRoute {...props} path={`/$/${PAGES.UPLOAD}`} component={PublishPage} />
|
|
|
|
<PrivateRoute {...props} path={`/$/${PAGES.REPORT}`} component={ReportPage} />
|
|
|
|
<PrivateRoute {...props} path={`/$/${PAGES.REWARDS}`} exact component={RewardsPage} />
|
|
|
|
<PrivateRoute {...props} path={`/$/${PAGES.REWARDS_VERIFY}`} component={RewardsVerifyPage} />
|
|
|
|
<PrivateRoute {...props} path={`/$/${PAGES.LIBRARY}`} component={LibraryPage} />
|
|
|
|
<PrivateRoute {...props} path={`/$/${PAGES.LISTS}`} component={ListsPage} />
|
|
|
|
<PrivateRoute {...props} path={`/$/${PAGES.TAGS_FOLLOWING_MANAGE}`} component={TagsFollowingManagePage} />
|
|
|
|
<PrivateRoute {...props} path={`/$/${PAGES.SETTINGS_BLOCKED_MUTED}`} component={ListBlockedPage} />
|
|
|
|
<PrivateRoute {...props} path={`/$/${PAGES.SETTINGS_CREATOR}`} component={SettingsCreatorPage} />
|
|
|
|
<PrivateRoute {...props} path={`/$/${PAGES.WALLET}`} exact component={WalletPage} />
|
|
|
|
<PrivateRoute {...props} path={`/$/${PAGES.CHANNELS}`} component={ChannelsPage} />
|
|
|
|
<PrivateRoute {...props} path={`/$/${PAGES.LIVESTREAM}`} component={LiveStreamSetupPage} />
|
|
|
|
<PrivateRoute {...props} path={`/$/${PAGES.LIVESTREAM_CURRENT}`} component={LivestreamCurrentPage} />
|
|
|
|
<PrivateRoute {...props} path={`/$/${PAGES.BUY}`} component={BuyPage} />
|
|
|
|
<PrivateRoute {...props} path={`/$/${PAGES.RECEIVE}`} component={ReceivePage} />
|
|
|
|
<PrivateRoute {...props} path={`/$/${PAGES.SEND}`} component={SendPage} />
|
|
|
|
<PrivateRoute {...props} path={`/$/${PAGES.SWAP}`} component={SwapPage} />
|
|
|
|
<PrivateRoute {...props} path={`/$/${PAGES.NOTIFICATIONS}`} component={NotificationsPage} />
|
|
|
|
<PrivateRoute {...props} path={`/$/${PAGES.AUTH_WALLET_PASSWORD}`} component={SignInWalletPasswordPage} />
|
2019-11-07 20:39:22 +01:00
|
|
|
|
2021-06-11 08:06:29 +02:00
|
|
|
<Route path={`/$/${PAGES.EMBED}/:claimName`} exact component={EmbedWrapperPage} />
|
|
|
|
<Route path={`/$/${PAGES.EMBED}/:claimName/:claimId`} exact component={EmbedWrapperPage} />
|
2021-04-28 03:16:28 +02:00
|
|
|
|
2021-06-11 08:06:29 +02:00
|
|
|
{/* Below need to go at the end to make sure we don't match any of our pages first */}
|
|
|
|
<Route path="/:claimName" exact component={ShowPage} />
|
|
|
|
<Route path="/:claimName/:streamName" exact component={ShowPage} />
|
|
|
|
<Route path="/*" component={FourOhFourPage} />
|
|
|
|
</Switch>
|
|
|
|
</React.Suspense>
|
2019-11-07 20:39:22 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-02-05 15:49:03 +01:00
|
|
|
export default withRouter(AppRouter);
|