| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- import React, { ReactNode } from 'react';
- import type { IUser, IUserHasId } from '@growi/core';
- import type { GetServerSideProps, GetServerSidePropsContext } from 'next';
- import { serverSideTranslations } from 'next-i18next/serverSideTranslations';
- import dynamic from 'next/dynamic';
- import Head from 'next/head';
- import { PagePathNavSticky } from '~/components/Common/PagePathNav';
- import type { CrowiRequest } from '~/interfaces/crowi-request';
- import type { RendererConfig } from '~/interfaces/services/renderer';
- import { useCurrentPageId } from '~/stores/page';
- import { BasicLayout } from '../components/Layout/BasicLayout';
- import {
- useCurrentUser, useCurrentPathname, useGrowiCloudUri,
- useIsSearchServiceConfigured, useIsSearchServiceReachable,
- useIsSearchScopeChildrenAsDefault, useIsSearchPage, useShowPageLimitationXL,
- } from '../stores/context';
- import type { NextPageWithLayout } from './_app.page';
- import type { CommonProps } from './utils/commons';
- import {
- getServerSideCommonProps, getNextI18NextConfig, generateCustomTitleForPage, useInitSidebarConfig,
- } from './utils/commons';
- const TrashPageList = dynamic(() => import('~/components/TrashPageList').then(mod => mod.TrashPageList), { ssr: false });
- const EmptyTrashModal = dynamic(() => import('~/components/EmptyTrashModal'), { ssr: false });
- type Props = CommonProps & {
- currentUser: IUser,
- isSearchServiceConfigured: boolean,
- isSearchServiceReachable: boolean,
- isSearchScopeChildrenAsDefault: boolean,
- showPageLimitationXL: number,
- rendererConfig: RendererConfig,
- };
- const TrashPage: NextPageWithLayout<CommonProps> = (props: Props) => {
- useCurrentUser(props.currentUser ?? null);
- useGrowiCloudUri(props.growiCloudUri);
- useIsSearchServiceConfigured(props.isSearchServiceConfigured);
- useIsSearchServiceReachable(props.isSearchServiceReachable);
- useIsSearchScopeChildrenAsDefault(props.isSearchScopeChildrenAsDefault);
- useIsSearchPage(false);
- useCurrentPageId(null);
- useCurrentPathname('/trash');
- // init sidebar config with UserUISettings and sidebarConfig
- useInitSidebarConfig(props.sidebarConfig, props.userUISettings);
- useShowPageLimitationXL(props.showPageLimitationXL);
- const title = generateCustomTitleForPage(props, '/trash');
- return (
- <>
- <Head>
- <title>{title}</title>
- </Head>
- <div className="dynamic-layout-root">
- <nav className="sticky-top">
- TODO: implement navigation for /trash
- </nav>
- <div className="content-main container-lg grw-container-convertible mb-5 pb-5">
- <PagePathNavSticky pagePath="/trash" />
- <TrashPageList />
- </div>
- <div id="grw-fav-sticky-trigger" className="sticky-top"></div>
- </div>
- </>
- );
- };
- type LayoutProps = Props & {
- children?: ReactNode,
- }
- const Layout = ({ children, ...props }: LayoutProps): JSX.Element => {
- // init sidebar config with UserUISettings and sidebarConfig
- useInitSidebarConfig(props.sidebarConfig, props.userUISettings);
- return <BasicLayout>{children}</BasicLayout>;
- };
- TrashPage.getLayout = function getLayout(page) {
- return (
- <>
- <Layout {...page.props}>
- {page}
- </Layout>
- <EmptyTrashModal />
- </>
- );
- };
- function injectServerConfigurations(context: GetServerSidePropsContext, props: Props): void {
- const req: CrowiRequest = context.req as CrowiRequest;
- const { crowi } = req;
- const {
- searchService, configManager,
- } = crowi;
- props.isSearchServiceConfigured = searchService.isConfigured;
- props.isSearchServiceReachable = searchService.isReachable;
- props.isSearchScopeChildrenAsDefault = configManager.getConfig('crowi', 'customize:isSearchScopeChildrenAsDefault');
- props.showPageLimitationXL = crowi.configManager.getConfig('crowi', 'customize:showPageLimitationXL');
- props.sidebarConfig = {
- isSidebarCollapsedMode: configManager.getConfig('crowi', 'customize:isSidebarCollapsedMode'),
- };
- }
- /**
- * for Server Side Translations
- * @param context
- * @param props
- * @param namespacesRequired
- */
- async function injectNextI18NextConfigurations(context: GetServerSidePropsContext, props: Props, namespacesRequired?: string[] | undefined): Promise<void> {
- const nextI18NextConfig = await getNextI18NextConfig(serverSideTranslations, context, namespacesRequired);
- props._nextI18Next = nextI18NextConfig._nextI18Next;
- }
- export const getServerSideProps: GetServerSideProps = async(context: GetServerSidePropsContext) => {
- const req = context.req as CrowiRequest<IUserHasId & any>;
- const { user } = req;
- const result = await getServerSideCommonProps(context);
- if (!('props' in result)) {
- throw new Error('invalid getSSP result');
- }
- const props: Props = result.props as Props;
- if (user != null) {
- props.currentUser = user.toObject();
- }
- injectServerConfigurations(context, props);
- await injectNextI18NextConfigurations(context, props, ['translation']);
- return {
- props,
- };
- };
- export default TrashPage;
|