103 lines
2.9 KiB
TypeScript
103 lines
2.9 KiB
TypeScript
"use client"
|
|
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";
|
|
import { Form, FormControl, FormField, FormItem, FormMessage } from "@/components/ui/form";
|
|
|
|
export default function InputCell(props: CellContext<any, any>) {
|
|
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 formSchema = props.column.columnDef.meta.formSchema.pick({ [column]: true })
|
|
|
|
const form = useForm<z.infer<typeof formSchema>>({
|
|
resolver: zodResolver(formSchema),
|
|
defaultValues: {
|
|
[column]: props.cell.getValue()
|
|
},
|
|
})
|
|
|
|
const type = typeof props.cell.getValue()
|
|
console.log(type)
|
|
|
|
|
|
function onSubmit(value: z.infer<typeof formSchema>) {
|
|
toast({
|
|
title: "You submitted the following values:",
|
|
description: (
|
|
<pre className="mt-2 w-[340px] rounded-md bg-slate-950 p-4">
|
|
<code className="text-white">{JSON.stringify(value, null, 2)}</code>
|
|
</pre>
|
|
),
|
|
})
|
|
updateField({
|
|
id,
|
|
table,
|
|
[type]: value[column],
|
|
column,
|
|
pathname
|
|
})
|
|
}
|
|
|
|
function onErrors(errors) {
|
|
toast({
|
|
title: "You have errors",
|
|
description: (
|
|
<pre className="mt-2 w-[340px] rounded-md bg-slate-950 p-4">
|
|
<code className="text-white">{JSON.stringify(errors, null, 2)}</code>
|
|
</pre>
|
|
),
|
|
})
|
|
console.log(JSON.stringify(errors))
|
|
}
|
|
return (
|
|
<div
|
|
onDoubleClick={() => setIsActive(prev => !prev)}
|
|
className="w-full h-fit flex items-center justify-center"
|
|
tabIndex={0}
|
|
onKeyDown={e => {
|
|
if (e.code === "Space" && !isActive) {
|
|
setIsActive(true)
|
|
}
|
|
}}
|
|
>
|
|
{isActive ?
|
|
<Form {...form}>
|
|
<form onSubmit={form.handleSubmit(onSubmit, onErrors)}
|
|
>
|
|
<FormField
|
|
control={form.control}
|
|
name={column}
|
|
render={({ field }) => (
|
|
<FormItem
|
|
onBlur={() => setIsActive(false)}
|
|
>
|
|
<FormControl
|
|
>
|
|
<Input
|
|
type={type}
|
|
autoFocus={true}
|
|
step={props.column.columnDef.meta.step}
|
|
{...field}
|
|
/>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
</form>
|
|
</Form>
|
|
: <p>{props.cell.getValue()}</p>
|
|
}
|
|
</div >
|
|
)
|
|
}
|