2018-03-26 14:32:43 -07:00
|
|
|
// @flow
|
2019-10-22 13:57:32 -04:00
|
|
|
import * as PAGES from 'constants/pages';
|
2019-10-15 00:20:12 -04:00
|
|
|
import React, { useEffect, useRef, useState } from 'react';
|
2019-10-09 12:34:18 -04:00
|
|
|
import classnames from 'classnames';
|
2019-07-21 22:28:49 -04:00
|
|
|
import analytics from 'analytics';
|
2019-11-01 15:17:06 -04:00
|
|
|
import { buildURI, parseURI, TX_LIST } from 'lbry-redux';
|
2017-12-21 18:08:54 -03:00
|
|
|
import Router from 'component/router/index';
|
|
|
|
import ModalRouter from 'modal/modalRouter';
|
|
|
|
import ReactModal from 'react-modal';
|
2019-01-23 10:38:40 -05:00
|
|
|
import { openContextMenu } from 'util/context-menu';
|
2019-06-11 14:10:58 -04:00
|
|
|
import useKonamiListener from 'util/enhanced-layout';
|
2019-03-04 23:46:57 -05:00
|
|
|
import Yrbl from 'component/yrbl';
|
2019-08-13 01:35:13 -04:00
|
|
|
import FileViewer from 'component/fileViewer';
|
|
|
|
import { withRouter } from 'react-router';
|
2019-09-27 14:56:15 -04:00
|
|
|
import usePrevious from 'effects/use-previous';
|
2019-12-06 16:12:48 -05:00
|
|
|
import Nag from 'component/common/nag';
|
2019-12-05 00:24:54 -05:00
|
|
|
// @if TARGET='web'
|
2019-12-06 16:12:48 -05:00
|
|
|
import OpenInAppLink from 'component/openInAppLink';
|
2019-12-05 00:24:54 -05:00
|
|
|
import YoutubeWelcome from 'component/youtubeWelcome';
|
|
|
|
// @endif
|
2018-03-26 14:32:43 -07:00
|
|
|
|
2019-06-27 02:18:45 -04:00
|
|
|
export const MAIN_WRAPPER_CLASS = 'main-wrapper';
|
2019-10-15 12:21:49 -04:00
|
|
|
// @if TARGET='app'
|
|
|
|
export const IS_MAC = process.platform === 'darwin';
|
|
|
|
// @endif
|
2019-10-15 17:23:51 -04:00
|
|
|
const SYNC_INTERVAL = 1000 * 60 * 5; // 5 minutes
|
2019-06-27 02:18:45 -04:00
|
|
|
|
2018-03-26 14:32:43 -07:00
|
|
|
type Props = {
|
|
|
|
alertError: (string | {}) => void,
|
|
|
|
pageTitle: ?string,
|
2019-06-07 17:10:47 -04:00
|
|
|
language: string,
|
2019-11-08 15:51:42 -05:00
|
|
|
languages: Array<string>,
|
2018-10-19 11:27:14 -04:00
|
|
|
theme: string,
|
2019-08-14 12:28:13 -04:00
|
|
|
user: ?{ id: string, has_verified_email: boolean, is_reward_approved: boolean },
|
2019-08-30 14:12:52 -04:00
|
|
|
location: { pathname: string, hash: string },
|
2019-10-22 13:57:32 -04:00
|
|
|
history: { push: string => void },
|
2019-06-11 14:10:58 -04:00
|
|
|
fetchRewards: () => void,
|
2019-11-01 15:17:06 -04:00
|
|
|
fetchTransactions: (number, number) => void,
|
2019-08-06 12:53:59 -04:00
|
|
|
fetchAccessToken: () => void,
|
2019-09-26 12:28:08 -04:00
|
|
|
fetchChannelListMine: () => void,
|
2019-10-01 00:53:33 -04:00
|
|
|
signIn: () => void,
|
2019-09-22 21:56:43 -04:00
|
|
|
requestDownloadUpgrade: () => void,
|
2019-09-26 12:07:11 -04:00
|
|
|
fetchChannelListMine: () => void,
|
|
|
|
onSignedIn: () => void,
|
2019-11-08 15:51:42 -05:00
|
|
|
setLanguage: string => void,
|
2019-09-26 12:28:08 -04:00
|
|
|
isUpgradeAvailable: boolean,
|
|
|
|
autoUpdateDownloaded: boolean,
|
2019-10-15 17:23:51 -04:00
|
|
|
checkSync: () => void,
|
2019-12-11 15:09:27 -05:00
|
|
|
updatePreferences: () => void,
|
2019-10-15 17:23:51 -04:00
|
|
|
syncEnabled: boolean,
|
2019-10-10 20:37:18 -04:00
|
|
|
uploadCount: number,
|
2019-10-17 11:27:41 -04:00
|
|
|
balance: ?number,
|
|
|
|
accessToken: ?string,
|
2019-10-22 13:57:32 -04:00
|
|
|
syncError: ?string,
|
2018-03-26 14:32:43 -07:00
|
|
|
};
|
2017-04-07 12:15:22 +07:00
|
|
|
|
2019-06-11 14:10:58 -04:00
|
|
|
function App(props: Props) {
|
2019-09-22 21:56:43 -04:00
|
|
|
const {
|
|
|
|
theme,
|
|
|
|
fetchRewards,
|
|
|
|
fetchTransactions,
|
|
|
|
user,
|
|
|
|
fetchAccessToken,
|
2019-09-26 12:07:11 -04:00
|
|
|
fetchChannelListMine,
|
2019-10-01 00:53:33 -04:00
|
|
|
signIn,
|
2019-09-26 12:28:08 -04:00
|
|
|
autoUpdateDownloaded,
|
|
|
|
isUpgradeAvailable,
|
|
|
|
requestDownloadUpgrade,
|
2019-10-15 17:23:51 -04:00
|
|
|
syncEnabled,
|
|
|
|
checkSync,
|
2019-10-10 20:37:18 -04:00
|
|
|
uploadCount,
|
2019-10-22 13:57:32 -04:00
|
|
|
history,
|
|
|
|
syncError,
|
2019-11-08 15:51:42 -05:00
|
|
|
language,
|
|
|
|
languages,
|
|
|
|
setLanguage,
|
2019-12-11 15:09:27 -05:00
|
|
|
updatePreferences,
|
2019-09-22 21:56:43 -04:00
|
|
|
} = props;
|
2019-10-16 13:18:12 -04:00
|
|
|
|
2019-06-11 14:10:58 -04:00
|
|
|
const appRef = useRef();
|
|
|
|
const isEnhancedLayout = useKonamiListener();
|
2019-10-15 00:20:12 -04:00
|
|
|
const [hasSignedIn, setHasSignedIn] = useState(false);
|
2019-07-21 22:28:49 -04:00
|
|
|
const userId = user && user.id;
|
2019-08-06 12:00:31 -04:00
|
|
|
const hasVerifiedEmail = user && user.has_verified_email;
|
2019-08-14 12:28:13 -04:00
|
|
|
const isRewardApproved = user && user.is_reward_approved;
|
|
|
|
const previousUserId = usePrevious(userId);
|
|
|
|
const previousHasVerifiedEmail = usePrevious(hasVerifiedEmail);
|
|
|
|
const previousRewardApproved = usePrevious(isRewardApproved);
|
2019-08-30 14:12:52 -04:00
|
|
|
const { pathname, hash } = props.location;
|
2019-09-22 21:56:43 -04:00
|
|
|
const showUpgradeButton = autoUpdateDownloaded || (process.platform === 'linux' && isUpgradeAvailable);
|
2019-08-13 01:35:13 -04:00
|
|
|
|
|
|
|
let uri;
|
|
|
|
try {
|
2019-08-30 14:12:52 -04:00
|
|
|
const newpath = buildURI(parseURI(pathname.slice(1).replace(/:/g, '#')));
|
|
|
|
uri = newpath + hash;
|
2019-08-13 01:35:13 -04:00
|
|
|
} catch (e) {}
|
|
|
|
|
2019-10-10 20:37:18 -04:00
|
|
|
useEffect(() => {
|
|
|
|
if (!uploadCount) return;
|
|
|
|
const handleBeforeUnload = event => {
|
|
|
|
event.preventDefault();
|
2019-12-03 13:47:03 -05:00
|
|
|
event.returnValue = 'magic'; // without setting this to something it doesn't work
|
2019-10-10 20:37:18 -04:00
|
|
|
};
|
|
|
|
window.addEventListener('beforeunload', handleBeforeUnload);
|
|
|
|
return () => window.removeEventListener('beforeunload', handleBeforeUnload);
|
|
|
|
}, [uploadCount]);
|
|
|
|
|
2019-06-11 14:10:58 -04:00
|
|
|
useEffect(() => {
|
|
|
|
ReactModal.setAppElement(appRef.current);
|
2019-08-06 12:53:59 -04:00
|
|
|
fetchAccessToken();
|
2019-06-27 02:18:45 -04:00
|
|
|
|
|
|
|
// @if TARGET='app'
|
|
|
|
fetchRewards();
|
2019-11-01 15:17:06 -04:00
|
|
|
fetchTransactions(1, TX_LIST.LATEST_PAGE_SIZE);
|
2019-09-26 12:07:11 -04:00
|
|
|
fetchChannelListMine(); // This needs to be done for web too...
|
2019-06-27 02:18:45 -04:00
|
|
|
// @endif
|
2019-11-01 13:27:01 -04:00
|
|
|
}, [fetchRewards, fetchTransactions, fetchAccessToken, fetchChannelListMine]);
|
2018-10-18 11:45:24 -05:00
|
|
|
|
2019-06-11 14:10:58 -04:00
|
|
|
useEffect(() => {
|
2018-10-18 11:45:24 -05:00
|
|
|
// $FlowFixMe
|
2019-11-22 16:13:00 -05:00
|
|
|
document.documentElement.setAttribute('theme', theme);
|
2019-06-11 14:10:58 -04:00
|
|
|
}, [theme]);
|
2018-11-07 11:03:42 -05:00
|
|
|
|
2019-11-08 15:51:42 -05:00
|
|
|
useEffect(() => {
|
|
|
|
if (!languages.includes(language)) {
|
|
|
|
setLanguage(language);
|
|
|
|
}
|
|
|
|
}, [language, languages]);
|
|
|
|
|
2019-07-21 22:28:49 -04:00
|
|
|
useEffect(() => {
|
2019-08-14 12:28:13 -04:00
|
|
|
if (previousUserId === undefined && userId) {
|
2019-07-21 22:28:49 -04:00
|
|
|
analytics.setUser(userId);
|
|
|
|
}
|
2019-08-14 12:28:13 -04:00
|
|
|
}, [previousUserId, userId]);
|
|
|
|
|
|
|
|
useEffect(() => {
|
2019-08-14 23:09:34 -04:00
|
|
|
// Check that previousHasVerifiedEmail was not undefined instead of just not truthy
|
|
|
|
// This ensures we don't fire the emailVerified event on the initial user fetch
|
2019-09-26 12:07:11 -04:00
|
|
|
if (previousHasVerifiedEmail === false && hasVerifiedEmail) {
|
2019-08-14 12:28:13 -04:00
|
|
|
analytics.emailVerifiedEvent();
|
|
|
|
}
|
2019-10-01 00:53:33 -04:00
|
|
|
}, [previousHasVerifiedEmail, hasVerifiedEmail, signIn]);
|
2019-08-14 12:28:13 -04:00
|
|
|
|
|
|
|
useEffect(() => {
|
2019-09-26 12:07:11 -04:00
|
|
|
if (previousRewardApproved === false && isRewardApproved) {
|
2019-08-14 12:28:13 -04:00
|
|
|
analytics.rewardEligibleEvent();
|
|
|
|
}
|
|
|
|
}, [previousRewardApproved, isRewardApproved]);
|
2019-07-21 22:28:49 -04:00
|
|
|
|
2019-09-26 12:07:11 -04:00
|
|
|
// Keep this at the end to ensure initial setup effects are run first
|
2019-08-06 12:00:31 -04:00
|
|
|
useEffect(() => {
|
2019-10-08 14:11:52 -04:00
|
|
|
// Wait for balance to be populated on desktop so we know when we can begin syncing
|
2019-10-15 17:23:51 -04:00
|
|
|
if (!hasSignedIn && hasVerifiedEmail) {
|
2019-10-01 00:53:33 -04:00
|
|
|
signIn();
|
2019-10-15 00:20:12 -04:00
|
|
|
setHasSignedIn(true);
|
2019-08-06 12:00:31 -04:00
|
|
|
}
|
2019-10-15 17:23:51 -04:00
|
|
|
}, [hasVerifiedEmail, signIn, hasSignedIn]);
|
|
|
|
|
|
|
|
useEffect(() => {
|
2019-10-24 11:48:58 -04:00
|
|
|
if (hasVerifiedEmail && syncEnabled) {
|
2019-10-15 17:23:51 -04:00
|
|
|
checkSync();
|
|
|
|
|
|
|
|
let syncInterval = setInterval(() => {
|
|
|
|
checkSync();
|
|
|
|
}, SYNC_INTERVAL);
|
|
|
|
|
|
|
|
return () => {
|
|
|
|
clearInterval(syncInterval);
|
|
|
|
};
|
|
|
|
}
|
2019-10-24 11:48:58 -04:00
|
|
|
}, [hasVerifiedEmail, syncEnabled, checkSync]);
|
2019-12-14 11:12:33 -05:00
|
|
|
// @if TARGET='app'
|
2019-12-11 15:09:27 -05:00
|
|
|
useEffect(() => {
|
|
|
|
if (hasVerifiedEmail === false) {
|
|
|
|
updatePreferences();
|
|
|
|
}
|
|
|
|
}, [hasVerifiedEmail]);
|
2019-12-14 11:12:33 -05:00
|
|
|
// @endif
|
2019-12-11 15:09:27 -05:00
|
|
|
|
2019-10-22 13:57:32 -04:00
|
|
|
useEffect(() => {
|
2019-10-22 16:43:51 -04:00
|
|
|
if (syncError) {
|
|
|
|
history.push(`/$/${PAGES.AUTH}?redirect=${pathname}`);
|
|
|
|
}
|
2019-10-22 13:57:32 -04:00
|
|
|
}, [syncError, pathname]);
|
|
|
|
|
2019-11-14 10:25:01 -05:00
|
|
|
// @if TARGET='web'
|
|
|
|
// Require an internal-api user on lbry.tv
|
|
|
|
// This also prevents the site from loading in the un-authed state while we wait for internal-apis to return for the first time
|
|
|
|
// It's not needed on desktop since there is no un-authed state
|
2019-12-05 11:30:48 -05:00
|
|
|
if (!user) {
|
|
|
|
return null;
|
|
|
|
}
|
2019-11-14 10:25:01 -05:00
|
|
|
// @endif
|
2019-08-06 12:00:31 -04:00
|
|
|
|
2019-06-11 14:10:58 -04:00
|
|
|
return (
|
2019-10-09 12:34:18 -04:00
|
|
|
<div
|
2019-10-15 12:21:49 -04:00
|
|
|
className={classnames(MAIN_WRAPPER_CLASS, {
|
|
|
|
// @if TARGET='app'
|
|
|
|
[`${MAIN_WRAPPER_CLASS}--mac`]: IS_MAC,
|
|
|
|
// @endif
|
|
|
|
})}
|
2019-10-09 12:34:18 -04:00
|
|
|
ref={appRef}
|
2019-11-01 16:44:26 -04:00
|
|
|
onContextMenu={IS_WEB ? undefined : e => openContextMenu(e)}
|
2019-10-09 12:34:18 -04:00
|
|
|
>
|
2019-08-27 10:43:42 -04:00
|
|
|
<Router />
|
2019-06-11 14:10:58 -04:00
|
|
|
<ModalRouter />
|
2019-08-13 01:35:13 -04:00
|
|
|
<FileViewer pageUri={uri} />
|
|
|
|
|
2019-12-05 00:24:54 -05:00
|
|
|
{/* @if TARGET='web' */}
|
|
|
|
<YoutubeWelcome />
|
2019-12-06 16:12:48 -05:00
|
|
|
<OpenInAppLink uri={uri} />
|
2019-12-05 00:24:54 -05:00
|
|
|
{/* @endif */}
|
|
|
|
|
2019-09-22 21:56:43 -04:00
|
|
|
{/* @if TARGET='app' */}
|
|
|
|
{showUpgradeButton && (
|
2019-12-06 16:12:48 -05:00
|
|
|
<Nag message={__('An upgrade is available.')} actionText={__('Install Now')} onClick={requestDownloadUpgrade} />
|
2019-09-22 21:56:43 -04:00
|
|
|
)}
|
|
|
|
{/* @endif */}
|
2019-06-11 14:10:58 -04:00
|
|
|
{isEnhancedLayout && <Yrbl className="yrbl--enhanced" />}
|
|
|
|
</div>
|
|
|
|
);
|
2017-05-03 23:44:08 -04:00
|
|
|
}
|
2017-04-07 12:15:22 +07:00
|
|
|
|
2019-08-13 01:35:13 -04:00
|
|
|
export default withRouter(App);
|