This update adds error handling for the API call in 'join' page while retrieving the team account information. If the call fails, it will catch the error and return undefined avoiding potential crashes.
144 lines
4.2 KiB
TypeScript
144 lines
4.2 KiB
TypeScript
import Link from 'next/link';
|
|
import { notFound, redirect } from 'next/navigation';
|
|
|
|
import { ArrowLeft } from 'lucide-react';
|
|
|
|
import { AuthLayoutShell } from '@kit/auth/shared';
|
|
import { requireUser } from '@kit/supabase/require-user';
|
|
import { getSupabaseServerComponentClient } from '@kit/supabase/server-component-client';
|
|
import { createTeamAccountsApi } from '@kit/team-accounts/api';
|
|
import { AcceptInvitationContainer } from '@kit/team-accounts/components';
|
|
import { Button } from '@kit/ui/button';
|
|
import { Heading } from '@kit/ui/heading';
|
|
import { Trans } from '@kit/ui/trans';
|
|
|
|
import { AppLogo } from '~/components/app-logo';
|
|
import pathsConfig from '~/config/paths.config';
|
|
import { createI18nServerInstance } from '~/lib/i18n/i18n.server';
|
|
import { withI18n } from '~/lib/i18n/with-i18n';
|
|
|
|
interface Context {
|
|
searchParams: {
|
|
invite_token?: string;
|
|
};
|
|
}
|
|
|
|
export const generateMetadata = async () => {
|
|
const i18n = await createI18nServerInstance();
|
|
|
|
return {
|
|
title: i18n.t('teams:joinTeamAccount'),
|
|
};
|
|
};
|
|
|
|
async function JoinTeamAccountPage({ searchParams }: Context) {
|
|
const token = searchParams.invite_token;
|
|
|
|
// no token, redirect to 404
|
|
if (!token) {
|
|
notFound();
|
|
}
|
|
|
|
const client = getSupabaseServerComponentClient();
|
|
const auth = await requireUser(client);
|
|
|
|
// if the user is not logged in or there is an error
|
|
// redirect to the sign up page with the invite token
|
|
// so that they will get back to this page after signing up
|
|
if (auth.error ?? !auth.data) {
|
|
const path = `${pathsConfig.auth.signUp}?invite_token=${token}`;
|
|
|
|
redirect(path);
|
|
}
|
|
|
|
// get api to interact with team accounts
|
|
const adminClient = getSupabaseServerComponentClient({ admin: true });
|
|
const api = createTeamAccountsApi(client);
|
|
|
|
// the user is logged in, we can now check if the token is valid
|
|
const invitation = await api.getInvitation(adminClient, token);
|
|
|
|
// the invitation is not found or expired
|
|
if (!invitation) {
|
|
return (
|
|
<AuthLayoutShell Logo={AppLogo}>
|
|
<InviteNotFoundOrExpired />
|
|
</AuthLayoutShell>
|
|
);
|
|
}
|
|
|
|
// we need to verify the user isn't already in the account
|
|
// we do so by checking if the user can read the account
|
|
// if the user can read the account, then they are already in the account
|
|
const account = await api
|
|
.getTeamAccountById(invitation.account.id)
|
|
.catch(() => undefined);
|
|
|
|
// if the user is already in the account redirect to the home page
|
|
if (account) {
|
|
const { getLogger } = await import('@kit/shared/logger');
|
|
const logger = await getLogger();
|
|
|
|
logger.warn(
|
|
{
|
|
name: 'join-team-account',
|
|
accountId: invitation.account.id,
|
|
userId: auth.data.id,
|
|
},
|
|
'User is already in the account. Redirecting to account page.',
|
|
);
|
|
|
|
// if the user is already in the account redirect to the home page
|
|
redirect(pathsConfig.app.home);
|
|
}
|
|
|
|
// if the user decides to sign in with a different account
|
|
// we redirect them to the sign in page with the invite token
|
|
const signOutNext = `${pathsConfig.auth.signIn}?invite_token=${token}`;
|
|
|
|
// once the user accepts the invitation, we redirect them to the account home page
|
|
const accountHome = pathsConfig.app.accountHome.replace(
|
|
'[account]',
|
|
invitation.account.slug,
|
|
);
|
|
|
|
const email = auth.data.email ?? '';
|
|
|
|
return (
|
|
<AuthLayoutShell Logo={AppLogo}>
|
|
<AcceptInvitationContainer
|
|
email={email}
|
|
inviteToken={token}
|
|
invitation={invitation}
|
|
paths={{
|
|
signOutNext,
|
|
accountHome,
|
|
}}
|
|
/>
|
|
</AuthLayoutShell>
|
|
);
|
|
}
|
|
|
|
export default withI18n(JoinTeamAccountPage);
|
|
|
|
function InviteNotFoundOrExpired() {
|
|
return (
|
|
<div className={'flex flex-col space-y-4'}>
|
|
<Heading level={6}>
|
|
<Trans i18nKey={'teams:inviteNotFoundOrExpired'} />
|
|
</Heading>
|
|
|
|
<p className={'text-sm text-muted-foreground'}>
|
|
<Trans i18nKey={'teams:inviteNotFoundOrExpiredDescription'} />
|
|
</p>
|
|
|
|
<Button asChild className={'w-full'} variant={'outline'}>
|
|
<Link href={pathsConfig.app.home}>
|
|
<ArrowLeft className={'mr-2 w-4'} />
|
|
<Trans i18nKey={'teams:backToHome'} />
|
|
</Link>
|
|
</Button>
|
|
</div>
|
|
);
|
|
}
|