feat: edit configuration page
This commit is contained in:
parent
3081b2fed7
commit
df83c049c9
|
@ -1,7 +1,9 @@
|
|||
"use client"
|
||||
|
||||
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
||||
import { ScrollArea, ScrollBar } from "@/components/ui/scroll-area";
|
||||
import { Separator } from "@/components/ui/separator";
|
||||
import AddConfigurationForm from "@/components/add-configuration-form";
|
||||
import ConfigurationForm from "@/components/configuration-form";
|
||||
import Breadcrumb from "@/components/breadcrumb";
|
||||
|
||||
const breadcrumbItems = [
|
||||
|
@ -10,7 +12,7 @@ const breadcrumbItems = [
|
|||
{ title: "Add" },
|
||||
];
|
||||
|
||||
export default function SettingsDisplayPage() {
|
||||
export default function Page() {
|
||||
return (
|
||||
<ScrollArea className="h-[calc(100vh-53px)]">
|
||||
<div className="flex-1 space-y-4 p-4 md:p-8 pt-6">
|
||||
|
@ -25,7 +27,11 @@ export default function SettingsDisplayPage() {
|
|||
</CardHeader>
|
||||
|
||||
<CardContent>
|
||||
<AddConfigurationForm />
|
||||
<ConfigurationForm
|
||||
onSubmit={() => {}}
|
||||
btn1_content="Create"
|
||||
btn2_content="Create and add another"
|
||||
/>
|
||||
</CardContent>
|
||||
</Card>
|
||||
</div>
|
||||
|
|
|
@ -0,0 +1,47 @@
|
|||
"use client";
|
||||
|
||||
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
||||
import { ScrollArea, ScrollBar } from "@/components/ui/scroll-area";
|
||||
import { Separator } from "@/components/ui/separator";
|
||||
import ConfigurationForm from "@/components/configuration-form";
|
||||
import Breadcrumb from "@/components/breadcrumb";
|
||||
import { dummyConfigurations } from "@/constants/data";
|
||||
import { Configuration } from "@/types/configuration";
|
||||
|
||||
const breadcrumbItems = [
|
||||
{ title: "Dashboard", link: "/dashboard" },
|
||||
{ title: "Configurations", link: "/dashboard/configurations" },
|
||||
{ title: "Edit" },
|
||||
];
|
||||
|
||||
export default function Page({ params }: { params: { id: string } }) {
|
||||
const configuration = dummyConfigurations.find((configuration) => configuration.id === +params.id);
|
||||
|
||||
return (
|
||||
<ScrollArea className="h-[calc(100vh-53px)]">
|
||||
<div className="flex-1 space-y-4 p-4 md:p-8 pt-6">
|
||||
<Breadcrumb items={breadcrumbItems} />
|
||||
<div className="w-full h-full flex justify-center items-center">
|
||||
<Card className="max-w-[700px] w-full">
|
||||
<CardHeader>
|
||||
<CardTitle className="mb-4 font-bold text-xl">
|
||||
Edit Configuration
|
||||
</CardTitle>
|
||||
<Separator />
|
||||
</CardHeader>
|
||||
|
||||
<CardContent>
|
||||
<ConfigurationForm
|
||||
configuration={configuration as Configuration}
|
||||
onSubmit={() => {}}
|
||||
btn1_content="Save and continue editing"
|
||||
btn2_content="Save changes"
|
||||
/>
|
||||
</CardContent>
|
||||
</Card>
|
||||
</div>
|
||||
</div>
|
||||
<ScrollBar />
|
||||
</ScrollArea>
|
||||
);
|
||||
}
|
|
@ -15,6 +15,7 @@ import {
|
|||
} from "@/components/ui/form";
|
||||
import { toast } from "@/components/ui/use-toast";
|
||||
import { Input } from "./ui/input";
|
||||
import { Configuration } from "@/types/configuration";
|
||||
|
||||
const displayFormSchema = z.object({
|
||||
name: z.string().trim().min(1, "Name is required."),
|
||||
|
@ -23,16 +24,25 @@ const displayFormSchema = z.object({
|
|||
|
||||
type DisplayFormValues = z.infer<typeof displayFormSchema>;
|
||||
|
||||
// This can come from your database or API.
|
||||
const defaultValues: Partial<DisplayFormValues> = {
|
||||
name: "",
|
||||
value: "",
|
||||
type Props = {
|
||||
configuration?: Configuration;
|
||||
onSubmit: () => void;
|
||||
btn1_content: string;
|
||||
btn2_content: string;
|
||||
};
|
||||
|
||||
export default function AddConfigurationForm() {
|
||||
export default function ConfigurationForm({
|
||||
configuration,
|
||||
onSubmit: onFormSubmit,
|
||||
btn1_content,
|
||||
btn2_content,
|
||||
}: Props) {
|
||||
const form = useForm<DisplayFormValues>({
|
||||
resolver: zodResolver(displayFormSchema),
|
||||
defaultValues,
|
||||
defaultValues: {
|
||||
name: configuration?.name || "",
|
||||
value: configuration?.value || "",
|
||||
},
|
||||
});
|
||||
|
||||
function onSubmit(data: DisplayFormValues) {
|
||||
|
@ -78,10 +88,10 @@ export default function AddConfigurationForm() {
|
|||
|
||||
<div className="flex items-center gap-4 flex-col sm:flex-row">
|
||||
<Button className="w-full" size="lg">
|
||||
Create
|
||||
{btn1_content}
|
||||
</Button>
|
||||
<Button variant="secondary" className="w-full" size="lg">
|
||||
Create and add another
|
||||
{btn2_content}
|
||||
</Button>
|
||||
</div>
|
||||
</form>
|
|
@ -12,6 +12,7 @@ import { useToast } from "@/components/ui/use-toast";
|
|||
import { Configuration } from "@/types/configuration";
|
||||
|
||||
import { BookCheck, Edit, MoreHorizontal, Trash } from "lucide-react";
|
||||
import Link from "next/link";
|
||||
import { useRouter } from "next/navigation";
|
||||
import { useState } from "react";
|
||||
|
||||
|
@ -47,13 +48,13 @@ export const CellAction: React.FC<CellActionProps> = ({ data }) => {
|
|||
<DropdownMenuContent align="end">
|
||||
<DropdownMenuLabel>Actions</DropdownMenuLabel>
|
||||
|
||||
<DropdownMenuItem
|
||||
className="cursor-pointer"
|
||||
// onClick={() =>
|
||||
// router.push(`#`)
|
||||
// }
|
||||
<DropdownMenuItem className="cursor-pointer p-0">
|
||||
<Link
|
||||
href={`/dashboard/configurations/edit/${data.id}`}
|
||||
className="flex items-center gap-2 px-2 py-1.5 w-full"
|
||||
>
|
||||
<Edit className="mr-2 h-4 w-4" /> Update
|
||||
<Edit className="h-4 w-4" /> Edit
|
||||
</Link>
|
||||
</DropdownMenuItem>
|
||||
<DropdownMenuItem
|
||||
className="cursor-pointer"
|
||||
|
|
|
@ -108,31 +108,31 @@ export const dummyConfigurations: Configuration[] = [
|
|||
{
|
||||
id: 1,
|
||||
name: "process_limit",
|
||||
value: 20,
|
||||
value: "20",
|
||||
created_at: new Date().toISOString(),
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
name: "process_timeout",
|
||||
value: 600,
|
||||
value: "600",
|
||||
created_at: new Date().toISOString(),
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
name: "number_of_courses_to_create",
|
||||
value: 5,
|
||||
value: "5",
|
||||
created_at: new Date().toISOString(),
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
name: "max_retries",
|
||||
value: 2,
|
||||
value: "2",
|
||||
created_at: new Date().toISOString(),
|
||||
},
|
||||
{
|
||||
id: 5,
|
||||
name: "max_token_per_evaluation",
|
||||
value: 1000000,
|
||||
value: "1000000",
|
||||
created_at: new Date().toISOString(),
|
||||
},
|
||||
];
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
export interface Configuration {
|
||||
id: number;
|
||||
name: string;
|
||||
value: number;
|
||||
value: string;
|
||||
created_at: string;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue