2026-04-13 15:27:04 +09:00
|
|
|
|
import { Suspense } from 'react'
|
2026-04-13 20:42:28 +09:00
|
|
|
|
import { useParams, Link } from 'react-router-dom'
|
2026-04-13 15:27:04 +09:00
|
|
|
|
import { useQuery } from '@tanstack/react-query'
|
|
|
|
|
|
import { getAdminComponent } from '../registry'
|
|
|
|
|
|
import { api } from '../../api/client'
|
|
|
|
|
|
|
|
|
|
|
|
export default function AdminFeaturePage() {
|
|
|
|
|
|
const { slug } = useParams()
|
|
|
|
|
|
const Component = getAdminComponent(slug)
|
|
|
|
|
|
|
2026-04-13 20:42:28 +09:00
|
|
|
|
// 메뉴 정보 조회 (없는 기능 안내용)
|
2026-04-13 15:27:04 +09:00
|
|
|
|
const { data: menus = [] } = useQuery({
|
|
|
|
|
|
queryKey: ['admin', 'menus'],
|
|
|
|
|
|
queryFn: () => api('/api/admin/menus').catch(() => []),
|
|
|
|
|
|
})
|
|
|
|
|
|
const menu = menus.find((m) => (m.url || '').replace(/^\/+/, '').split('/')[0] === slug)
|
|
|
|
|
|
|
|
|
|
|
|
if (!Component) {
|
|
|
|
|
|
return (
|
|
|
|
|
|
<div className="space-y-4">
|
|
|
|
|
|
{menu && (
|
2026-04-13 20:42:28 +09:00
|
|
|
|
<div>
|
|
|
|
|
|
<h2 className="text-lg font-semibold">{menu.title}</h2>
|
|
|
|
|
|
<p className="text-sm text-gray-500 mt-0.5">{menu.description}</p>
|
2026-04-13 15:27:04 +09:00
|
|
|
|
</div>
|
|
|
|
|
|
)}
|
|
|
|
|
|
<div className="rounded-2xl border border-dashed border-white/10 bg-white/[0.02] p-12 text-center">
|
|
|
|
|
|
<div className="text-4xl mb-3 opacity-30">🛠️</div>
|
|
|
|
|
|
<p className="text-gray-400">이 기능에는 관리 페이지가 없습니다</p>
|
|
|
|
|
|
<p className="text-xs text-gray-600 mt-2 font-mono">
|
|
|
|
|
|
features/{slug}/{slug.split('-').map((s) => s[0].toUpperCase() + s.slice(1)).join('')}Admin.jsx
|
|
|
|
|
|
</p>
|
2026-04-13 20:42:28 +09:00
|
|
|
|
<Link
|
|
|
|
|
|
to={`/admin/menus/${menu?.id || ''}`}
|
|
|
|
|
|
className="inline-block mt-4 text-xs text-emerald-400 hover:text-emerald-300 transition"
|
|
|
|
|
|
>
|
|
|
|
|
|
메뉴 정보 편집 →
|
|
|
|
|
|
</Link>
|
2026-04-13 15:27:04 +09:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
2026-04-13 20:42:28 +09:00
|
|
|
|
<Suspense fallback={
|
|
|
|
|
|
<div className="flex items-center justify-center pt-20">
|
|
|
|
|
|
<div className="w-6 h-6 border-2 border-emerald-500 border-t-transparent rounded-full animate-spin" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
}>
|
|
|
|
|
|
<Component />
|
|
|
|
|
|
</Suspense>
|
2026-04-13 15:27:04 +09:00
|
|
|
|
)
|
|
|
|
|
|
}
|