| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- import type { IUserHasId } from '@growi/core';
- import { GetServerSidePropsContext } from 'next';
- import { serverSideTranslations } from 'next-i18next/serverSideTranslations';
- import type { CrowiRequest } from '~/interfaces/crowi-request';
- import {
- getServerSideCommonProps, getNextI18NextConfig, CommonProps,
- } from '~/pages/utils/commons';
- /**
- * for Server Side Translations
- * @param context
- * @param props
- * @param namespacesRequired
- */
- async function injectNextI18NextConfigurations(context: GetServerSidePropsContext, props, namespacesRequired?: string[] | undefined): Promise<void> {
- // preload all languages because of language lists in user setting
- const nextI18NextConfig = await getNextI18NextConfig(serverSideTranslations, context, namespacesRequired, true);
- props._nextI18Next = nextI18NextConfig._nextI18Next;
- }
- export const retrieveServerSideProps: any = async(
- context: GetServerSidePropsContext, injectServerConfigurations?:(context: GetServerSidePropsContext, props) => Promise<void>,
- ) => {
- 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: CommonProps = result.props as CommonProps;
- if (injectServerConfigurations != null) {
- await injectServerConfigurations(context, props);
- }
- if (user != null) {
- props.currentUser = user.toObject();
- }
- props.isAccessDeniedForNonAdminUser = props.currentUser == null
- ? true
- : !props.currentUser.admin;
- await injectNextI18NextConfigurations(context, props, ['admin', 'commons']);
- return {
- props,
- };
- };
|