| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- import React from 'react';
- import { NextPage, GetServerSideProps, GetServerSidePropsContext } from 'next';
- import { useTranslation } from 'next-i18next';
- import { serverSideTranslations } from 'next-i18next/serverSideTranslations';
- import dynamic from 'next/dynamic';
- import {
- CommonProps, getNextI18NextConfig, getServerSideCommonProps,
- } from './utils/commons';
- type Props = CommonProps & {
- email: string
- };
- const PasswordResetExecutionForm = dynamic(() => import('~/components/PasswordResetExecutionForm'), { ssr: false });
- const ForgotPasswordPage: NextPage<Props> = (props: Props) => {
- const { t } = useTranslation();
- return (
- <div id="main" className="main">
- <div id="content-main" className="content-main container-lg">
- <div className="container">
- <div className="row justify-content-md-center">
- <div className="col-md-6 mt-5">
- <div className="text-center">
- <h1><i className="icon-lock-open large"></i></h1>
- <h2 className="text-center">{ t('forgot_password.reset_password') }</h2>
- <h5>{ props.email }</h5>
- <p className="mt-4">{ t('forgot_password.password_reset_excecution_desc') }</p>
- <PasswordResetExecutionForm />
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- );
- };
- // eslint-disable-next-line max-len
- 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 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 email = context.query.email;
- if (typeof email === 'string') {
- props.email = email;
- }
- await injectNextI18NextConfigurations(context, props, ['translation', 'commons']);
- return {
- props,
- };
- };
- export default ForgotPasswordPage;
|