summaryrefslogtreecommitdiff
path: root/lib/gtc-contract/gtc-clauses/table/update-gtc-clause-sheet.tsx
blob: aae0396b960f7b408e578306d0b3af2e3a5f0322 (plain)
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
"use client"

import * as React from "react"
import { zodResolver } from "@hookform/resolvers/zod"
import { Loader, Info } from "lucide-react"
import { useForm } from "react-hook-form"
import { toast } from "sonner"

import {
  Sheet,
  SheetClose,
  SheetContent,
  SheetDescription,
  SheetFooter,
  SheetHeader,
  SheetTitle,
} from "@/components/ui/sheet"
import { Button } from "@/components/ui/button"
import { Input } from "@/components/ui/input"
import { Textarea } from "@/components/ui/textarea"
import { Badge } from "@/components/ui/badge"
import {
  Form,
  FormControl,
  FormField,
  FormItem,
  FormLabel,
  FormMessage,
  FormDescription,
} from "@/components/ui/form"

import { type GtcClauseTreeView } from "@/db/schema/gtc"
import { updateGtcClauseSchema, type UpdateGtcClauseSchema } from "@/lib/gtc-contract/gtc-clauses/validations"
import { updateGtcClause } from "@/lib/gtc-contract/gtc-clauses/service"
import { useSession } from "next-auth/react"
import { MarkdownImageEditor } from "./markdown-image-editor"

interface ClauseImage {
  id: string
  url: string
  fileName: string
  size: number
  savedName?: string
  mimeType?: string
  width?: number
  height?: number
  hash?: string
}


export interface UpdateGtcClauseSheetProps
  extends React.ComponentPropsWithRef<typeof Sheet> {
  gtcClause: GtcClauseTreeView | null
  documentId: number
}

