* wip * wip * wip * wip * wip * add buffer * wip * wip * fixes * fix * wip * group validation * fix group issues * docs: add groups
140 lines
4.5 KiB
TypeScript
140 lines
4.5 KiB
TypeScript
import { zodResolver } from '@hookform/resolvers/zod';
|
|
import { zCreateGroup } from '@openpanel/validation';
|
|
import { useMutation, useQueryClient } from '@tanstack/react-query';
|
|
import { PlusIcon, Trash2Icon } from 'lucide-react';
|
|
import { useFieldArray, useForm } from 'react-hook-form';
|
|
import { toast } from 'sonner';
|
|
import { z } from 'zod';
|
|
import { popModal } from '.';
|
|
import { ModalContent, ModalHeader } from './Modal/Container';
|
|
import { ButtonContainer } from '@/components/button-container';
|
|
import { InputWithLabel } from '@/components/forms/input-with-label';
|
|
import { Button } from '@/components/ui/button';
|
|
import { useAppParams } from '@/hooks/use-app-params';
|
|
import { handleError, useTRPC } from '@/integrations/trpc/react';
|
|
|
|
const zForm = zCreateGroup.omit({ projectId: true, properties: true }).extend({
|
|
properties: z.array(z.object({ key: z.string(), value: z.string() })),
|
|
});
|
|
type IForm = z.infer<typeof zForm>;
|
|
|
|
export default function AddGroup() {
|
|
const { projectId } = useAppParams();
|
|
const queryClient = useQueryClient();
|
|
const trpc = useTRPC();
|
|
|
|
const { register, handleSubmit, control, formState } = useForm<IForm>({
|
|
resolver: zodResolver(zForm),
|
|
defaultValues: {
|
|
id: '',
|
|
type: '',
|
|
name: '',
|
|
properties: [],
|
|
},
|
|
});
|
|
|
|
const { fields, append, remove } = useFieldArray({
|
|
control,
|
|
name: 'properties',
|
|
});
|
|
|
|
const mutation = useMutation(
|
|
trpc.group.create.mutationOptions({
|
|
onSuccess() {
|
|
queryClient.invalidateQueries(trpc.group.list.pathFilter());
|
|
queryClient.invalidateQueries(trpc.group.types.pathFilter());
|
|
toast('Success', { description: 'Group created.' });
|
|
popModal();
|
|
},
|
|
onError: handleError,
|
|
})
|
|
);
|
|
|
|
return (
|
|
<ModalContent>
|
|
<ModalHeader title="Add group" />
|
|
<form
|
|
className="flex flex-col gap-4"
|
|
onSubmit={handleSubmit(({ properties, ...values }) => {
|
|
const props = Object.fromEntries(
|
|
properties
|
|
.filter((p) => p.key.trim() !== '')
|
|
.map((p) => [p.key.trim(), String(p.value)])
|
|
);
|
|
mutation.mutate({ projectId, ...values, properties: props });
|
|
})}
|
|
>
|
|
<InputWithLabel
|
|
label="ID"
|
|
placeholder="acme-corp"
|
|
{...register('id')}
|
|
autoFocus
|
|
error={formState.errors.id?.message}
|
|
/>
|
|
<InputWithLabel
|
|
label="Name"
|
|
placeholder="Acme Corp"
|
|
{...register('name')}
|
|
error={formState.errors.name?.message}
|
|
/>
|
|
<InputWithLabel
|
|
label="Type"
|
|
placeholder="company"
|
|
{...register('type')}
|
|
error={formState.errors.type?.message}
|
|
/>
|
|
|
|
<div className="flex flex-col gap-2">
|
|
<div className="flex items-center justify-between">
|
|
<span className="font-medium text-sm">Properties</span>
|
|
<Button
|
|
onClick={() => append({ key: '', value: '' })}
|
|
size="sm"
|
|
type="button"
|
|
variant="outline"
|
|
>
|
|
<PlusIcon className="mr-1 size-3" />
|
|
Add
|
|
</Button>
|
|
</div>
|
|
{fields.map((field, index) => (
|
|
<div className="flex gap-2" key={field.id}>
|
|
<input
|
|
className="h-9 flex-1 rounded-md border bg-background px-3 text-sm placeholder:text-muted-foreground focus:outline-none focus:ring-1 focus:ring-ring"
|
|
placeholder="key"
|
|
{...register(`properties.${index}.key`)}
|
|
/>
|
|
<input
|
|
className="h-9 flex-1 rounded-md border bg-background px-3 text-sm placeholder:text-muted-foreground focus:outline-none focus:ring-1 focus:ring-ring"
|
|
placeholder="value"
|
|
{...register(`properties.${index}.value`)}
|
|
/>
|
|
<Button
|
|
className="shrink-0"
|
|
onClick={() => remove(index)}
|
|
size="icon"
|
|
type="button"
|
|
variant="ghost"
|
|
>
|
|
<Trash2Icon className="size-4" />
|
|
</Button>
|
|
</div>
|
|
))}
|
|
</div>
|
|
|
|
<ButtonContainer>
|
|
<Button onClick={() => popModal()} type="button" variant="outline">
|
|
Cancel
|
|
</Button>
|
|
<Button
|
|
disabled={!formState.isDirty || mutation.isPending}
|
|
type="submit"
|
|
>
|
|
Create
|
|
</Button>
|
|
</ButtonContainer>
|
|
</form>
|
|
</ModalContent>
|
|
);
|
|
}
|