mirror of
https://github.com/documenso/documenso.git
synced 2025-11-20 19:51:32 +10:00
## Description Add the following document action auth options: - 2FA - Passkey If the user does not have the required auth setup, we onboard them directly. ## Changes made Note: Added secondaryId to the VerificationToken schema ## Testing Performed Tested locally, pending preview tests ## Checklist - [X] I have tested these changes locally and they work as expected. - [X] I have added/updated tests that prove the effectiveness of these changes. - [X] I have followed the project's coding style guidelines. <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Introduced components for 2FA, account, and passkey authentication during document signing. - Added "Require passkey" option to document settings and signer authentication settings. - Enhanced form submission and loading states for improved user experience. - **Refactor** - Optimized authentication components to efficiently support multiple authentication methods. - **Chores** - Updated and renamed functions and components for clarity and consistency across the authentication system. - Refined sorting options and database schema to support new authentication features. - **Bug Fixes** - Adjusted SignInForm to verify browser support for WebAuthn before proceeding. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
80 lines
2.4 KiB
TypeScript
80 lines
2.4 KiB
TypeScript
import { useState } from 'react';
|
|
|
|
import { DateTime } from 'luxon';
|
|
import { signOut } from 'next-auth/react';
|
|
|
|
import { RecipientRole } from '@documenso/prisma/client';
|
|
import { trpc } from '@documenso/trpc/react';
|
|
import { Alert, AlertDescription } from '@documenso/ui/primitives/alert';
|
|
import { Button } from '@documenso/ui/primitives/button';
|
|
import { DialogFooter } from '@documenso/ui/primitives/dialog';
|
|
|
|
import { useRequiredDocumentAuthContext } from './document-auth-provider';
|
|
|
|
export type DocumentActionAuthAccountProps = {
|
|
actionTarget?: 'FIELD' | 'DOCUMENT';
|
|
actionVerb?: string;
|
|
onOpenChange: (value: boolean) => void;
|
|
};
|
|
|
|
export const DocumentActionAuthAccount = ({
|
|
actionTarget = 'FIELD',
|
|
actionVerb = 'sign',
|
|
onOpenChange,
|
|
}: DocumentActionAuthAccountProps) => {
|
|
const { recipient } = useRequiredDocumentAuthContext();
|
|
|
|
const [isSigningOut, setIsSigningOut] = useState(false);
|
|
|
|
const { mutateAsync: encryptSecondaryData } = trpc.crypto.encryptSecondaryData.useMutation();
|
|
|
|
const handleChangeAccount = async (email: string) => {
|
|
try {
|
|
setIsSigningOut(true);
|
|
|
|
const encryptedEmail = await encryptSecondaryData({
|
|
data: email,
|
|
expiresAt: DateTime.now().plus({ days: 1 }).toMillis(),
|
|
});
|
|
|
|
await signOut({
|
|
callbackUrl: `/signin?email=${encodeURIComponent(encryptedEmail)}`,
|
|
});
|
|
} catch {
|
|
setIsSigningOut(false);
|
|
|
|
// Todo: Alert.
|
|
}
|
|
};
|
|
|
|
return (
|
|
<fieldset disabled={isSigningOut} className="space-y-4">
|
|
<Alert variant="warning">
|
|
<AlertDescription>
|
|
{actionTarget === 'DOCUMENT' && recipient.role === RecipientRole.VIEWER ? (
|
|
<span>
|
|
To mark this document as viewed, you need to be logged in as{' '}
|
|
<strong>{recipient.email}</strong>
|
|
</span>
|
|
) : (
|
|
<span>
|
|
To {actionVerb.toLowerCase()} this {actionTarget.toLowerCase()}, you need to be logged
|
|
in as <strong>{recipient.email}</strong>
|
|
</span>
|
|
)}
|
|
</AlertDescription>
|
|
</Alert>
|
|
|
|
<DialogFooter>
|
|
<Button type="button" variant="secondary" onClick={() => onOpenChange(false)}>
|
|
Cancel
|
|
</Button>
|
|
|
|
<Button onClick={async () => handleChangeAccount(recipient.email)} loading={isSigningOut}>
|
|
Login
|
|
</Button>
|
|
</DialogFooter>
|
|
</fieldset>
|
|
);
|
|
};
|