mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
65 lines
2.1 KiB
TypeScript
65 lines
2.1 KiB
TypeScript
"use client";
|
|
|
|
import {Trash2} from "lucide-react";
|
|
import {ButtonWithConfirm} from "@/components/wrappers/common/button/button-with-confirm";
|
|
import {useMutation} from "@tanstack/react-query";
|
|
import {
|
|
deleteProjectAction
|
|
} from "@/components/wrappers/dashboard/projects/button-delete-project/delete-project.action";
|
|
import {useRouter} from "next/navigation";
|
|
import {toast} from "sonner";
|
|
import {useIsMobile} from "@/hooks/use-mobile";
|
|
|
|
export type ButtonDeleteProjectProps = {
|
|
text?: string;
|
|
projectId: string;
|
|
};
|
|
|
|
export const ButtonDeleteProject = (props: ButtonDeleteProjectProps) => {
|
|
const router = useRouter();
|
|
const isMobile = useIsMobile()
|
|
|
|
const mutation = useMutation({
|
|
mutationFn: () => deleteProjectAction(props.projectId),
|
|
onSuccess: async (result: any) => {
|
|
if (result.data?.success) {
|
|
toast.success(result.data.actionSuccess.message);
|
|
router.push("/");
|
|
} else {
|
|
toast.error(result.data.actionError.message || "Unknown error occurred.");
|
|
}
|
|
},
|
|
});
|
|
|
|
return (
|
|
|
|
<ButtonWithConfirm
|
|
title={props.text ? props.text : ""}
|
|
description="Are you sure you want to delete this project ? This action cannot be undone."
|
|
button={{
|
|
main: {
|
|
text: props.text ? !isMobile ? props.text: "" : "",
|
|
variant: "outline",
|
|
icon: <Trash2 color="red"/>,
|
|
},
|
|
confirm: {
|
|
className: "w-full",
|
|
text: "Delete",
|
|
icon: <Trash2/>,
|
|
variant: "destructive",
|
|
onClick: () => {
|
|
mutation.mutate();
|
|
},
|
|
},
|
|
cancel: {
|
|
className: "w-full",
|
|
text: "Cancel",
|
|
icon: <Trash2/>,
|
|
variant: "outline",
|
|
},
|
|
}}
|
|
isPending={mutation.isPending}
|
|
/>
|
|
);
|
|
};
|