d7fb7b7a7b
Build & Deploy / Build & Push Docker Image (push) Failing after 47s
Build & Deploy / Deploy to VPS (push) Has been skipped
Test / API Unit Tests (push) Failing after 5m4s
Test / Marketplace Unit Tests (push) Failing after 4m55s
Test / Admin Unit Tests (push) Successful in 9m37s
Test / Dashboard Unit Tests (push) Successful in 9m37s
Test / API Integration Tests (push) Successful in 9m54s
134 lines
7.2 KiB
TypeScript
134 lines
7.2 KiB
TypeScript
'use client'
|
|
|
|
import Link from 'next/link'
|
|
import { usePathname } from 'next/navigation'
|
|
import { useEffect, useState } from 'react'
|
|
import {
|
|
AdminLanguageSwitcher,
|
|
AdminThemeSwitcher,
|
|
useAdminI18n,
|
|
} from '@/components/I18nProvider'
|
|
import { resolveBrowserAppUrl } from '@/lib/appUrls'
|
|
import { ADMIN_API_BASE } from '@/lib/api'
|
|
import { AdminSessionProvider, type AdminSessionUser } from './AdminSessionContext'
|
|
|
|
function buildUnifiedLoginUrl(nextPath: string) {
|
|
const dashboardUrl = resolveBrowserAppUrl(process.env.NEXT_PUBLIC_DASHBOARD_URL ?? 'http://localhost:3000/dashboard')
|
|
const params = new URLSearchParams({
|
|
portal: 'admin',
|
|
next: nextPath || '/dashboard',
|
|
})
|
|
return `${dashboardUrl}/sign-in?${params.toString()}`
|
|
}
|
|
|
|
const navLinks = [
|
|
{ href: '/dashboard', key: 'overview', icon: 'M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6' },
|
|
{ href: '/dashboard/companies', key: 'companies', icon: 'M19 21V5a2 2 0 00-2-2H7a2 2 0 00-2 2v16m14 0h2m-2 0h-5m-9 0H3m2 0h5M9 7h1m-1 4h1m4-4h1m-1 4h1m-5 10v-5a1 1 0 011-1h2a1 1 0 011 1v5m-4 0h4' },
|
|
{ href: '/dashboard/site-config', key: 'siteConfig', icon: 'M4.5 12a7.5 7.5 0 1015 0 7.5 7.5 0 00-15 0zm7.5-4.5v4.5l3 3' },
|
|
{ href: '/dashboard/renters', key: 'renters', icon: 'M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0z' },
|
|
{ href: '/dashboard/audit-logs', key: 'auditLogs', icon: 'M9 12h6m-6 4h6m2 5H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z' },
|
|
{ href: '/dashboard/notifications', key: 'notifications', icon: 'M15 17h5l-1.405-1.405A2.032 2.032 0 0118 14.158V11a6.002 6.002 0 00-4-5.659V5a2 2 0 10-4 0v.341C7.67 6.165 6 8.388 6 11v3.159c0 .538-.214 1.055-.595 1.436L4 17h5m6 0v1a3 3 0 11-6 0v-1m6 0H9' },
|
|
{ href: '/dashboard/menu-management', key: 'menuManagement', icon: 'M4 6h16M4 12h16M4 18h10' },
|
|
{ href: '/dashboard/admin-users', key: 'adminUsers', icon: 'M12 4.354a4 4 0 110 5.292M15 21H3v-1a6 6 0 0112 0v1zm0 0h6v-1a6 6 0 00-9-5.197M13 7a4 4 0 11-8 0 4 4 0 018 0z' },
|
|
{ href: '/dashboard/billing', key: 'billing', icon: 'M3 10h18M7 15h1m4 0h1m-7 4h12a3 3 0 003-3V8a3 3 0 00-3-3H6a3 3 0 00-3 3v8a3 3 0 003 3z' },
|
|
{ href: '/dashboard/pricing', key: 'pricing', icon: 'M12 8c-1.657 0-3 .895-3 2s1.343 2 3 2 3 .895 3 2-1.343 2-3 2m0-8c1.11 0 2.08.402 2.599 1M12 8V7m0 1v8m0 0v1m0-1c-1.11 0-2.08-.402-2.599-1M21 12a9 9 0 11-18 0 9 9 0 0118 0z' },
|
|
]
|
|
|
|
export default function AdminDashboardLayout({ children }: { children: React.ReactNode }) {
|
|
const { dict } = useAdminI18n()
|
|
const pathname = usePathname()
|
|
const [ready, setReady] = useState(false)
|
|
const [admin, setAdmin] = useState<AdminSessionUser | null>(null)
|
|
|
|
useEffect(() => {
|
|
let cancelled = false
|
|
|
|
fetch(`${ADMIN_API_BASE}/admin/auth/me`, {
|
|
credentials: 'include',
|
|
})
|
|
.then(async (response) => {
|
|
if (cancelled) return
|
|
if (response.ok) {
|
|
const json = await response.json().catch(() => null)
|
|
const resolvedAdmin = (json?.data ?? json) as AdminSessionUser | null
|
|
if (!resolvedAdmin?.id || !resolvedAdmin?.email || !resolvedAdmin?.role) {
|
|
window.location.replace(buildUnifiedLoginUrl(pathname))
|
|
return
|
|
}
|
|
setAdmin(resolvedAdmin)
|
|
setReady(true)
|
|
} else {
|
|
window.location.replace(buildUnifiedLoginUrl(pathname))
|
|
}
|
|
})
|
|
.catch(() => {
|
|
if (!cancelled) window.location.replace(buildUnifiedLoginUrl(pathname))
|
|
})
|
|
|
|
return () => {
|
|
cancelled = true
|
|
}
|
|
}, [pathname])
|
|
|
|
function handleLogout() {
|
|
void fetch('/admin/api/v1/admin/auth/logout', { method: 'POST', credentials: 'include' })
|
|
window.location.href = buildUnifiedLoginUrl('/dashboard')
|
|
}
|
|
|
|
if (!ready) {
|
|
return (
|
|
<div className="flex h-screen items-center justify-center bg-[linear-gradient(180deg,#ffffff_0%,#f5f8ff_28%,#eef4ff_58%,#ffffff_100%)] dark:bg-[linear-gradient(180deg,#0a1128_0%,#0d1b38_35%,#07101e_100%)]">
|
|
<div className="h-6 w-6 animate-spin rounded-full border-2 border-orange-500 border-t-transparent" aria-label={dict.loading} />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<AdminSessionProvider admin={admin as AdminSessionUser}>
|
|
<div className="flex h-screen bg-[linear-gradient(180deg,#ffffff_0%,#f5f8ff_28%,#eef4ff_58%,#ffffff_100%)] text-stone-900 transition-colors dark:bg-[linear-gradient(180deg,#0a1128_0%,#0d1b38_35%,#07101e_100%)] dark:text-slate-100">
|
|
<aside className="flex w-60 flex-shrink-0 flex-col border-r border-stone-200/80 bg-white/78 backdrop-blur-xl transition-colors dark:border-blue-900 dark:bg-[#07101e]/78">
|
|
<Link href="/" className="block px-5 py-6">
|
|
<p className="text-xs font-semibold uppercase tracking-[0.2em] text-orange-700 dark:text-orange-300">{dict.admin}</p>
|
|
<p className="mt-0.5 text-sm font-semibold text-blue-950 dark:text-stone-100">RentalDriveGo</p>
|
|
</Link>
|
|
<nav className="flex-1 px-3 space-y-0.5">
|
|
{navLinks.map((link) => {
|
|
const active = pathname === link.href || (link.href !== '/dashboard' && pathname.startsWith(link.href))
|
|
return (
|
|
<Link
|
|
key={link.href}
|
|
href={link.href}
|
|
className={`flex items-center gap-3 px-3 py-2.5 rounded-xl text-sm font-medium transition-colors ${
|
|
active ? 'bg-orange-600 text-white dark:bg-orange-500 dark:text-white' : 'text-stone-500 hover:text-blue-900 hover:bg-stone-100 dark:text-slate-400 dark:hover:text-white dark:hover:bg-[#162038]'
|
|
}`}
|
|
>
|
|
<svg className="h-4 w-4 flex-shrink-0" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={1.5}>
|
|
<path strokeLinecap="round" strokeLinejoin="round" d={link.icon} />
|
|
</svg>
|
|
{dict.nav[link.key]}
|
|
</Link>
|
|
)
|
|
})}
|
|
</nav>
|
|
<div className="px-3 py-4">
|
|
<button
|
|
onClick={handleLogout}
|
|
className="flex w-full items-center gap-3 rounded-xl px-3 py-2.5 text-sm font-medium text-stone-500 transition-colors hover:bg-stone-100 hover:text-red-500 dark:text-stone-400 dark:hover:bg-[#162038] dark:hover:text-red-300"
|
|
>
|
|
<svg className="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor" strokeWidth={1.5}>
|
|
<path strokeLinecap="round" strokeLinejoin="round" d="M17 16l4-4m0 0l-4-4m4 4H7m6 4v1a3 3 0 01-3 3H6a3 3 0 01-3-3V7a3 3 0 013-3h4a3 3 0 013 3v1" />
|
|
</svg>
|
|
{dict.logout}
|
|
</button>
|
|
<div className="mt-4 flex items-center gap-2 border-t border-stone-200/80 pt-4 dark:border-blue-900">
|
|
<AdminLanguageSwitcher />
|
|
<AdminThemeSwitcher />
|
|
</div>
|
|
</div>
|
|
</aside>
|
|
<main className="flex-1 overflow-y-auto transition-colors">{children}</main>
|
|
</div>
|
|
</AdminSessionProvider>
|
|
)
|
|
}
|