The code now includes success and error messages for team member invitation completion. It validates entered email addresses for duplicates and sets a limit on the number of invitations that can be sent at once to avoid server spam. Also, visual changes have been made to the form - label placement, form message, button types, etc.
27 lines
562 B
TypeScript
27 lines
562 B
TypeScript
import { z } from 'zod';
|
|
|
|
const InviteSchema = z.object({
|
|
email: z.string().email(),
|
|
role: z.string().min(1).max(100),
|
|
});
|
|
|
|
export const InviteMembersSchema = z
|
|
.object({
|
|
invitations: InviteSchema.array().min(1).max(5),
|
|
})
|
|
.refine(
|
|
(data) => {
|
|
const emails = data.invitations.map((member) =>
|
|
member.email.toLowerCase(),
|
|
);
|
|
|
|
const uniqueEmails = new Set(emails);
|
|
|
|
return emails.length === uniqueEmails.size;
|
|
},
|
|
{
|
|
message: 'Duplicate emails are not allowed',
|
|
path: ['invitations'],
|
|
},
|
|
);
|