import { Link, NavLink } from 'react-router-dom' import MoonDot from './MoonDot.jsx' import { useAuth } from '../contexts/AuthContext.jsx' import { useSite } from '../contexts/SiteContext.jsx' import { useShardFeatures, canSee } from '../lib/useShardFeatures.js' // One consistent top nav for the whole public site. Every page gets the same // main links plus an auth-aware entry on the right (Sign in / My Account / Admin). // // Entries carrying a `feature` are shard surfaces an admin can disable or gate // to a higher audience (Admin -> Shard Visibility). They are hidden when this // viewer can't reach them, so we never render a link that would 403. The gate // itself is server-side; this is only about not advertising a dead end. const NAV = [ { label: 'Home', to: '/', end: true }, { label: 'News', to: '/site/news' }, { label: 'Screenshots', to: '/site/screenshots' }, { label: 'Five on Friday', to: '/site/five-on-friday' }, { label: 'Newsletter', to: '/site/newsletter' }, { label: 'Wiki', to: '/wiki' }, { label: 'Shard', to: '/site/shard', feature: 'status' }, { label: 'Champions', to: '/site/champs', feature: 'champs' }, { label: 'Guilds', to: '/site/guilds', feature: 'guilds' }, { label: 'Governors', to: '/site/governors', feature: 'governors' }, { label: 'Houses', to: '/site/houses', feature: 'houses' }, { label: 'Rules', to: '/site/rules', feature: 'ruleset' }, { label: 'Atlas', to: '/site/atlas', feature: 'atlas' }, { label: 'Leaderboards', to: '/site/leaderboards', feature: 'leaderboards' }, { label: 'Market', to: '/site/market', feature: 'market' }, { label: 'About', to: '/site/about' }, ] const linkStyle = ({ isActive }) => ({ background: isActive ? 'var(--accent)' : undefined, color: isActive ? 'var(--bg-deep)' : undefined, borderColor: isActive ? 'var(--accent)' : undefined, }) export default function SiteHeader() { const { user, loading } = useAuth() const { siteTitle } = useSite() const shardFeatures = useShardFeatures() const nav = NAV.filter((item) => !item.feature || canSee(shardFeatures, item.feature)) // Where the auth entry points: staff → admin, player → portal, else sign in. let account if (user && user.role && user.role !== 'player') account = { label: 'Admin', to: '/admin' } else if (user) account = { label: 'My Account', to: '/player' } else account = { label: 'Sign in', to: '/account/login' } return (
{siteTitle}
) }