subman-nextjs/src/app/ui/tables/inputs/numberInput.tsx

100 lines
2.8 KiB
TypeScript
Raw Normal View History

"use client"
2024-06-30 21:22:46 +00:00
import { Input } from "@/components/ui/input";
import { CellContext } from "@tanstack/react-table";
import { updateField } from "app/lib/update";
import { useState } from "react";
import { z } from "zod";
import { useForm } from "react-hook-form";
import { zodResolver } from "@hookform/resolvers/zod";
import { toast } from "@/components/ui/use-toast";
2024-07-02 14:59:55 +00:00
import { Form, FormControl, FormField, FormItem, FormMessage } from "@/components/ui/form";
2024-06-30 21:22:46 +00:00
export default function NumberInputCell(props: CellContext<any, any>) {
2024-06-30 21:22:46 +00:00
const [isActive, setIsActive] = useState(false)
const table = props.table.options.meta.tableName
const id = props.row.original.id
const column = props.column.id
const pathname = props.table.options.meta.pathname
const value = props.cell.getValue()
2024-07-02 14:59:55 +00:00
const formSchema = props.column.columnDef.meta.formSchema.pick({ [column]: true })
const form = useForm<z.infer<typeof formSchema>>({
resolver: zodResolver(formSchema),
defaultValues: {
[column]: props.cell.getValue()
2024-07-02 14:59:55 +00:00
},
2024-07-02 20:52:10 +00:00
})
2024-09-20 13:19:31 +00:00
async function onSubmit(value: z.infer<typeof formSchema>) {
try {
const res = await updateField({
id,
table,
datum: value[column],
column,
pathname
})
if (res === undefined) throw new Error("something went wrong")
toast({ title: "Field updated successfully." })
} catch (error) {
console.error(error)
toast({ title: "Something went wrong." })
}
setIsActive(false)
2024-06-30 21:22:46 +00:00
}
2024-09-20 13:19:31 +00:00
function onErrors(errors: Error) {
toast({
title: "You have errors",
2024-09-20 13:19:31 +00:00
description: errors.message,
})
console.log(JSON.stringify(errors))
}
2024-06-30 21:22:46 +00:00
return (
2024-07-02 14:59:55 +00:00
<div
2024-09-20 13:19:31 +00:00
onDoubleClick={() => setIsActive(true)}
2024-07-02 14:59:55 +00:00
className="w-full h-fit flex items-center justify-center"
tabIndex={0}
onKeyDown={e => {
2024-07-02 21:01:26 +00:00
if (e.code === "Enter" && !isActive) {
2024-07-02 20:52:10 +00:00
e.preventDefault()
2024-07-02 14:59:55 +00:00
setIsActive(true)
}
}}
>
2024-06-30 21:22:46 +00:00
{isActive ?
<Form {...form}>
<form onSubmit={form.handleSubmit(onSubmit, onErrors)}
>
<FormField
control={form.control}
name={column}
render={({ field }) => (
2024-07-02 14:59:55 +00:00
<FormItem
onBlur={() => setIsActive(false)}
>
<FormControl
>
<Input
2024-07-02 21:01:26 +00:00
className="w-24"
type="number"
autoFocus={true}
2024-07-02 20:52:10 +00:00
step={props.column.columnDef.meta?.step}
{...field}
/>
</FormControl>
2024-07-02 14:59:55 +00:00
<FormMessage />
</FormItem>
)}
/>
2024-07-02 20:52:10 +00:00
</form>
</Form>
: <p>{props.cell.getValue()}</p>
2024-06-30 21:22:46 +00:00
}
2024-07-02 14:59:55 +00:00
</div >
2024-06-30 21:22:46 +00:00
)
}