99 lines
2.9 KiB
TypeScript
99 lines
2.9 KiB
TypeScript
"use client";
|
|
import { Loading } from "@/components/dashboard/loading";
|
|
import { Button } from "@/components/ui/button";
|
|
import {
|
|
Card,
|
|
CardContent,
|
|
CardDescription,
|
|
CardFooter,
|
|
CardHeader,
|
|
CardTitle,
|
|
} from "@/components/ui/card";
|
|
import { FormField } from "@/components/ui/form";
|
|
import { Input } from "@/components/ui/input";
|
|
import { toast } from "@/components/ui/toaster";
|
|
// import { trpc } from "@/lib/trpc/client";
|
|
import { zodResolver } from "@hookform/resolvers/zod";
|
|
import { useRouter } from "next/navigation";
|
|
import { useForm } from "react-hook-form";
|
|
import { z } from "zod";
|
|
const formSchema = z.object({
|
|
name: z.string(),
|
|
apiId: z.string(),
|
|
workspaceId: z.string(),
|
|
});
|
|
|
|
type Props = {
|
|
api: {
|
|
id: string;
|
|
workspaceId: string;
|
|
name: string;
|
|
};
|
|
};
|
|
|
|
export const UpdateApiName: React.FC<Props> = ({ api }) => {
|
|
const router = useRouter();
|
|
const form = useForm<z.infer<typeof formSchema>>({
|
|
// resolver: zodResolver(formSchema),
|
|
defaultValues: {
|
|
name: api.name,
|
|
apiId: api.id,
|
|
workspaceId: api.workspaceId,
|
|
},
|
|
});
|
|
|
|
// const updateName = trpc.api.updateName.useMutation({
|
|
// onSuccess() {
|
|
// toast.success("Your API name has been renamed!");
|
|
// router.refresh();
|
|
// },
|
|
// onError(err) {
|
|
// console.error(err);
|
|
// toast.error(err.message);
|
|
// },
|
|
// });
|
|
async function onSubmit(values: z.infer<typeof formSchema>) {
|
|
if (values.name === api.name || !values.name) {
|
|
return toast.error("Please provide a valid name before saving.");
|
|
}
|
|
// updateName.mutateAsync(values);
|
|
}
|
|
|
|
return (
|
|
<form onSubmit={form.handleSubmit(onSubmit)}>
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle>Api Name</CardTitle>
|
|
<CardDescription>
|
|
Api names are not customer facing. Choose a name that makes it easy to recognize for
|
|
you.
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<div className="flex flex-col space-y-2">
|
|
<input type="hidden" name="workspaceId" value={api.workspaceId} />
|
|
<input type="hidden" name="apiId" value={api.id} />
|
|
<label className="hidden sr-only">Name</label>
|
|
<FormField
|
|
control={form.control}
|
|
name="name"
|
|
render={({ field }) => <Input className="max-w-sm" {...field} autoComplete="off" />}
|
|
/>
|
|
</div>
|
|
</CardContent>
|
|
<CardFooter className="justify-end">
|
|
<Button
|
|
// variant={
|
|
// form.formState.isValid && !form.formState.isSubmitting ? "primary" : "disabled"
|
|
// }
|
|
disabled={!form.formState.isValid || form.formState.isSubmitting}
|
|
type="submit"
|
|
>
|
|
{form.formState.isSubmitting ? <Loading /> : "Save"}
|
|
</Button>
|
|
</CardFooter>
|
|
</Card>
|
|
</form>
|
|
);
|
|
};
|