mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-05-06 08:47:18 +00:00
d23c2f3b53
Co-authored-by: Pablo F.G <pablo.fernandez@prowler.com> Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
85 lines
2.3 KiB
TypeScript
85 lines
2.3 KiB
TypeScript
"use client";
|
|
|
|
import { zodResolver } from "@hookform/resolvers/zod";
|
|
import { useRouter } from "next/navigation";
|
|
import React, { Dispatch, SetStateAction } from "react";
|
|
import { useForm } from "react-hook-form";
|
|
import * as z from "zod";
|
|
|
|
import { deleteProviderGroup } from "@/actions/manage-groups/manage-groups";
|
|
import { DeleteIcon } from "@/components/icons";
|
|
import { Button } from "@/components/shadcn";
|
|
import { useToast } from "@/components/ui";
|
|
import { Form } from "@/components/ui/form";
|
|
|
|
const formSchema = z.object({
|
|
groupId: z.string(),
|
|
});
|
|
|
|
export const DeleteGroupForm = ({
|
|
groupId,
|
|
setIsOpen,
|
|
}: {
|
|
groupId: string;
|
|
setIsOpen: Dispatch<SetStateAction<boolean>>;
|
|
}) => {
|
|
const form = useForm<z.infer<typeof formSchema>>({
|
|
resolver: zodResolver(formSchema),
|
|
});
|
|
const { toast } = useToast();
|
|
const router = useRouter();
|
|
const isLoading = form.formState.isSubmitting;
|
|
|
|
async function onSubmitClient(formData: FormData) {
|
|
// client-side validation
|
|
const data = await deleteProviderGroup(formData);
|
|
|
|
if (data?.errors && data.errors.length > 0) {
|
|
const error = data.errors[0];
|
|
const errorMessage = `${error.detail}`;
|
|
// show error
|
|
toast({
|
|
variant: "destructive",
|
|
title: "Oops! Something went wrong",
|
|
description: errorMessage,
|
|
});
|
|
} else {
|
|
toast({
|
|
title: "Success!",
|
|
description: "The provider group was removed successfully.",
|
|
});
|
|
router.push("/providers?tab=provider-groups");
|
|
}
|
|
setIsOpen(false); // Close the modal on success
|
|
}
|
|
|
|
return (
|
|
<Form {...form}>
|
|
<form action={onSubmitClient}>
|
|
<input type="hidden" name="id" value={groupId} />
|
|
<div className="flex w-full justify-end gap-4">
|
|
<Button
|
|
type="button"
|
|
variant="ghost"
|
|
size="lg"
|
|
onClick={() => setIsOpen(false)}
|
|
disabled={isLoading}
|
|
>
|
|
Cancel
|
|
</Button>
|
|
|
|
<Button
|
|
type="submit"
|
|
variant="destructive"
|
|
size="lg"
|
|
disabled={isLoading}
|
|
>
|
|
{!isLoading && <DeleteIcon size={24} />}
|
|
{isLoading ? "Loading" : "Delete"}
|
|
</Button>
|
|
</div>
|
|
</form>
|
|
</Form>
|
|
);
|
|
};
|