mirror of
https://github.com/SkalaraAI/skbeta.git
synced 2025-04-09 15:00:18 -04:00
147 lines
3.8 KiB
TypeScript
147 lines
3.8 KiB
TypeScript
"use client";
|
|
import { useToast } from "@/components/ui/use-toast";
|
|
import { useRouter } from "next/navigation";
|
|
|
|
import * as z from "zod";
|
|
import { zodResolver } from "@hookform/resolvers/zod";
|
|
import { useForm } from "react-hook-form";
|
|
|
|
import {
|
|
Form,
|
|
FormControl,
|
|
FormDescription,
|
|
FormField,
|
|
FormItem,
|
|
FormLabel,
|
|
FormMessage,
|
|
} from "@/components/ui/form";
|
|
import {
|
|
Dialog,
|
|
DialogClose,
|
|
DialogContent,
|
|
DialogDescription,
|
|
DialogFooter,
|
|
DialogHeader,
|
|
DialogTitle,
|
|
DialogTrigger,
|
|
} from "@/components/ui/dialog";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Input } from "@/components/ui/input";
|
|
import { PlusIcon } from "@radix-ui/react-icons";
|
|
|
|
const createWorkspaceSchema = z.object({
|
|
name: z.string().min(2, {
|
|
message: "Workspace name must be at least 2 characters.",
|
|
}),
|
|
description: z
|
|
.string()
|
|
.min(2, {
|
|
message: "Workspace description must be at least 2 characters.",
|
|
})
|
|
.optional(),
|
|
});
|
|
|
|
export function CreateWorkspace() {
|
|
const { toast } = useToast();
|
|
const router = useRouter();
|
|
|
|
const form = useForm<z.infer<typeof createWorkspaceSchema>>({
|
|
resolver: zodResolver(createWorkspaceSchema),
|
|
defaultValues: {
|
|
name: "",
|
|
description: "",
|
|
},
|
|
});
|
|
|
|
async function createWorkspace(
|
|
values: z.infer<typeof createWorkspaceSchema>
|
|
) {
|
|
try {
|
|
const res = await fetch("/w", {
|
|
method: "POST",
|
|
body: JSON.stringify(values),
|
|
});
|
|
|
|
if (!res.ok) {
|
|
const error = await res.json();
|
|
throw new Error(error.message);
|
|
}
|
|
|
|
const { workspace } = await res.json();
|
|
|
|
toast({
|
|
variant: "default",
|
|
title: "Workspace created successfully!",
|
|
description: `Workspace ${workspace.name} was created successfully.`,
|
|
});
|
|
router.push(`/w/${workspace.id}`);
|
|
router.refresh();
|
|
} catch (err: any) {
|
|
console.error(err);
|
|
toast({
|
|
variant: "destructive",
|
|
title: "Uh oh! There was an error creating the workspace.",
|
|
description: err.error,
|
|
});
|
|
}
|
|
}
|
|
|
|
return (
|
|
<Dialog>
|
|
<DialogTrigger asChild>
|
|
<Button variant="outline" size="icon">
|
|
<PlusIcon className="h-4 w-4" />
|
|
{/* Create Workspace */}
|
|
</Button>
|
|
</DialogTrigger>
|
|
<DialogContent className="sm:max-w-[425px]">
|
|
<DialogHeader>
|
|
<DialogTitle>Create Workspace</DialogTitle>
|
|
</DialogHeader>
|
|
<Form {...form}>
|
|
<form
|
|
onSubmit={form.handleSubmit(createWorkspace)}
|
|
className="space-y-4"
|
|
>
|
|
<FormField
|
|
control={form.control}
|
|
name="name"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Name</FormLabel>
|
|
<FormControl>
|
|
<Input {...field} />
|
|
</FormControl>
|
|
<FormDescription>
|
|
This is your workspace name.
|
|
</FormDescription>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<FormField
|
|
control={form.control}
|
|
name="description"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Description</FormLabel>
|
|
<FormControl>
|
|
<Input {...field} />
|
|
</FormControl>
|
|
<FormDescription>
|
|
This is your workspace description.
|
|
</FormDescription>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<DialogClose asChild>
|
|
<Button type="submit">Submit</Button>
|
|
</DialogClose>
|
|
</form>
|
|
</Form>
|
|
</DialogContent>
|
|
</Dialog>
|
|
);
|
|
}
|