95 lines
2.6 KiB
TypeScript
95 lines
2.6 KiB
TypeScript
import { useMutation, useQueryClient } from "@tanstack/react-query"
|
|
import { Trash2 } from "lucide-react"
|
|
import { useState } from "react"
|
|
import { useForm } from "react-hook-form"
|
|
|
|
import { LocationsService } from "@/client"
|
|
import { Button } from "@/components/ui/button"
|
|
import {
|
|
Dialog,
|
|
DialogClose,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
} from "@/components/ui/dialog"
|
|
import { DropdownMenuItem } from "@/components/ui/dropdown-menu"
|
|
import { LoadingButton } from "@/components/ui/loading-button"
|
|
import useCustomToast from "@/hooks/useCustomToast"
|
|
import { handleError } from "@/utils"
|
|
|
|
interface DeleteLocationProps {
|
|
id: string
|
|
onSuccess: () => void
|
|
}
|
|
|
|
const DeleteLocation = ({ id, onSuccess }: DeleteLocationProps) => {
|
|
const [isOpen, setIsOpen] = useState(false)
|
|
const queryClient = useQueryClient()
|
|
const { showSuccessToast, showErrorToast } = useCustomToast()
|
|
const { handleSubmit } = useForm()
|
|
|
|
const deleteLocation = async (id: string) => {
|
|
await LocationsService.deleteLocation({ id: id })
|
|
}
|
|
|
|
const mutation = useMutation({
|
|
mutationFn: deleteLocation,
|
|
onSuccess: () => {
|
|
showSuccessToast("The location was deleted successfully")
|
|
setIsOpen(false)
|
|
onSuccess()
|
|
},
|
|
onError: handleError.bind(showErrorToast),
|
|
onSettled: () => {
|
|
queryClient.invalidateQueries()
|
|
},
|
|
})
|
|
|
|
const onSubmit = async () => {
|
|
mutation.mutate(id)
|
|
}
|
|
|
|
return (
|
|
<Dialog open={isOpen} onOpenChange={setIsOpen}>
|
|
<DropdownMenuItem
|
|
variant="destructive"
|
|
onSelect={(e) => e.preventDefault()}
|
|
onClick={() => setIsOpen(true)}
|
|
>
|
|
<Trash2 />
|
|
Delete Location
|
|
</DropdownMenuItem>
|
|
<DialogContent className="sm:max-w-md">
|
|
<form onSubmit={handleSubmit(onSubmit)}>
|
|
<DialogHeader>
|
|
<DialogTitle>Delete Location</DialogTitle>
|
|
<DialogDescription>
|
|
This location will be permanently deleted. Are you sure? You will
|
|
not be able to undo this action.
|
|
</DialogDescription>
|
|
</DialogHeader>
|
|
|
|
<DialogFooter className="mt-4">
|
|
<DialogClose asChild>
|
|
<Button variant="outline" disabled={mutation.isPending}>
|
|
Cancel
|
|
</Button>
|
|
</DialogClose>
|
|
<LoadingButton
|
|
variant="destructive"
|
|
type="submit"
|
|
loading={mutation.isPending}
|
|
>
|
|
Delete
|
|
</LoadingButton>
|
|
</DialogFooter>
|
|
</form>
|
|
</DialogContent>
|
|
</Dialog>
|
|
)
|
|
}
|
|
|
|
export default DeleteLocation
|