lbry-desktop/ui/component/page/view.jsx

160 lines
4.7 KiB
React
Raw Normal View History

2018-03-26 23:32:43 +02:00
// @flow
import { lazyImport } from 'util/lazyImport';
import { MAIN_CLASS } from 'constants/classnames';
import { parseURI } from 'util/lbryURI';
2020-08-10 22:47:39 +02:00
import { useHistory } from 'react-router';
import { useIsMobile, useIsMediumScreen } from 'effects/use-screensize';
import classnames from 'classnames';
import Header from 'component/header';
import React from 'react';
import Wallpaper from 'component/wallpaper';
import SettingsSideNavigation from 'component/settingsSideNavigation';
import SideNavigation from 'component/sideNavigation';
import type { Node } from 'react';
import usePersistedState from 'effects/use-persisted-state';
2018-03-26 23:32:43 +02:00
const Footer = lazyImport(() => import('web/component/footer' /* webpackChunkName: "footer" */));
2021-06-11 08:06:29 +02:00
2018-03-26 23:32:43 +02:00
type Props = {
2019-10-28 15:04:37 +01:00
authPage: boolean,
backout: {
backLabel?: string,
backNavDefault?: string,
title: string,
simpleTitle: string, // Just use the same value as `title` if `title` is already short (~< 10 chars), unless you have a better idea for title overlfow on mobile
},
chatDisabled: boolean,
children: Node | Array<Node>,
className: ?string,
filePage: boolean,
fullWidthPage: boolean,
isMarkdown?: boolean,
livestream?: boolean,
noFooter: boolean,
noHeader: boolean,
noSideNavigation: boolean,
rightSide?: Node,
settingsPage?: boolean,
videoTheaterMode: boolean,
isPopoutWindow?: boolean,
2018-03-26 23:32:43 +02:00
};
2019-06-17 22:32:38 +02:00
function Page(props: Props) {
2020-06-29 21:54:07 +02:00
const {
authPage = false,
backout,
chatDisabled,
2020-06-29 21:54:07 +02:00
children,
className,
2020-08-10 22:47:39 +02:00
filePage = false,
2020-08-21 17:49:13 +02:00
fullWidthPage = false,
2021-03-12 17:18:09 +01:00
isMarkdown = false,
livestream,
noFooter = false,
noHeader = false,
noSideNavigation = false,
2021-04-23 21:59:48 +02:00
rightSide,
settingsPage,
videoTheaterMode,
isPopoutWindow,
2020-06-29 21:54:07 +02:00
} = props;
2021-01-08 16:21:27 +01:00
2020-08-10 22:47:39 +02:00
const {
location: { pathname },
} = useHistory();
2020-08-10 22:47:39 +02:00
const isMediumScreen = useIsMediumScreen();
const isMobile = useIsMobile();
const [sidebarOpen, setSidebarOpen] = usePersistedState('sidebar', false);
2020-08-21 17:49:13 +02:00
const url = pathname.slice(1).replace(/:/g, '#');
2020-08-10 22:47:39 +02:00
let isOnFilePage = false;
try {
const url = pathname.slice(1).replace(/:/g, '#');
const { isChannel } = parseURI(url);
if (!isChannel) isOnFilePage = true;
2020-08-10 22:47:39 +02:00
} catch (e) {}
const isAbsoluteSideNavHidden = (isOnFilePage || isMobile) && !sidebarOpen;
React.useEffect(() => {
if (isOnFilePage || isMediumScreen) setSidebarOpen(false);
2020-12-17 19:43:47 +01:00
// TODO: make sure setState callback for usePersistedState uses useCallback to it doesn't cause effect to re-run
2022-01-14 22:07:44 +01:00
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [isOnFilePage, isMediumScreen]);
2019-06-17 22:32:38 +02:00
2019-08-27 16:43:42 +02:00
return (
<>
<Wallpaper uri={url} />
2020-08-10 22:47:39 +02:00
{!noHeader && (
<Header
authHeader={authPage}
backout={backout}
sidebarOpen={sidebarOpen}
isAbsoluteSideNavHidden={isAbsoluteSideNavHidden}
setSidebarOpen={setSidebarOpen}
/>
)}
2021-01-08 16:21:27 +01:00
<div
className={classnames('main-wrapper__inner', {
'main-wrapper__inner--filepage': isOnFilePage,
2022-03-15 17:18:08 +01:00
'main-wrapper__inner--theater-mode': isOnFilePage && videoTheaterMode && !isMobile,
'main-wrapper__inner--auth': authPage,
'main--popout-chat': isPopoutWindow,
2021-01-08 16:21:27 +01:00
})}
>
{!authPage &&
(settingsPage ? (
<SettingsSideNavigation />
) : (
!noSideNavigation && (
<SideNavigation
sidebarOpen={sidebarOpen}
setSidebarOpen={setSidebarOpen}
isMediumScreen={isMediumScreen}
isOnFilePage={isOnFilePage}
/>
)
))}
2021-12-11 15:59:32 +01:00
<div
className={classnames({
'sidebar--pusher': fullWidthPage,
'sidebar--pusher--open': sidebarOpen && fullWidthPage,
'sidebar--pusher--filepage': !fullWidthPage,
2020-08-21 17:49:13 +02:00
})}
2020-08-10 22:47:39 +02:00
>
2021-12-11 15:59:32 +01:00
<main
id={'main-content'}
className={classnames(MAIN_CLASS, className, {
2022-02-12 19:30:55 +01:00
'main--full-width hide-ribbon': fullWidthPage,
2021-12-11 15:59:32 +01:00
'main--auth-page': authPage,
'main--file-page': filePage,
'main--settings-page': settingsPage,
'main--markdown': isMarkdown,
2022-03-15 17:18:08 +01:00
'main--theater-mode': isOnFilePage && videoTheaterMode && !livestream && !isMarkdown && !isMobile,
2021-12-11 15:59:32 +01:00
'main--livestream': livestream && !chatDisabled,
'main--popout-chat': isPopoutWindow,
2021-12-11 15:59:32 +01:00
})}
>
{children}
2021-04-23 21:59:48 +02:00
2022-03-15 17:18:08 +01:00
{!isMobile && (!livestream || !chatDisabled) && rightSide}
2021-12-11 15:59:32 +01:00
</main>
2021-12-11 15:59:32 +01:00
{!noFooter && (
<React.Suspense fallback={null}>
<Footer />
</React.Suspense>
)}
</div>
2019-08-27 16:43:42 +02:00
</div>
</>
2019-08-27 16:43:42 +02:00
);
}
2018-03-26 23:32:43 +02:00
export default Page;