2018-03-26 23:32:43 +02:00
|
|
|
// @flow
|
2019-06-11 20:10:58 +02:00
|
|
|
import React, { useEffect, useRef } from 'react';
|
2019-07-22 04:28:49 +02:00
|
|
|
import analytics from 'analytics';
|
2019-08-13 07:35:13 +02:00
|
|
|
import { Lbry, buildURI } from 'lbry-redux';
|
2017-12-21 22:08:54 +01:00
|
|
|
import Router from 'component/router/index';
|
|
|
|
import ModalRouter from 'modal/modalRouter';
|
|
|
|
import ReactModal from 'react-modal';
|
2018-03-26 23:32:43 +02:00
|
|
|
import SideBar from 'component/sideBar';
|
|
|
|
import Header from 'component/header';
|
2019-01-23 16:38:40 +01:00
|
|
|
import { openContextMenu } from 'util/context-menu';
|
2019-06-11 20:10:58 +02:00
|
|
|
import useKonamiListener from 'util/enhanced-layout';
|
2019-03-05 05:46:57 +01:00
|
|
|
import Yrbl from 'component/yrbl';
|
2019-08-13 07:35:13 +02:00
|
|
|
import FileViewer from 'component/fileViewer';
|
|
|
|
import { withRouter } from 'react-router';
|
2019-08-14 18:28:13 +02:00
|
|
|
import usePrevious from 'util/use-previous';
|
2018-03-26 23:32:43 +02:00
|
|
|
|
2019-06-27 08:18:45 +02:00
|
|
|
export const MAIN_WRAPPER_CLASS = 'main-wrapper';
|
|
|
|
|
2018-03-26 23:32:43 +02:00
|
|
|
type Props = {
|
|
|
|
alertError: (string | {}) => void,
|
|
|
|
pageTitle: ?string,
|
2019-06-07 23:10:47 +02:00
|
|
|
language: string,
|
2018-10-19 17:27:14 +02:00
|
|
|
theme: string,
|
2019-08-06 18:00:31 +02:00
|
|
|
accessToken: ?string,
|
2019-08-14 18:28:13 +02:00
|
|
|
user: ?{ id: string, has_verified_email: boolean, is_reward_approved: boolean },
|
2019-08-13 07:35:13 +02:00
|
|
|
location: { pathname: string },
|
2019-06-11 20:10:58 +02:00
|
|
|
fetchRewards: () => void,
|
|
|
|
fetchRewardedContent: () => void,
|
2019-06-27 08:18:45 +02:00
|
|
|
fetchTransactions: () => void,
|
2019-08-06 18:53:59 +02:00
|
|
|
fetchAccessToken: () => void,
|
2018-03-26 23:32:43 +02:00
|
|
|
};
|
2017-04-07 07:15:22 +02:00
|
|
|
|
2019-06-11 20:10:58 +02:00
|
|
|
function App(props: Props) {
|
2019-08-06 18:53:59 +02:00
|
|
|
const { theme, fetchRewards, fetchRewardedContent, fetchTransactions, user, fetchAccessToken, accessToken } = props;
|
2019-06-11 20:10:58 +02:00
|
|
|
const appRef = useRef();
|
|
|
|
const isEnhancedLayout = useKonamiListener();
|
2019-07-22 04:28:49 +02:00
|
|
|
const userId = user && user.id;
|
2019-08-06 18:00:31 +02:00
|
|
|
const hasVerifiedEmail = user && user.has_verified_email;
|
2019-08-14 18:28:13 +02:00
|
|
|
const isRewardApproved = user && user.is_reward_approved;
|
|
|
|
const previousUserId = usePrevious(userId);
|
|
|
|
const previousHasVerifiedEmail = usePrevious(hasVerifiedEmail);
|
|
|
|
const previousRewardApproved = usePrevious(isRewardApproved);
|
2019-08-13 07:35:13 +02:00
|
|
|
const { pathname } = props.location;
|
|
|
|
const urlParts = pathname.split('/');
|
|
|
|
const claimName = urlParts[1];
|
|
|
|
const claimId = urlParts[2];
|
|
|
|
|
|
|
|
// @routingfixme
|
|
|
|
// claimName and claimId come from the url `{domain}/{claimName}/{claimId}"
|
|
|
|
let uri;
|
|
|
|
try {
|
|
|
|
uri = buildURI({ contentName: claimName, claimId: claimId });
|
|
|
|
} catch (e) {}
|
|
|
|
|
2019-06-11 20:10:58 +02:00
|
|
|
useEffect(() => {
|
|
|
|
ReactModal.setAppElement(appRef.current);
|
2019-08-06 18:53:59 +02:00
|
|
|
fetchAccessToken();
|
2019-06-11 20:10:58 +02:00
|
|
|
fetchRewardedContent();
|
2019-06-27 08:18:45 +02:00
|
|
|
|
|
|
|
// @if TARGET='app'
|
|
|
|
fetchRewards();
|
|
|
|
fetchTransactions();
|
|
|
|
// @endif
|
2019-08-13 07:35:13 +02:00
|
|
|
}, [fetchRewards, fetchRewardedContent, fetchTransactions, fetchAccessToken]);
|
2018-10-18 18:45:24 +02:00
|
|
|
|
2019-06-11 20:10:58 +02:00
|
|
|
useEffect(() => {
|
2018-10-18 18:45:24 +02:00
|
|
|
// $FlowFixMe
|
2019-02-13 17:27:20 +01:00
|
|
|
document.documentElement.setAttribute('data-mode', theme);
|
2019-06-11 20:10:58 +02:00
|
|
|
}, [theme]);
|
2018-11-07 17:03:42 +01:00
|
|
|
|
2019-07-22 04:28:49 +02:00
|
|
|
useEffect(() => {
|
2019-08-14 18:28:13 +02:00
|
|
|
if (previousUserId === undefined && userId) {
|
2019-07-22 04:28:49 +02:00
|
|
|
analytics.setUser(userId);
|
|
|
|
}
|
2019-08-14 18:28:13 +02:00
|
|
|
}, [previousUserId, userId]);
|
|
|
|
|
|
|
|
useEffect(() => {
|
2019-08-15 05:09:34 +02: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-08-14 18:28:13 +02:00
|
|
|
if (previousHasVerifiedEmail !== undefined && hasVerifiedEmail) {
|
|
|
|
analytics.emailVerifiedEvent();
|
|
|
|
}
|
|
|
|
}, [previousHasVerifiedEmail, hasVerifiedEmail]);
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
if (previousRewardApproved !== undefined && isRewardApproved) {
|
|
|
|
analytics.rewardEligibleEvent();
|
|
|
|
}
|
|
|
|
}, [previousRewardApproved, isRewardApproved]);
|
2019-07-22 04:28:49 +02:00
|
|
|
|
2019-08-06 18:00:31 +02:00
|
|
|
// @if TARGET='web'
|
|
|
|
useEffect(() => {
|
|
|
|
if (hasVerifiedEmail && accessToken) {
|
|
|
|
Lbry.setApiHeader('X-Lbry-Auth-Token', accessToken);
|
|
|
|
}
|
|
|
|
}, [hasVerifiedEmail, accessToken]);
|
|
|
|
// @endif
|
|
|
|
|
2019-06-11 20:10:58 +02:00
|
|
|
return (
|
2019-07-19 16:52:42 +02:00
|
|
|
<div className={MAIN_WRAPPER_CLASS} ref={appRef} onContextMenu={e => openContextMenu(e)}>
|
2019-06-11 20:10:58 +02:00
|
|
|
<Header />
|
2018-03-26 23:32:43 +02:00
|
|
|
|
2019-07-17 22:49:06 +02:00
|
|
|
<div className="main-wrapper__inner">
|
|
|
|
<Router />
|
|
|
|
<SideBar />
|
2017-04-21 04:31:50 +02:00
|
|
|
</div>
|
2019-06-11 20:10:58 +02:00
|
|
|
|
|
|
|
<ModalRouter />
|
2019-08-13 07:35:13 +02:00
|
|
|
<FileViewer pageUri={uri} />
|
|
|
|
|
2019-06-11 20:10:58 +02:00
|
|
|
{isEnhancedLayout && <Yrbl className="yrbl--enhanced" />}
|
|
|
|
</div>
|
|
|
|
);
|
2017-05-04 05:44:08 +02:00
|
|
|
}
|
2017-04-07 07:15:22 +02:00
|
|
|
|
2019-08-13 07:35:13 +02:00
|
|
|
export default withRouter(App);
|