mirror of
https://github.com/nexu-io/open-design.git
synced 2026-06-01 03:14:35 +07:00
The 2026-05 plugins rebuild left three homepage/library surfaces still pointing at the retired `/skills/`, `/systems/`, and `/craft/` route trees, so visitors hit a 301 hop (or a stale facet) instead of landing directly on the new `/plugins/*` pages. Repoint them at the canonical destinations and align the homepage Labs pills with the real library. - system-card: link straight to `/plugins/design-system-<slug>/` via a new `detailHrefForSystemSlug` resolver instead of hard-coding `/systems/<slug>/` and relying on the redirect. The ~8 systems that ship no manifest (hence no detail page) degrade to `/plugins/systems/`, the same destination the legacy 301 produced, minus the hop and with no risk of linking at a page that doesn't exist. - homepage Labs pills: replace the hard-coded prototype/deck/mobile/office facets (mobile/office had drifted to stale or empty counts) with a live top-4 of `PLUGIN_CATEGORIES`, counted with the same `categorizePlugin` rule `/plugins/templates/` uses and labelled from `pcopy.category`, so the homepage stays in lockstep with the library and never shows a dead chip. Counts are surfaced through a new `CatalogCounts.templateCategories`. - remove the Craft entry points from the homepage footer, sub-page footer, header Library dropdown, and the plugins hub tile grid. The `/craft/` pages stay live; they're just no longer surfaced in site chrome. The legacy `/skills/`, `/systems/`, `/templates/` 301s added in the prior PR stay in place for inbound links and search equity.
325 lines
12 KiB
TypeScript
325 lines
12 KiB
TypeScript
/*
|
|
* Sticky Header — static markup rendered at build time. Headroom-style
|
|
* hide/show and the live GitHub star count are attached by the tiny inline
|
|
* scripts on each Astro page, so this marketing page ships no React runtime
|
|
* to the browser.
|
|
*
|
|
* The nav links go to internal multi-page routes (`/skills/`, `/systems/`,
|
|
* `/templates/`, `/craft/`) so Google sees a real site hierarchy. Numbers
|
|
* reflect the live counts of the canonical Markdown bundles in the repo
|
|
* root and are kept in sync with `getCatalogCounts()` at build time.
|
|
*/
|
|
|
|
import {
|
|
DEFAULT_LOCALE,
|
|
getCommonCopy,
|
|
getHeaderProductMenuCopy,
|
|
localizedHref,
|
|
type HeaderCopy,
|
|
type LandingLocaleCode,
|
|
} from '../i18n';
|
|
|
|
const REPO = 'https://github.com/nexu-io/open-design';
|
|
const REPO_RELEASES = `${REPO}/releases`;
|
|
const DISCORD = 'https://discord.gg/9ptkbbqRu';
|
|
const X_TWITTER = 'https://x.com/nexudotio';
|
|
|
|
const ext = {
|
|
target: '_blank',
|
|
rel: 'noreferrer noopener',
|
|
} as const;
|
|
|
|
export interface HeaderProps {
|
|
/** Nav highlight target. `'home'` is the default for `/`. */
|
|
active?:
|
|
| 'home'
|
|
| 'product'
|
|
| 'html-anything'
|
|
| 'plugins'
|
|
/*
|
|
* `library` is kept as an alias for the dropdown trigger so older
|
|
* pages that still pass `active="library"` keep working. New pages
|
|
* should pass `active="plugins"`.
|
|
*/
|
|
| 'library'
|
|
| 'skills'
|
|
| 'systems'
|
|
| 'templates'
|
|
| 'craft'
|
|
| 'blog'
|
|
| 'tutorials'
|
|
| 'community';
|
|
/**
|
|
* Live counts from the Markdown catalogs. Required so we can never
|
|
* silently render stale fallback numbers when a caller forgets to
|
|
* thread `getCatalogCounts()` through. Header only consumes these
|
|
* four scalar fields; the homepage passes the wider `CatalogCounts`
|
|
* value (with `byMode` / `byPlatform`) by structural subtyping.
|
|
*/
|
|
counts: {
|
|
skills: number;
|
|
systems: number;
|
|
templates: number;
|
|
craft: number;
|
|
};
|
|
github?: {
|
|
starsLabel: string;
|
|
};
|
|
/** UI locale for nav labels and accessibility text. */
|
|
locale?: LandingLocaleCode;
|
|
/** Optional override for callers that already resolved localized chrome. */
|
|
copy?: HeaderCopy;
|
|
/** Brand link target — `#top` on the homepage, `/` on sub-pages. */
|
|
brandHref?: string;
|
|
}
|
|
|
|
export function Header({
|
|
active = 'home',
|
|
counts,
|
|
github,
|
|
locale = DEFAULT_LOCALE,
|
|
copy,
|
|
brandHref = '#top',
|
|
}: HeaderProps) {
|
|
const linkClass = (key: NonNullable<HeaderProps['active']>) =>
|
|
active === key ? 'is-active' : undefined;
|
|
const headerCopy = copy ?? getCommonCopy(locale).header;
|
|
const href = (path: string) => localizedHref(path, locale);
|
|
const homeBrandHref = brandHref === '/' ? href('/') : brandHref;
|
|
const productMenuCopy = getHeaderProductMenuCopy(locale);
|
|
|
|
return (
|
|
<header className='nav' data-od-id='nav'>
|
|
<div className='container nav-inner'>
|
|
<a href={homeBrandHref} className='brand'>
|
|
<span className='brand-mark'>
|
|
<img src='/logo.webp' alt='' width={44} height={44} />
|
|
</span>
|
|
<span className='brand-name'>Open Design</span>
|
|
</a>
|
|
{/*
|
|
Mobile / tablet hamburger. Hidden by CSS at ≥1100px (the desktop
|
|
breakpoint where the full nav fits). At narrower widths it toggles
|
|
`.is-open` on the parent <header> via a small handler in
|
|
`header-enhancer.astro` — when open, the `<nav>` element below
|
|
drops down underneath the header bar as a vertical list.
|
|
*/}
|
|
<button
|
|
type='button'
|
|
className='nav-toggle'
|
|
aria-label={productMenuCopy.toggleNavigationMenu}
|
|
aria-controls='primary-nav'
|
|
aria-expanded='false'
|
|
data-nav-toggle
|
|
>
|
|
<span className='nav-toggle-icon' aria-hidden='true' />
|
|
</button>
|
|
<nav id='primary-nav' data-nav-primary>
|
|
<ul className='nav-links'>
|
|
<li className='has-dropdown'>
|
|
{/*
|
|
Product menu — top-level group exposing the Open Design family.
|
|
CSS-only dropdown via :hover / :focus-within (no JS), so this
|
|
still renders correctly under static export with no React
|
|
runtime on the client. The trigger is a focusable <a> rather
|
|
than a button so it remains a keyboard tab stop, with
|
|
aria-haspopup signaling the submenu to assistive tech.
|
|
*/}
|
|
<a
|
|
href={href('/')}
|
|
className={
|
|
active === 'product' ||
|
|
active === 'home' ||
|
|
active === 'html-anything'
|
|
? 'is-active'
|
|
: undefined
|
|
}
|
|
aria-haspopup='true'
|
|
aria-expanded='false'
|
|
>
|
|
{productMenuCopy.product}
|
|
<span className='dropdown-caret' aria-hidden='true'>▾</span>
|
|
</a>
|
|
<ul className='nav-dropdown' role='menu'>
|
|
<li role='none'>
|
|
<a
|
|
role='menuitem'
|
|
href={href('/')}
|
|
className={
|
|
active === 'home' || active === 'product'
|
|
? 'is-active'
|
|
: undefined
|
|
}
|
|
>
|
|
<span className='dropdown-name'>{productMenuCopy.openDesignName}</span>
|
|
<span className='dropdown-blurb'>
|
|
{productMenuCopy.openDesignBlurb}
|
|
</span>
|
|
</a>
|
|
</li>
|
|
<li role='none'>
|
|
<a
|
|
role='menuitem'
|
|
href={href('/html-anything/')}
|
|
className={linkClass('html-anything')}
|
|
>
|
|
<span className='dropdown-name'>{productMenuCopy.htmlAnythingName}</span>
|
|
<span className='dropdown-blurb'>
|
|
{productMenuCopy.htmlAnythingBlurb}
|
|
</span>
|
|
</a>
|
|
</li>
|
|
{/* Tutorials is a top-level nav item (see Library section
|
|
below). Don't list it here too — duplicating it once at
|
|
Product/Tutorials and again at top-level confuses users
|
|
about whether the two link to the same page. */}
|
|
</ul>
|
|
</li>
|
|
{/*
|
|
Plugins — catalog facets (Templates / Skills / Systems / Craft)
|
|
collapsed under one parent. Each row keeps its count badge
|
|
inside the panel and the trigger highlights when any of the
|
|
four facet pages is active. Same CSS-only :hover /
|
|
:focus-within mechanic from Product.
|
|
*/}
|
|
<li className='has-dropdown'>
|
|
<a
|
|
href={href('/plugins/')}
|
|
className={
|
|
active === 'plugins' ||
|
|
active === 'library' ||
|
|
active === 'skills' ||
|
|
active === 'systems' ||
|
|
active === 'templates' ||
|
|
active === 'craft'
|
|
? 'is-active'
|
|
: undefined
|
|
}
|
|
aria-haspopup='true'
|
|
aria-expanded='false'
|
|
>
|
|
{headerCopy.nav.plugins}
|
|
<span className='dropdown-caret' aria-hidden='true'>▾</span>
|
|
</a>
|
|
<ul className='nav-dropdown' role='menu'>
|
|
<li role='none'>
|
|
<a
|
|
role='menuitem'
|
|
href={href('/plugins/templates/')}
|
|
className={linkClass('templates')}
|
|
>
|
|
<span className='dropdown-name'>{headerCopy.nav.templates}</span>
|
|
</a>
|
|
</li>
|
|
<li role='none'>
|
|
<a
|
|
role='menuitem'
|
|
href={href('/plugins/skills/')}
|
|
className={linkClass('skills')}
|
|
>
|
|
<span className='dropdown-name'>{headerCopy.nav.skills}</span>
|
|
</a>
|
|
</li>
|
|
<li role='none'>
|
|
<a
|
|
role='menuitem'
|
|
href={href('/plugins/systems/')}
|
|
className={linkClass('systems')}
|
|
>
|
|
<span className='dropdown-name'>{headerCopy.nav.systems}</span>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</li>
|
|
<li>
|
|
<a href={href('/tutorials/')} className={linkClass('tutorials')}>
|
|
{headerCopy.nav.tutorials}
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href={href('/blog/')} className={linkClass('blog')}>
|
|
{headerCopy.nav.blog}
|
|
</a>
|
|
</li>
|
|
{/*
|
|
Community is a static contributors / ambassadors page served
|
|
from `apps/landing-page/public/community/index.html` — Astro
|
|
copies `public/` verbatim, so this hits Cloudflare Pages as a
|
|
first-party route at `/community/`.
|
|
|
|
The href is the literal `/community/` rather than
|
|
`href('/community/')` because the page is a single non-
|
|
locale-aware destination — locale-prefixed variants like
|
|
`/zh/community/` would fall through to a 404 since the
|
|
`[locale]/[...path].astro` catch-all does not generate it.
|
|
*/}
|
|
<li>
|
|
<a href='/community/' className={linkClass('community')}>
|
|
{headerCopy.nav.community}
|
|
</a>
|
|
</li>
|
|
{/*
|
|
Contact intentionally NOT exposed in the top nav: it's a
|
|
page-internal anchor (`#contact` on the homepage CTA section)
|
|
that the footer already surfaces. Keeping it out of the bar
|
|
frees a slot at narrow widths where the row was overflowing.
|
|
*/}
|
|
</ul>
|
|
</nav>
|
|
<div className='nav-side'>
|
|
{/*
|
|
Discord + X icon buttons live before Download / Star so the
|
|
community channels are reachable from every page without
|
|
burning a nav text slot. The icons are aria-labeled and
|
|
otherwise unlabeled. At ≤1080px they collapse alongside the
|
|
ghost Download CTA and the text-only nav <ul> (the latter
|
|
moves into the hamburger panel) — only the Star CTA stays
|
|
visible in the bar.
|
|
*/}
|
|
<a
|
|
className='nav-icon'
|
|
href={DISCORD}
|
|
aria-label='Join Open Design on Discord'
|
|
title='Discord'
|
|
{...ext}
|
|
>
|
|
<svg viewBox='0 0 24 24' width='18' height='18' fill='currentColor' aria-hidden='true'>
|
|
<path d='M19.27 5.33A18 18 0 0 0 14.72 4l-.2.4a13.7 13.7 0 0 0-5.04 0L9.27 4a18 18 0 0 0-4.54 1.33C2.4 8.94 1.78 12.45 2.09 15.9a18.4 18.4 0 0 0 5.6 2.83l1.13-1.55a11.6 11.6 0 0 1-1.78-.86l.44-.34a13 13 0 0 0 11.04 0l.44.34c-.55.33-1.16.61-1.78.86l1.13 1.55a18.3 18.3 0 0 0 5.6-2.83c.45-4.05-.5-7.53-2.64-10.57ZM9.5 14.07c-1.07 0-1.95-.99-1.95-2.21 0-1.22.86-2.22 1.95-2.22 1.1 0 1.97 1 1.95 2.22 0 1.22-.86 2.21-1.95 2.21Zm5 0c-1.07 0-1.95-.99-1.95-2.21 0-1.22.87-2.22 1.96-2.22 1.1 0 1.96 1 1.95 2.22 0 1.22-.86 2.21-1.96 2.21Z' />
|
|
</svg>
|
|
</a>
|
|
<a
|
|
className='nav-icon'
|
|
href={X_TWITTER}
|
|
aria-label='Follow Open Design on X'
|
|
title='X / Twitter'
|
|
{...ext}
|
|
>
|
|
<svg viewBox='0 0 24 24' width='16' height='16' fill='currentColor' aria-hidden='true'>
|
|
<path d='M17.53 3H21l-7.39 8.45L22 21h-6.83l-5.36-6.99L3.7 21H.23l7.9-9.04L0 3h7l4.85 6.41L17.53 3Zm-2.39 16h2.04L5.96 4.9H3.78L15.14 19Z' />
|
|
</svg>
|
|
</a>
|
|
<a
|
|
className='nav-cta ghost'
|
|
href={REPO_RELEASES}
|
|
aria-label={headerCopy.downloadAria}
|
|
title={headerCopy.downloadTitle}
|
|
{...ext}
|
|
>
|
|
{headerCopy.download}
|
|
</a>
|
|
<a
|
|
className='nav-cta'
|
|
href={REPO}
|
|
aria-label={headerCopy.starAria}
|
|
title={headerCopy.starTitle}
|
|
{...ext}
|
|
>
|
|
{headerCopy.starPrefix} ·{' '}
|
|
<span data-github-stars>{github?.starsLabel ?? '40K+'}</span>
|
|
</a>
|
|
<span className='status-dot' aria-hidden='true' />
|
|
</div>
|
|
</div>
|
|
</header>
|
|
);
|
|
}
|