1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
|
"use client";
import { useEffect } from "react";
import { useForm } from "react-hook-form";
import {
Dialog,
DialogContent,
DialogDescription,
DialogFooter,
DialogHeader,
DialogTitle,
} from "@/components/ui/dialog";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
import { Textarea } from "@/components/ui/textarea";
import { Switch } from "@/components/ui/switch";
import type { MenuTreeNode, UpdateNodeInput } from "../types";
interface EditNodeDialogProps {
open: boolean;
onOpenChange: (open: boolean) => void;
node: MenuTreeNode | null;
onSave: (nodeId: number, data: UpdateNodeInput) => Promise<void>;
}
interface FormData {
titleKo: string;
titleEn: string;
descriptionKo: string;
descriptionEn: string;
scrId: string;
isActive: boolean;
}
export function EditNodeDialog({
open,
onOpenChange,
node,
onSave,
}: EditNodeDialogProps) {
const {
register,
handleSubmit,
reset,
setValue,
watch,
formState: { isSubmitting },
} = useForm<FormData>({
defaultValues: {
titleKo: "",
titleEn: "",
descriptionKo: "",
descriptionEn: "",
scrId: "",
isActive: true,
},
});
const isActive = watch("isActive");
useEffect(() => {
if (node) {
reset({
titleKo: node.titleKo,
titleEn: node.titleEn || "",
descriptionKo: node.descriptionKo || "",
descriptionEn: node.descriptionEn || "",
scrId: node.scrId || "",
isActive: node.isActive,
});
}
}, [node, reset]);
const onSubmit = async (data: FormData) => {
if (!node) return;
await onSave(node.id, {
titleKo: data.titleKo,
titleEn: data.titleEn || undefined,
descriptionKo: data.descriptionKo || undefined,
descriptionEn: data.descriptionEn || undefined,
scrId: data.scrId || undefined,
isActive: data.isActive,
});
onOpenChange(false);
};
const getTypeLabel = () => {
switch (node?.nodeType) {
case "menu_group":
return "Menu Group";
case "group":
return "Group";
case "menu":
return "Menu";
case "additional":
return "Additional Menu";
default:
return "Node";
}
};
const showMenuFields = node?.nodeType === "menu" || node?.nodeType === "additional";
return (
<Dialog open={open} onOpenChange={onOpenChange}>
<DialogContent className="max-w-lg">
<DialogHeader>
<DialogTitle>Edit {getTypeLabel()}</DialogTitle>
<DialogDescription>
{node?.menuPath && (
<span className="text-xs text-muted-foreground">{node.menuPath}</span>
)}
</DialogDescription>
</DialogHeader>
<form onSubmit={handleSubmit(onSubmit)} className="space-y-4">
<div className="grid gap-4">
{/* Korean Name */}
<div className="grid gap-2">
<Label htmlFor="titleKo">Name (Korean) *</Label>
<Input
id="titleKo"
{...register("titleKo", { required: true })}
placeholder="Project List"
/>
</div>
{/* English Name */}
<div className="grid gap-2">
<Label htmlFor="titleEn">Name (English)</Label>
<Input
id="titleEn"
{...register("titleEn")}
placeholder="Project List"
/>
</div>
{/* Korean Description */}
{showMenuFields && (
<div className="grid gap-2">
<Label htmlFor="descriptionKo">Description (Korean)</Label>
<Textarea
id="descriptionKo"
{...register("descriptionKo")}
placeholder="Project list from MDG (C)"
rows={2}
/>
</div>
)}
{/* English Description */}
{showMenuFields && (
<div className="grid gap-2">
<Label htmlFor="descriptionEn">Description (English)</Label>
<Textarea
id="descriptionEn"
{...register("descriptionEn")}
placeholder="Project list from MDG (C)"
rows={2}
/>
</div>
)}
{/* Permission SCR_ID */}
{showMenuFields && (
<div className="grid gap-2">
<Label htmlFor="scrId">Permission SCR_ID (EVCP only)</Label>
<Input
id="scrId"
{...register("scrId")}
placeholder="SCR_001"
/>
<p className="text-xs text-muted-foreground">
Linked with Oracle DB SCR_ID. If empty, auto-matched by URL.
</p>
</div>
)}
{/* Active Status */}
<div className="flex items-center justify-between">
<div className="space-y-0.5">
<Label htmlFor="isActive">Show in Menu</Label>
<p className="text-xs text-muted-foreground">
When disabled, hidden from the navigation menu.
</p>
</div>
<Switch
id="isActive"
checked={isActive}
onCheckedChange={(checked) => setValue("isActive", checked)}
/>
</div>
</div>
<DialogFooter>
<Button
type="button"
variant="outline"
onClick={() => onOpenChange(false)}
>
Cancel
</Button>
<Button type="submit" disabled={isSubmitting}>
{isSubmitting ? "Saving..." : "Save"}
</Button>
</DialogFooter>
</form>
</DialogContent>
</Dialog>
);
}
|