* add doctor jobs view * change translation * another translation change * clean up * add analaysis detail view to paths config * translation * merge fix * fix path * move components to shared * refactor * imports * clean up
53 lines
1.3 KiB
TypeScript
53 lines
1.3 KiB
TypeScript
import { use } from 'react';
|
|
|
|
import { PersonalAccountSettingsContainer } from '@kit/accounts/personal-account-settings';
|
|
import {
|
|
authConfig,
|
|
featureFlagsConfig,
|
|
pathsConfig,
|
|
} from '@kit/shared/config';
|
|
import { PageBody } from '@kit/ui/page';
|
|
|
|
import { createI18nServerInstance } from '~/lib/i18n/i18n.server';
|
|
import { requireUserInServerComponent } from '~/lib/server/require-user-in-server-component';
|
|
import { withI18n } from '~/lib/i18n/with-i18n';
|
|
|
|
const features = {
|
|
enableAccountDeletion: featureFlagsConfig.enableAccountDeletion,
|
|
enablePasswordUpdate: authConfig.providers.password,
|
|
};
|
|
|
|
const callbackPath = pathsConfig.auth.callback;
|
|
const accountHomePath = pathsConfig.app.accountHome;
|
|
|
|
const paths = {
|
|
callback: callbackPath + `?next=${accountHomePath}`,
|
|
};
|
|
|
|
export const generateMetadata = async () => {
|
|
const i18n = await createI18nServerInstance();
|
|
const title = i18n.t('account:settingsTab');
|
|
|
|
return {
|
|
title,
|
|
};
|
|
};
|
|
|
|
function PersonalAccountSettingsPage() {
|
|
const user = use(requireUserInServerComponent());
|
|
|
|
return (
|
|
<PageBody>
|
|
<div className={'flex w-full flex-1 flex-col lg:max-w-2xl'}>
|
|
<PersonalAccountSettingsContainer
|
|
userId={user.id}
|
|
features={features}
|
|
paths={paths}
|
|
/>
|
|
</div>
|
|
</PageBody>
|
|
);
|
|
}
|
|
|
|
export default withI18n(PersonalAccountSettingsPage);
|