export function UpdateGtcClauseSheet({ gtcClause, documentId, ...props }: UpdateGtcClauseSheetProps) {
  const [isUpdatePending, startUpdateTransition] = React.useTransition()
  const { data: session } = useSession()
  const [images, setImages] = React.useState<ClauseImage[]>([])
  const [rawFiles, setRawFiles] = React.useState<File[]>([])
  const [removedImageIds, setRemovedImageIds] = React.useState<string[]>([])


  const currentUserId = React.useMemo(() => {
    return session?.user?.id ? Number(session.user.id) : null
  }, [session])
  
  const form = useForm<UpdateGtcClauseSchema>({
    resolver: zodResolver(updateGtcClauseSchema),
    defaultValues: {
      itemNumber: "",
      category: "",
      subtitle: "",
      content: "",
      // numberVariableName: "",
      // subtitleVariableName: "",
      // contentVariableName: "",
      editReason: "",
      isActive: true,
    },
  })

  React.useEffect(() => {
    if (gtcClause) {
      form.reset({
        itemNumber: gtcClause.itemNumber,
        category: gtcClause.category || "",
        subtitle: gtcClause.subtitle,
        content: gtcClause.content || "",
        editReason: "",
        isActive: gtcClause.isActive,
      })
      // ✅ 초기 이미지 세팅
      setImages((gtcClause.images as any[]) || [])
      setRawFiles([])
      setRemovedImageIds([])
    }
  }, [gtcClause, form])

  

  async function onSubmit(input: UpdateGtcClauseSchema) {
    startUpdateTransition(async () => {
      if (!gtcClause || !currentUserId) {
        toast.error("조항 정보를 찾을 수 없습니다.")
        return
      }

      try {
        const result = await updateGtcClause(gtcClause.id, {
          ...input,
          images: images, // 이미지 배열 추가
          updatedById: currentUserId,
        })

        if (result.error) {
          toast.error(result.error)
          return
        }

        form.reset()
        props.onOpenChange?.(false)
        toast.success("GTC 조항이 업데이트되었습니다!")
      } catch (error) {
        toast.error("조항 업데이트 중 오류가 발생했습니다.")
      }
    })
  }

  const getDepthBadge = (depth: number) => {
    const levels = ["1단계", "2단계", "3단계", "4단계", "5단계+"]
    return levels[depth] || levels[4]
  }

  const handleContentImageChange = (content: string, newImages: ClauseImage[]) => {
    form.setValue("content", content)
    setImages(newImages)
  }


  return (
    <Sheet {...props}>
      <SheetContent className="flex flex-col sm:max-w-xl h-full">
        <SheetHeader className="text-left flex-shrink-0">
          <SheetTitle>GTC 조항 수정</SheetTitle>
          <SheetDescription>
            조항 정보를 수정하고 변경사항을 저장하세요
          </SheetDescription>
        </SheetHeader>

        {/* 조항 정보 표시 */}
        <div className="space-y-2 p-3 bg-muted/50 rounded-lg flex-shrink-0">
          <div className="text-sm font-medium">현재 조항 정보</div>
          <div className="text-xs text-muted-foreground space-y-1">
            <div className="flex items-center gap-2">
              <span>위치:</span>
              <Badge variant="outline">
                {getDepthBadge(gtcClause?.depth || 0)}
              </Badge>
              {gtcClause?.fullPath && (
                <span className="font-mono">{gtcClause.fullPath}</span>
              )}
            </div>
            {gtcClause?.parentItemNumber && (
              <div>부모 조항: {gtcClause.parentItemNumber} - {gtcClause.parentSubtitle}</div>
            )}
            {gtcClause?.childrenCount > 0 && (
              <div>하위 조항: {gtcClause.childrenCount}개</div>
            )}
          </div>
        </div>

        <Form {...form}>
          <form
            onSubmit={form.handleSubmit(onSubmit)}
            className="flex flex-col flex-1 min-h-0"
          >
            {/* 스크롤 가능한 폼 내용 영역 */}
            <div className="flex-1 overflow-y-auto px-1">
              <div className="space-y-4 py-2">
                {/* 채번 */}
                <FormField
                  control={form.control}
                  name="itemNumber"
                  render={({ field }) => (
                    <FormItem>
                      <FormLabel>채번 *</FormLabel>
                      <FormControl>
                        <Input 
                          placeholder="예: 1, 1.1, 2.3.1, A, B-1 등"
                          {...field} 
                        />
                      </FormControl>
                      <FormDescription>
                        조항의 번호입니다. 영문, 숫자, 점(.), 하이픈(-), 언더스코어(_)를 사용할 수 있습니다.
                      </FormDescription>
                      <FormMessage />
                    </FormItem>
                  )}
                />

                {/* 분류 */}
                <FormField
                  control={form.control}
                  name="category"
                  render={({ field }) => (
                    <FormItem>
                      <FormLabel>분류</FormLabel>
                      <FormControl>
                        <Input 
                          placeholder="예: 일반조항, 특수조항, 기술조항 등"
                          {...field} 
                        />
                      </FormControl>
                      <FormMessage />
                    </FormItem>
                  )}
                />

                {/* 소제목 */}
                <FormField
                  control={form.control}
                  name="subtitle"
                  render={({ field }) => (
                    <FormItem>
                      <FormLabel>소제목 *</FormLabel>
                      <FormControl>
                        <Input 
                          placeholder="예: PREAMBLE, DEFINITIONS, GENERAL CONDITIONS 등"
                          {...field} 
                        />
                      </FormControl>
                      <FormMessage />
                    </FormItem>
                  )}
                />

                {/* 상세항목 */}
                <FormField
                  control={form.control}
                  name="content"
                  render={({ field }) => (
                    <FormItem>
                      <FormLabel>상세항목 (선택사항)</FormLabel>
                      <FormControl>
                        <MarkdownImageEditor
                          content={field.value || ""}
                          images={images}
                          onChange={handleContentImageChange}
                          placeholder="조항의 상세 내용을 입력하세요... 이미지를 추가하려면 '이미지 추가' 버튼을 클릭하세요."
                          rows={8}
                        />
                      </FormControl>
                      <FormDescription>
                        조항의 실제 내용입니다. 텍스트와 이미지를 조합할 수 있으며, 하위 조항들을 그룹핑하는 제목용 조항인 경우 비워둘 수 있습니다.
                      </FormDescription>
                      <FormMessage />
                    </FormItem>
                  )}
                />

                {/* PDFTron 변수명 섹션 */}
                {/* <div className="space-y-3 p-3 border rounded-lg">
                  <div className="flex items-center gap-2">
                    <Info className="h-4 w-4 text-muted-foreground" />
                    <span className="text-sm font-medium">PDFTron 변수명 설정</span>
                    {gtcClause?.hasAllVariableNames && (
                      <Badge variant="default" className="text-xs">설정됨</Badge>
                    )}
                  </div>
                  
                  <div className="grid grid-cols-1 gap-3">
                    <FormField
                      control={form.control}
                      name="numberVariableName"
                      render={({ field }) => (
                        <FormItem>
                          <FormLabel>채번 변수명</FormLabel>
                          <FormControl>
                            <Input {...field} />
                          </FormControl>
                          <FormMessage />
                        </FormItem>
                      )}
                    />

                    <FormField
                      control={form.control}
                      name="subtitleVariableName"
                      render={({ field }) => (
                        <FormItem>
                          <FormLabel>소제목 변수명</FormLabel>
                          <FormControl>
                            <Input {...field} />
                          </FormControl>
                          <FormMessage />
                        </FormItem>
                      )}
                    />

                    <FormField
                      control={form.control}
                      name="contentVariableName"
                      render={({ field }) => (
                        <FormItem>
                          <FormLabel>상세항목 변수명</FormLabel>
                          <FormControl>
                            <Input {...field} />
                          </FormControl>
                          <FormMessage />
                        </FormItem>
                      )}
                    />
                  </div>
                </div> */}

                {/* 편집 사유 */}
                <FormField
                  control={form.control}
                  name="editReason"
                  render={({ field }) => (
                    <FormItem>
                      <FormLabel>편집 사유 (권장)</FormLabel>
                      <FormControl>
                        <Textarea
                          placeholder="수정 사유를 입력하세요..."
                          {...field}
                          rows={3}
                        />
                      </FormControl>
                      <FormMessage />
                    </FormItem>
                  )}
                />
              </div>
            </div>

            <SheetFooter className="gap-2 pt-2 sm:space-x-0">
              <SheetClose asChild>
                <Button type="button" variant="outline">
                  Cancel
                </Button>
              </SheetClose>

              <Button type="submit" disabled={isUpdatePending}>
                {isUpdatePending && (
                  <Loader
                    className="mr-2 size-4 animate-spin"
                    aria-hidden="true"
                  />
                )}
                Save
              </Button>
            </SheetFooter>
          </form>
        </Form>
      </SheetContent>
    </Sheet>
  )
}