mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 04:22:32 +10:00
79 lines
2.1 KiB
TypeScript
79 lines
2.1 KiB
TypeScript
import { useState } from 'react';
|
|
|
|
import { msg } from '@lingui/core/macro';
|
|
import { useLingui } from '@lingui/react';
|
|
import { Trans } from '@lingui/react/macro';
|
|
|
|
import { authClient } from '@documenso/auth/client';
|
|
import { Button } from '@documenso/ui/primitives/button';
|
|
import { useToast } from '@documenso/ui/primitives/use-toast';
|
|
|
|
export type DocumentSigningAuthPageViewProps = {
|
|
email?: string;
|
|
emailHasAccount?: boolean;
|
|
};
|
|
|
|
export const DocumentSigningAuthPageView = ({
|
|
email,
|
|
emailHasAccount,
|
|
}: DocumentSigningAuthPageViewProps) => {
|
|
const { _ } = useLingui();
|
|
const { toast } = useToast();
|
|
|
|
const [isSigningOut, setIsSigningOut] = useState(false);
|
|
|
|
const handleChangeAccount = async (email?: string) => {
|
|
try {
|
|
setIsSigningOut(true);
|
|
|
|
let redirectPath = '/signin';
|
|
|
|
if (email) {
|
|
redirectPath = emailHasAccount ? `/signin#email=${email}` : `/signup#email=${email}`;
|
|
}
|
|
|
|
await authClient.signOut({
|
|
redirectPath,
|
|
});
|
|
} catch {
|
|
toast({
|
|
title: _(msg`Something went wrong`),
|
|
description: _(msg`We were unable to log you out at this time.`),
|
|
duration: 10000,
|
|
variant: 'destructive',
|
|
});
|
|
}
|
|
|
|
setIsSigningOut(false);
|
|
};
|
|
|
|
return (
|
|
<div className="mx-auto flex h-[70vh] w-full max-w-md flex-col items-center justify-center">
|
|
<div>
|
|
<h1 className="text-3xl font-semibold">
|
|
<Trans>Authentication required</Trans>
|
|
</h1>
|
|
|
|
<p className="text-muted-foreground mt-2 text-sm">
|
|
{email ? (
|
|
<Trans>
|
|
You need to be logged in as <strong>{email}</strong> to view this page.
|
|
</Trans>
|
|
) : (
|
|
<Trans>You need to be logged in to view this page.</Trans>
|
|
)}
|
|
</p>
|
|
|
|
<Button
|
|
className="mt-4 w-full"
|
|
type="submit"
|
|
onClick={async () => handleChangeAccount(email)}
|
|
loading={isSigningOut}
|
|
>
|
|
{emailHasAccount ? <Trans>Login</Trans> : <Trans>Sign up</Trans>}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|