pythonasyncioapiasyncfastapiframeworkjsonjson-schemaopenapiopenapi3pydanticpython-typespython3redocreststarletteswaggerswagger-uiuvicornweb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
150 lines
3.9 KiB
150 lines
3.9 KiB
import {
|
|
Button,
|
|
ButtonGroup,
|
|
DialogActionTrigger,
|
|
Input,
|
|
Text,
|
|
VStack,
|
|
} from "@chakra-ui/react"
|
|
import { useMutation, useQueryClient } from "@tanstack/react-query"
|
|
import { useState } from "react"
|
|
import { type SubmitHandler, useForm } from "react-hook-form"
|
|
import { FaExchangeAlt } from "react-icons/fa"
|
|
import { type ApiError, type ItemPublic, ItemsService } from "../../client"
|
|
import useCustomToast from "../../hooks/useCustomToast"
|
|
import { handleError } from "../../utils"
|
|
import {
|
|
DialogBody,
|
|
DialogCloseTrigger,
|
|
DialogContent,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogRoot,
|
|
DialogTitle,
|
|
DialogTrigger,
|
|
} from "../ui/dialog"
|
|
import { Field } from "../ui/field"
|
|
|
|
interface EditItemProps {
|
|
item: ItemPublic
|
|
}
|
|
|
|
interface ItemUpdateForm {
|
|
title: string
|
|
description?: string
|
|
}
|
|
|
|
const EditItem = ({ item }: EditItemProps) => {
|
|
const [isOpen, setIsOpen] = useState(false)
|
|
const queryClient = useQueryClient()
|
|
const { showSuccessToast } = useCustomToast()
|
|
const {
|
|
register,
|
|
handleSubmit,
|
|
reset,
|
|
formState: { errors, isSubmitting },
|
|
} = useForm<ItemUpdateForm>({
|
|
mode: "onBlur",
|
|
criteriaMode: "all",
|
|
defaultValues: {
|
|
...item,
|
|
description: item.description ?? undefined,
|
|
},
|
|
})
|
|
|
|
const mutation = useMutation({
|
|
mutationFn: (data: ItemUpdateForm) =>
|
|
ItemsService.updateItem({ id: item.id, requestBody: data }),
|
|
onSuccess: () => {
|
|
showSuccessToast("Item updated successfully.")
|
|
reset()
|
|
setIsOpen(false)
|
|
},
|
|
onError: (err: ApiError) => {
|
|
handleError(err)
|
|
},
|
|
onSettled: () => {
|
|
queryClient.invalidateQueries({ queryKey: ["items"] })
|
|
},
|
|
})
|
|
|
|
const onSubmit: SubmitHandler<ItemUpdateForm> = async (data) => {
|
|
mutation.mutate(data)
|
|
}
|
|
|
|
return (
|
|
<DialogRoot
|
|
size={{ base: "xs", md: "md" }}
|
|
placement="center"
|
|
open={isOpen}
|
|
onOpenChange={({ open }) => setIsOpen(open)}
|
|
>
|
|
<DialogTrigger asChild>
|
|
<Button variant="ghost">
|
|
<FaExchangeAlt fontSize="16px" />
|
|
Edit Item
|
|
</Button>
|
|
</DialogTrigger>
|
|
<DialogContent>
|
|
<form onSubmit={handleSubmit(onSubmit)}>
|
|
<DialogHeader>
|
|
<DialogTitle>Edit Item</DialogTitle>
|
|
</DialogHeader>
|
|
<DialogBody>
|
|
<Text mb={4}>Update the item details below.</Text>
|
|
<VStack gap={4}>
|
|
<Field
|
|
required
|
|
invalid={!!errors.title}
|
|
errorText={errors.title?.message}
|
|
label="Title"
|
|
>
|
|
<Input
|
|
id="title"
|
|
{...register("title", {
|
|
required: "Title is required",
|
|
})}
|
|
placeholder="Title"
|
|
type="text"
|
|
/>
|
|
</Field>
|
|
|
|
<Field
|
|
invalid={!!errors.description}
|
|
errorText={errors.description?.message}
|
|
label="Description"
|
|
>
|
|
<Input
|
|
id="description"
|
|
{...register("description")}
|
|
placeholder="Description"
|
|
type="text"
|
|
/>
|
|
</Field>
|
|
</VStack>
|
|
</DialogBody>
|
|
|
|
<DialogFooter gap={2}>
|
|
<ButtonGroup>
|
|
<DialogActionTrigger asChild>
|
|
<Button
|
|
variant="subtle"
|
|
colorPalette="gray"
|
|
disabled={isSubmitting}
|
|
>
|
|
Cancel
|
|
</Button>
|
|
</DialogActionTrigger>
|
|
<Button variant="solid" type="submit" loading={isSubmitting}>
|
|
Save
|
|
</Button>
|
|
</ButtonGroup>
|
|
</DialogFooter>
|
|
</form>
|
|
<DialogCloseTrigger />
|
|
</DialogContent>
|
|
</DialogRoot>
|
|
)
|
|
}
|
|
|
|
export default EditItem
|
|
|