summaryrefslogtreecommitdiff
path: root/components/polices/policy-page-client.tsx
blob: 86bd31289145702983e8e68ae52e30b3f41721ad (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
'use client'

import { useState } from 'react'
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'
import { FileText, Shield, Clock, Calendar, User } from 'lucide-react'
import { PolicyManagementClient } from '@/components/polices/policy-management-client'
import { useTranslation } from '@/i18n/client'

interface Policy {
  id: number
  policyType: string
  locale: string
  version: string
  content: string
  effectiveDate: string
  isCurrent: boolean
  createdAt: string
}

interface PolicyPageClientProps {
  data: {
    currentPolicies: {
      ko: Record<string, Policy>
      en: Record<string, Policy>
    }
    allPolicies: {
      ko: {
        privacy_policy: Policy[]
        terms_of_service: Policy[]
      }
      en: {
        privacy_policy: Policy[]
        terms_of_service: Policy[]
      }
    }
    stats: {
      totalVersions: number
      koVersions: {
        privacy: number
        terms: number
      }
      enVersions: {
        privacy: number
        terms: number
      }
      lastUpdate: string | null
    }
  },
  lng: string
}

// 선택된 locale의 가장 최근 업데이트 날짜를 가져오는 함수
function getLastUpdateForLocale(data: PolicyPageClientProps['data'], locale: 'ko' | 'en'): string | null {
  const allPolicies = [
    ...(data.allPolicies[locale]?.privacy_policy || []),
    ...(data.allPolicies[locale]?.terms_of_service || [])
  ]
  
  if (allPolicies.length === 0) return null
  
  // 가장 최근 createdAt 날짜 찾기
  const sortedPolicies = allPolicies.sort((a, b) => 
    new Date(b.createdAt).getTime() - new Date(a.createdAt).getTime()
  )
  
  return sortedPolicies[0]?.createdAt || null
}

export function PolicyPageClient({ data, lng }: PolicyPageClientProps) {
  const { t } = useTranslation(lng, 'menu')

  const [selectedLocale, setSelectedLocale] = useState<'ko' | 'en'>('ko')

  // 선택된 locale에 맞는 데이터 필터링
  const filteredData = {
    currentPolicies: {
      privacy_policy: data.currentPolicies[selectedLocale]?.privacy_policy || null,
      terms_of_service: data.currentPolicies[selectedLocale]?.terms_of_service || null
    },
    allPolicies: {
      privacy_policy: data.allPolicies[selectedLocale]?.privacy_policy || [],
      terms_of_service: data.allPolicies[selectedLocale]?.terms_of_service || []
    },
    stats: {
      totalVersions: data.stats[`${selectedLocale}Versions`].privacy + data.stats[`${selectedLocale}Versions`].terms,
      privacyVersions: data.stats[`${selectedLocale}Versions`].privacy,
      termsVersions: data.stats[`${selectedLocale}Versions`].terms,
      lastUpdate: getLastUpdateForLocale(data, selectedLocale)
    }
  }

  return (
    <div className="container mx-auto py-6 space-y-6">
      {/* 헤더 */}
      <div className="flex items-center justify-between">
        <div>
          <h2 className="text-2xl font-bold tracking-tight">{t('menu.vendor_management.vendor_consent')}</h2>
          <p className="text-muted-foreground">
            {t('menu.vendor_management.vendor_consent_desc')}
          </p>
        </div>
        
        {/* 전역 locale 토글 */}
        <div className="flex items-center gap-3">
          <div className="flex bg-muted rounded-lg p-1">
            <button 
              className={`px-3 py-1 rounded-md text-sm font-medium transition-colors ${
                selectedLocale === 'ko' 
                  ? 'bg-background shadow-sm' 
                  : 'text-muted-foreground hover:text-foreground'
              }`}
              onClick={() => setSelectedLocale('ko')}
            >
              KO
            </button>
            <button 
              className={`px-3 py-1 rounded-md text-sm font-medium transition-colors ${
                selectedLocale === 'en' 
                  ? 'bg-background shadow-sm' 
                  : 'text-muted-foreground hover:text-foreground'
              }`}
              onClick={() => setSelectedLocale('en')}
            >
             EN
            </button>
          </div>
        </div>
      </div>

      {/* 통계 카드들 */}
      <div className="grid gap-4 md:grid-cols-4">
        <Card>
          <CardHeader className="flex flex-row items-center justify-between space-y-0 pb-2">
            <CardTitle className="text-sm font-medium">총 버전 수</CardTitle>
            <FileText className="h-4 w-4 text-muted-foreground" />
          </CardHeader>
          <CardContent>
            <div className="text-2xl font-bold">{filteredData.stats.totalVersions}</div>
            <p className="text-xs text-muted-foreground">
              전체 정책 버전
            </p>
          </CardContent>
        </Card>

        <Card>
          <CardHeader className="flex flex-row items-center justify-between space-y-0 pb-2">
            <CardTitle className="text-sm font-medium">개인정보 정책</CardTitle>
            <Shield className="h-4 w-4 text-muted-foreground" />
          </CardHeader>
          <CardContent>
            <div className="text-2xl font-bold">{filteredData.stats.privacyVersions}</div>
            <p className="text-xs text-muted-foreground">
              버전 수
            </p>
          </CardContent>
        </Card>

        <Card>
          <CardHeader className="flex flex-row items-center justify-between space-y-0 pb-2">
            <CardTitle className="text-sm font-medium">이용약관</CardTitle>
            <FileText className="h-4 w-4 text-muted-foreground" />
          </CardHeader>
          <CardContent>
            <div className="text-2xl font-bold">{filteredData.stats.termsVersions}</div>
            <p className="text-xs text-muted-foreground">
              버전 수
            </p>
          </CardContent>
        </Card>

        <Card>
          <CardHeader className="flex flex-row items-center justify-between space-y-0 pb-2">
            <CardTitle className="text-sm font-medium">최근 업데이트</CardTitle>
            <Clock className="h-4 w-4 text-muted-foreground" />
          </CardHeader>
          <CardContent>
            <div className="text-2xl font-bold">
              {filteredData.stats.lastUpdate 
                ? new Date(filteredData.stats.lastUpdate).toLocaleDateString('ko-KR').split('.').slice(1, 3).join('.')
                : 'N/A'
              }
            </div>
            <p className="text-xs text-muted-foreground">
              마지막 정책 변경
            </p>
          </CardContent>
        </Card>
      </div>

      {/* 현재 활성 정책들 */}
      <div className="grid gap-6 md:grid-cols-2">
        <Card>
          <CardHeader>
            <CardTitle className="flex items-center gap-2">
              <Shield className="h-5 w-5" />
              개인정보 처리방침
            </CardTitle>
            <CardDescription>
              {filteredData.currentPolicies.privacy_policy ? 
                `현재 활성 정책 • 시행일: ${new Date(filteredData.currentPolicies.privacy_policy.effectiveDate).toLocaleDateString('ko-KR')}` :
                `아직 등록된 ${selectedLocale === 'ko' ? '한국어' : '영어'} 개인정보 정책이 없습니다`
              }
            </CardDescription>
          </CardHeader>
          <CardContent>
            <div className="space-y-3">
              <div className="text-sm">
                <strong>정책 내용 미리보기:</strong>
              </div>
              <div className="bg-muted/50 p-3 rounded-md text-sm max-h-32 overflow-hidden">
                <div className="line-clamp-4">
                  {filteredData.currentPolicies.privacy_policy ? 
                    filteredData.currentPolicies.privacy_policy.content?.replace(/#{1,6}\s+/g, '').replace(/\*\*(.*?)\*\*/g, '$1').substring(0, 200) + '...' :
                    `아직 등록된 ${selectedLocale === 'ko' ? '한국어' : '영어'} 개인정보 정책이 없습니다`
                  }
                </div>
              </div>
              
              {/* 메타 정보 */}
              <div className="flex items-center justify-between text-xs text-muted-foreground">
                <div className="flex items-center gap-1">
                  <Calendar className="h-3 w-3" />
                  생성: {filteredData.currentPolicies.privacy_policy?.createdAt ? new Date(filteredData.currentPolicies.privacy_policy.createdAt).toLocaleDateString('ko-KR') : 'N/A'}
                </div>
                <div className="flex items-center gap-1">
                  <User className="h-3 w-3" />
                  관리자
                </div>
              </div>
            </div>
          </CardContent>
        </Card>

        <Card>
          <CardHeader>
            <CardTitle className="flex items-center gap-2">
              <FileText className="h-5 w-5" />
              이용약관
            </CardTitle>
            <CardDescription>
              {filteredData.currentPolicies.terms_of_service ? 
                `현재 활성 정책 • 시행일: ${new Date(filteredData.currentPolicies.terms_of_service.effectiveDate).toLocaleDateString('ko-KR')}` :
                `아직 등록된 ${selectedLocale === 'ko' ? '한국어' : '영어'} 이용약관이 없습니다`
              }
            </CardDescription>
          </CardHeader>
          <CardContent>
            <div className="space-y-3">
              <div className="text-sm">
                <strong>정책 내용 미리보기:</strong>
              </div>
              <div className="bg-muted/50 p-3 rounded-md text-sm max-h-32 overflow-hidden">
                <div className="line-clamp-4">
                  {filteredData.currentPolicies.terms_of_service ? 
                    filteredData.currentPolicies.terms_of_service.content?.replace(/#{1,6}\s+/g, '').replace(/\*\*(.*?)\*\*/g, '$1').substring(0, 200) + '...' :
                    `아직 등록된 ${selectedLocale === 'ko' ? '한국어' : '영어'} 이용약관이 없습니다`
                  }
                </div>
              </div>
              
              {/* 메타 정보 */}
              <div className="flex items-center justify-between text-xs text-muted-foreground">
                <div className="flex items-center gap-1">
                  <Calendar className="h-3 w-3" />
                  생성: {filteredData.currentPolicies.terms_of_service?.createdAt ? new Date(filteredData.currentPolicies.terms_of_service.createdAt).toLocaleDateString('ko-KR') : 'N/A'}
                </div>
                <div className="flex items-center gap-1">
                  <User className="h-3 w-3" />
                  관리자
                </div>
              </div>
            </div>
          </CardContent>
        </Card>
      </div>

      {/* 정책 편집 부분 - 선택된 locale의 데이터만 표시 */}
      <PolicyManagementClient 
        key={selectedLocale} 
        initialData={filteredData} 
        currentLocale={selectedLocale} 
      />
    </div>
  )
}