refactor(admin): extract page titles into a shared constants file

This commit is contained in:
2026-04-22 17:43:23 -04:00
parent 51adae4e0f
commit 94aaeb241b
3 changed files with 16 additions and 8 deletions
+5 -4
View File
@@ -5,7 +5,8 @@ import { Menu, MenuButton, MenuItem, MenuItems, Transition } from '@headlessui/r
import { ChevronDownIcon, User03Icon, DashboardSquare03Icon } from '@zen/core/shared/icons';
import { UserAvatar } from '@zen/core/shared/components';
import { useRouter, usePathname } from 'next/navigation';
import { getPage, getPages } from '../registry.js';
import { getPages } from '../registry.js';
import { PAGE_TITLES } from '../pages/titles.js';
import { useTheme, getThemeIcon } from '@zen/core/themes';
const AdminTop = ({ isMobileMenuOpen, setIsMobileMenuOpen, user, onLogout, appName = 'ZEN', navigationSections = [] }) => {
@@ -39,20 +40,20 @@ const AdminTop = ({ isMobileMenuOpen, setIsMobileMenuOpen, user, onLogout, appNa
const crumbs = [{ icon: DashboardSquare03Icon, href: '/admin/dashboard' }];
const after = pathname.replace(/^\/admin\/?/, '');
if (!after) {
crumbs.push({ label: getPage('dashboard')?.title });
crumbs.push({ label: PAGE_TITLES.dashboard });
return crumbs;
}
const segments = after.split('/').filter(Boolean);
if (!segments.length || (segments[0] === 'dashboard' && segments.length === 1)) {
crumbs.push({ label: getPage('dashboard')?.title });
crumbs.push({ label: PAGE_TITLES.dashboard });
return crumbs;
}
const [first, second] = segments;
if (first === 'profile') {
crumbs.push({ label: getPage('profile')?.title });
crumbs.push({ label: PAGE_TITLES.profile });
return crumbs;
}