|
|
@@ -1,59 +1,48 @@
|
|
|
-import type { IUser } from '@growi/core';
|
|
|
+import { isPermalink, isUserPage, isUsersTopPage } from '@growi/core/dist/utils/page-path-utils';
|
|
|
import type {
|
|
|
NextPage, GetServerSideProps, GetServerSidePropsContext,
|
|
|
} from 'next';
|
|
|
import { useTranslation } from 'next-i18next';
|
|
|
-import { serverSideTranslations } from 'next-i18next/serverSideTranslations';
|
|
|
import dynamic from 'next/dynamic';
|
|
|
import Head from 'next/head';
|
|
|
|
|
|
import { DrawioViewerScript } from '~/components/Script/DrawioViewerScript';
|
|
|
import type { CrowiRequest } from '~/interfaces/crowi-request';
|
|
|
-import type { RendererConfig } from '~/interfaces/services/renderer';
|
|
|
-import type { ISidebarConfig } from '~/interfaces/sidebar-config';
|
|
|
-import { useHydratePageAtoms } from '~/states/hydrate/page';
|
|
|
-import { useHydrateSidebarAtoms } from '~/states/hydrate/sidebar';
|
|
|
-import {
|
|
|
- useCsrfToken, useCurrentUser, useIsSearchPage, useIsSearchScopeChildrenAsDefault,
|
|
|
- useIsSearchServiceConfigured, useIsSearchServiceReachable, useRendererConfig, useGrowiCloudUri, useIsEnabledMarp, useCurrentPathname,
|
|
|
-} from '~/stores-universal/context';
|
|
|
+import { useHydrateSidebarAtoms } from '~/states/ui/sidebar/hydrate';
|
|
|
|
|
|
-import type { CommonProps } from './common-props';
|
|
|
+import type {
|
|
|
+ CommonEachProps,
|
|
|
+ CommonInitialProps, UserUISettingsProps,
|
|
|
+} from './common-props';
|
|
|
import {
|
|
|
- getNextI18NextConfig, getServerSideCommonProps, generateCustomTitle,
|
|
|
+ getServerSideCommonEachProps, getServerSideCommonInitialProps, getServerSideI18nProps, getServerSideUserUISettingsProps,
|
|
|
} from './common-props';
|
|
|
+import type { RendererConfigProps, SidebarConfigProps } from './general-page';
|
|
|
+import { getServerSideRendererConfigProps, getServerSideSidebarConfigProps } from './general-page';
|
|
|
+import { useCustomTitle } from './utils/page-title-customization';
|
|
|
+import { mergeGetServerSidePropsResults } from './utils/server-side-props';
|
|
|
|
|
|
const SearchResultLayout = dynamic(() => import('~/components/Layout/SearchResultLayout'), { ssr: false });
|
|
|
|
|
|
-type Props = CommonProps & {
|
|
|
- currentUser: IUser,
|
|
|
|
|
|
+type ServerConfigurationProps = {
|
|
|
isSearchServiceConfigured: boolean,
|
|
|
isSearchServiceReachable: boolean,
|
|
|
isSearchScopeChildrenAsDefault: boolean,
|
|
|
isEnabledMarp: boolean,
|
|
|
+}
|
|
|
|
|
|
- // Render config
|
|
|
- rendererConfig: RendererConfig,
|
|
|
-
|
|
|
- sidebarConfig: ISidebarConfig,
|
|
|
-};
|
|
|
+type Props = CommonInitialProps & CommonEachProps & ServerConfigurationProps & RendererConfigProps & UserUISettingsProps & SidebarConfigProps;
|
|
|
|
|
|
const PrivateLegacyPage: NextPage<Props> = (props: Props) => {
|
|
|
const { t } = useTranslation();
|
|
|
|
|
|
const PrivateLegacyPages = dynamic(() => import('~/client/components/PrivateLegacyPages'), { ssr: false });
|
|
|
|
|
|
- // commons
|
|
|
- useCsrfToken(props.csrfToken);
|
|
|
- useGrowiCloudUri(props.growiCloudUri);
|
|
|
-
|
|
|
- useCurrentUser(props.currentUser ?? null);
|
|
|
-
|
|
|
// clear the cache for the current page
|
|
|
// in order to fix https://redmine.weseek.co.jp/issues/135811
|
|
|
- useHydratePageAtoms(undefined);
|
|
|
- useCurrentPathname('/_private-legacy-pages');
|
|
|
+ // useHydratePageAtoms(undefined);
|
|
|
+ // useCurrentPathname('/_private-legacy-pages');
|
|
|
|
|
|
// Search
|
|
|
useIsSearchPage(true);
|
|
|
@@ -65,10 +54,7 @@ const PrivateLegacyPage: NextPage<Props> = (props: Props) => {
|
|
|
// Hydrate sidebar atoms with server-side data
|
|
|
useHydrateSidebarAtoms(props.sidebarConfig, props.userUISettings);
|
|
|
|
|
|
- // render config
|
|
|
- useRendererConfig(props.rendererConfig);
|
|
|
-
|
|
|
- const title = generateCustomTitle(props, t('private_legacy_pages.title'));
|
|
|
+ const title = useCustomTitle(t('private_legacy_pages.title'));
|
|
|
|
|
|
return (
|
|
|
<>
|
|
|
@@ -87,77 +73,58 @@ const PrivateLegacyPage: NextPage<Props> = (props: Props) => {
|
|
|
);
|
|
|
};
|
|
|
|
|
|
-async function injectServerConfigurations(context: GetServerSidePropsContext, props: Props): Promise<void> {
|
|
|
+const getServerSideConfigurationProps: GetServerSideProps<ServerConfigurationProps> = async(context: GetServerSidePropsContext) => {
|
|
|
const req: CrowiRequest = context.req as CrowiRequest;
|
|
|
const { crowi } = req;
|
|
|
- const { configManager, searchService } = crowi;
|
|
|
-
|
|
|
- props.isSearchServiceConfigured = searchService.isConfigured;
|
|
|
- props.isSearchServiceReachable = searchService.isReachable;
|
|
|
- props.isSearchScopeChildrenAsDefault = configManager.getConfig('customize:isSearchScopeChildrenAsDefault');
|
|
|
- props.isEnabledMarp = configManager.getConfig('customize:isEnabledMarp');
|
|
|
+ const {
|
|
|
+ configManager, searchService,
|
|
|
+ } = crowi;
|
|
|
|
|
|
- props.sidebarConfig = {
|
|
|
- isSidebarCollapsedMode: configManager.getConfig('customize:isSidebarCollapsedMode'),
|
|
|
- isSidebarClosedAtDockMode: configManager.getConfig('customize:isSidebarClosedAtDockMode'),
|
|
|
- };
|
|
|
-
|
|
|
- props.rendererConfig = {
|
|
|
- isEnabledLinebreaks: configManager.getConfig('markdown:isEnabledLinebreaks'),
|
|
|
- isEnabledLinebreaksInComments: configManager.getConfig('markdown:isEnabledLinebreaksInComments'),
|
|
|
- isEnabledMarp: configManager.getConfig('customize:isEnabledMarp'),
|
|
|
- adminPreferredIndentSize: configManager.getConfig('markdown:adminPreferredIndentSize'),
|
|
|
- isIndentSizeForced: configManager.getConfig('markdown:isIndentSizeForced'),
|
|
|
-
|
|
|
- drawioUri: configManager.getConfig('app:drawioUri'),
|
|
|
- plantumlUri: configManager.getConfig('app:plantumlUri'),
|
|
|
-
|
|
|
- // XSS Options
|
|
|
- isEnabledXssPrevention: configManager.getConfig('markdown:rehypeSanitize:isEnabledPrevention'),
|
|
|
- sanitizeType: configManager.getConfig('markdown:rehypeSanitize:option'),
|
|
|
- customTagWhitelist: crowi.configManager.getConfig('markdown:rehypeSanitize:tagNames'),
|
|
|
- customAttrWhitelist: configManager.getConfig('markdown:rehypeSanitize:attributes') != null
|
|
|
- ? JSON.parse(configManager.getConfig('markdown:rehypeSanitize:attributes'))
|
|
|
- : undefined,
|
|
|
- highlightJsStyleBorder: crowi.configManager.getConfig('customize:highlightJsStyleBorder'),
|
|
|
+ return {
|
|
|
+ props: {
|
|
|
+ isSearchServiceConfigured: searchService.isConfigured,
|
|
|
+ isSearchServiceReachable: searchService.isReachable,
|
|
|
+ isSearchScopeChildrenAsDefault: configManager.getConfig('customize:isSearchScopeChildrenAsDefault'),
|
|
|
+ isEnabledMarp: configManager.getConfig('customize:isEnabledMarp'),
|
|
|
+ },
|
|
|
};
|
|
|
-}
|
|
|
-
|
|
|
-/**
|
|
|
- * 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;
|
|
|
- const { user } = req;
|
|
|
-
|
|
|
- const result = await getServerSideCommonProps(context);
|
|
|
-
|
|
|
- // check for presence
|
|
|
- // see: https://github.com/vercel/next.js/issues/19271#issuecomment-730006862
|
|
|
- if (!('props' in result)) {
|
|
|
- throw new Error('invalid getSSP result');
|
|
|
- }
|
|
|
-
|
|
|
- const props: Props = result.props as Props;
|
|
|
+ const req: CrowiRequest = context.req as CrowiRequest;
|
|
|
|
|
|
- if (user != null) {
|
|
|
- props.currentUser = user.toObject();
|
|
|
+ // redirect to the page the user was on before moving to the Login Page
|
|
|
+ if (req.headers.referer != null) {
|
|
|
+ const urlBeforeLogin = new URL(req.headers.referer);
|
|
|
+ if (isPermalink(urlBeforeLogin.pathname) || isUserPage(urlBeforeLogin.pathname) || isUsersTopPage(urlBeforeLogin.pathname)) {
|
|
|
+ req.session.redirectTo = urlBeforeLogin.href;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
- await injectServerConfigurations(context, props);
|
|
|
- await injectNextI18NextConfigurations(context, props, ['translation']);
|
|
|
-
|
|
|
- return {
|
|
|
- props,
|
|
|
- };
|
|
|
+ const [
|
|
|
+ commonInitialResult,
|
|
|
+ commonEachResult,
|
|
|
+ userUIResult,
|
|
|
+ rendererConfigResult,
|
|
|
+ sidebarConfigResult,
|
|
|
+ serverConfigResult,
|
|
|
+ i18nPropsResult,
|
|
|
+ ] = await Promise.all([
|
|
|
+ getServerSideCommonInitialProps(context),
|
|
|
+ getServerSideCommonEachProps(context),
|
|
|
+ getServerSideUserUISettingsProps(context),
|
|
|
+ getServerSideRendererConfigProps(context),
|
|
|
+ getServerSideSidebarConfigProps(context),
|
|
|
+ getServerSideConfigurationProps(context),
|
|
|
+ getServerSideI18nProps(context, ['translation']),
|
|
|
+ ]);
|
|
|
+
|
|
|
+ return mergeGetServerSidePropsResults(commonInitialResult,
|
|
|
+ mergeGetServerSidePropsResults(commonEachResult,
|
|
|
+ mergeGetServerSidePropsResults(userUIResult,
|
|
|
+ mergeGetServerSidePropsResults(rendererConfigResult,
|
|
|
+ mergeGetServerSidePropsResults(sidebarConfigResult,
|
|
|
+ mergeGetServerSidePropsResults(serverConfigResult, i18nPropsResult))))));
|
|
|
};
|
|
|
|
|
|
export default PrivateLegacyPage;
|