feat: add feature UI components with useQuery hooks
- navigation: SiteHeader component + useHeader hook - blog: ArticleCard, ArticleList, ArticleDetail + useArticleList, useArticleBySlug hooks - marketing-pages: PageHero, PageContent + usePageBySlug, useSiteSettings hooks - App pages now thin server wrappers that prefetch + hydrate; feature components own their data fetching via useSuspenseQuery
This commit is contained in:
@@ -1,31 +1,37 @@
|
|||||||
|
import { dehydrate, HydrationBoundary } from "@tanstack/react-query";
|
||||||
import { appRouter } from "@repo/core-api";
|
import { appRouter } from "@repo/core-api";
|
||||||
|
import { getQueryClient } from "@repo/core-trpc";
|
||||||
|
import { PageContent } from "@repo/marketing-pages/ui";
|
||||||
import { bindAll } from "../../server/bind-production";
|
import { bindAll } from "../../server/bind-production";
|
||||||
|
|
||||||
export default async function AboutPage() {
|
export default async function AboutPage() {
|
||||||
await bindAll();
|
await bindAll();
|
||||||
const caller = appRouter.createCaller({});
|
const caller = appRouter.createCaller({});
|
||||||
|
const queryClient = getQueryClient();
|
||||||
|
|
||||||
const page = await caller.marketingPages.pageBySlug({ slug: "about" });
|
const page = await caller.marketingPages.pageBySlug({ slug: "about" });
|
||||||
|
|
||||||
|
queryClient.setQueryData(
|
||||||
|
["marketingPages", "pageBySlug", { input: { slug: "about" } }],
|
||||||
|
page,
|
||||||
|
);
|
||||||
|
|
||||||
if (!page) {
|
if (!page) {
|
||||||
return (
|
return (
|
||||||
<main>
|
<main className="mx-auto max-w-3xl px-6 py-8">
|
||||||
<h1>About</h1>
|
<h1 className="text-3xl font-bold text-foreground">About</h1>
|
||||||
<p>This page hasn't been published yet.</p>
|
<p className="mt-2 text-muted-foreground">
|
||||||
|
This page hasn't been published yet.
|
||||||
|
</p>
|
||||||
</main>
|
</main>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<main>
|
<HydrationBoundary state={dehydrate(queryClient)}>
|
||||||
<article>
|
<main className="px-6 py-8">
|
||||||
<header>
|
<PageContent slug="about" />
|
||||||
<h1>{page.hero.heading}</h1>
|
|
||||||
{page.hero.subheading ? <p>{page.hero.subheading}</p> : null}
|
|
||||||
</header>
|
|
||||||
<pre style={{ whiteSpace: "pre-wrap" }}>
|
|
||||||
{JSON.stringify(page.layout, null, 2)}
|
|
||||||
</pre>
|
|
||||||
</article>
|
|
||||||
</main>
|
</main>
|
||||||
|
</HydrationBoundary>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
import { notFound } from "next/navigation";
|
import { notFound } from "next/navigation";
|
||||||
|
import { dehydrate, HydrationBoundary } from "@tanstack/react-query";
|
||||||
import { appRouter } from "@repo/core-api";
|
import { appRouter } from "@repo/core-api";
|
||||||
|
import { getQueryClient } from "@repo/core-trpc";
|
||||||
|
import { ArticleDetail } from "@repo/blog/ui";
|
||||||
import { bindAll } from "../../../server/bind-production";
|
import { bindAll } from "../../../server/bind-production";
|
||||||
|
|
||||||
type PageProps = {
|
type PageProps = {
|
||||||
@@ -10,25 +13,22 @@ export default async function BlogPostPage({ params }: PageProps) {
|
|||||||
await bindAll();
|
await bindAll();
|
||||||
const { slug } = await params;
|
const { slug } = await params;
|
||||||
const caller = appRouter.createCaller({});
|
const caller = appRouter.createCaller({});
|
||||||
|
const queryClient = getQueryClient();
|
||||||
|
|
||||||
const article = await caller.blog.articleBySlug({ slug });
|
const article = await caller.blog.articleBySlug({ slug });
|
||||||
|
|
||||||
if (!article) notFound();
|
if (!article) notFound();
|
||||||
|
|
||||||
|
queryClient.setQueryData(
|
||||||
|
["blog", "articleBySlug", { input: { slug } }],
|
||||||
|
article,
|
||||||
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<main>
|
<HydrationBoundary state={dehydrate(queryClient)}>
|
||||||
<article>
|
<main className="px-6 py-8">
|
||||||
<header>
|
<ArticleDetail slug={slug} />
|
||||||
<h1>{article.title}</h1>
|
|
||||||
{article.createdAt ? (
|
|
||||||
<time dateTime={article.createdAt.toISOString()}>
|
|
||||||
{article.createdAt.toLocaleDateString()}
|
|
||||||
</time>
|
|
||||||
) : null}
|
|
||||||
</header>
|
|
||||||
<pre style={{ whiteSpace: "pre-wrap" }}>
|
|
||||||
{JSON.stringify(article.content, null, 2)}
|
|
||||||
</pre>
|
|
||||||
</article>
|
|
||||||
</main>
|
</main>
|
||||||
|
</HydrationBoundary>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,10 +1,14 @@
|
|||||||
import Link from "next/link";
|
import { dehydrate, HydrationBoundary } from "@tanstack/react-query";
|
||||||
import { appRouter } from "@repo/core-api";
|
import { appRouter } from "@repo/core-api";
|
||||||
|
import { getQueryClient } from "@repo/core-trpc";
|
||||||
|
import { SiteHeader } from "@repo/navigation/ui";
|
||||||
|
import { ArticleList } from "@repo/blog/ui";
|
||||||
import { bindAll } from "../server/bind-production";
|
import { bindAll } from "../server/bind-production";
|
||||||
|
|
||||||
export default async function Home() {
|
export default async function Home() {
|
||||||
await bindAll();
|
await bindAll();
|
||||||
const caller = appRouter.createCaller({});
|
const caller = appRouter.createCaller({});
|
||||||
|
const queryClient = getQueryClient();
|
||||||
|
|
||||||
const [siteSettings, header, articles] = await Promise.all([
|
const [siteSettings, header, articles] = await Promise.all([
|
||||||
caller.marketingPages.siteSettings({}),
|
caller.marketingPages.siteSettings({}),
|
||||||
@@ -12,38 +16,24 @@ export default async function Home() {
|
|||||||
caller.blog.listArticles({ status: "published", limit: 20 }),
|
caller.blog.listArticles({ status: "published", limit: 20 }),
|
||||||
]);
|
]);
|
||||||
|
|
||||||
return (
|
queryClient.setQueryData(["navigation", "header", { input: {} }], header);
|
||||||
<main>
|
queryClient.setQueryData(
|
||||||
<header>
|
["blog", "listArticles", { input: { status: "published", limit: 20 } }],
|
||||||
<h1>{siteSettings.siteName}</h1>
|
articles,
|
||||||
{siteSettings.siteDescription ? (
|
);
|
||||||
<p>{siteSettings.siteDescription}</p>
|
|
||||||
) : null}
|
|
||||||
<nav>
|
|
||||||
<ul>
|
|
||||||
{header.items.map((item) => (
|
|
||||||
<li key={item.href}>
|
|
||||||
<Link href={item.href}>{item.label}</Link>
|
|
||||||
</li>
|
|
||||||
))}
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<section>
|
return (
|
||||||
<h2>Latest articles</h2>
|
<HydrationBoundary state={dehydrate(queryClient)}>
|
||||||
{articles.length === 0 ? (
|
<SiteHeader
|
||||||
<p>No published articles yet.</p>
|
siteName={siteSettings.siteName}
|
||||||
) : (
|
siteDescription={siteSettings.siteDescription}
|
||||||
<ul>
|
/>
|
||||||
{articles.map((a) => (
|
<main className="mx-auto max-w-5xl px-6 py-8">
|
||||||
<li key={a.id}>
|
<h2 className="mb-4 text-2xl font-bold text-foreground">
|
||||||
<Link href={`/blog/${a.slug}`}>{a.title}</Link>
|
Latest articles
|
||||||
</li>
|
</h2>
|
||||||
))}
|
<ArticleList />
|
||||||
</ul>
|
|
||||||
)}
|
|
||||||
</section>
|
|
||||||
</main>
|
</main>
|
||||||
|
</HydrationBoundary>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,9 +19,13 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@repo/core-shared": "workspace:*",
|
"@repo/core-shared": "workspace:*",
|
||||||
|
"@repo/core-trpc": "workspace:^",
|
||||||
|
"@tanstack/react-query": "^5.66.0",
|
||||||
|
"@trpc/client": "^11.17.0",
|
||||||
"@trpc/server": "^11.0.0",
|
"@trpc/server": "^11.0.0",
|
||||||
"inversify": "^6.2.0",
|
"inversify": "^6.2.0",
|
||||||
"payload": "^3.14.0",
|
"payload": "^3.14.0",
|
||||||
|
"react": "^19.0.0",
|
||||||
"reflect-metadata": "^0.2.2",
|
"reflect-metadata": "^0.2.2",
|
||||||
"zod": "^3.24.0"
|
"zod": "^3.24.0"
|
||||||
},
|
},
|
||||||
@@ -30,6 +34,7 @@
|
|||||||
"@repo/core-testing": "workspace:*",
|
"@repo/core-testing": "workspace:*",
|
||||||
"@repo/core-typescript": "workspace:*",
|
"@repo/core-typescript": "workspace:*",
|
||||||
"@types/node": "^22.0.0",
|
"@types/node": "^22.0.0",
|
||||||
|
"@types/react": "^19.0.0",
|
||||||
"@vitest/coverage-v8": "^3.2.4",
|
"@vitest/coverage-v8": "^3.2.4",
|
||||||
"vitest": "^3.1.0"
|
"vitest": "^3.1.0"
|
||||||
}
|
}
|
||||||
|
|||||||
23
packages/blog/src/ui/components/article-card.tsx
Normal file
23
packages/blog/src/ui/components/article-card.tsx
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
import type { Article } from "../../entities/models/article";
|
||||||
|
|
||||||
|
export type ArticleCardProps = {
|
||||||
|
article: Article;
|
||||||
|
};
|
||||||
|
|
||||||
|
export function ArticleCard({ article }: ArticleCardProps) {
|
||||||
|
return (
|
||||||
|
<article className="rounded-lg border border-border bg-card p-4 transition-colors hover:bg-accent/50">
|
||||||
|
<a href={`/blog/${article.slug}`}>
|
||||||
|
<h3 className="text-lg font-semibold text-card-foreground">
|
||||||
|
{article.title}
|
||||||
|
</h3>
|
||||||
|
</a>
|
||||||
|
<time
|
||||||
|
className="text-sm text-muted-foreground"
|
||||||
|
dateTime={article.createdAt.toISOString()}
|
||||||
|
>
|
||||||
|
{article.createdAt.toLocaleDateString()}
|
||||||
|
</time>
|
||||||
|
</article>
|
||||||
|
);
|
||||||
|
}
|
||||||
34
packages/blog/src/ui/components/article-detail.tsx
Normal file
34
packages/blog/src/ui/components/article-detail.tsx
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { useArticleBySlug } from "../hooks/use-article-by-slug";
|
||||||
|
|
||||||
|
export type ArticleDetailProps = {
|
||||||
|
slug: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export function ArticleDetail({ slug }: ArticleDetailProps) {
|
||||||
|
const { data: article } = useArticleBySlug(slug);
|
||||||
|
|
||||||
|
if (!article) return null;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<article className="mx-auto max-w-3xl">
|
||||||
|
<header className="mb-8">
|
||||||
|
<h1 className="text-3xl font-bold text-foreground">{article.title}</h1>
|
||||||
|
{article.createdAt ? (
|
||||||
|
<time
|
||||||
|
className="mt-2 block text-sm text-muted-foreground"
|
||||||
|
dateTime={article.createdAt.toISOString()}
|
||||||
|
>
|
||||||
|
{article.createdAt.toLocaleDateString()}
|
||||||
|
</time>
|
||||||
|
) : null}
|
||||||
|
</header>
|
||||||
|
<div className="prose text-foreground">
|
||||||
|
<pre className="whitespace-pre-wrap text-sm">
|
||||||
|
{JSON.stringify(article.content, null, 2)}
|
||||||
|
</pre>
|
||||||
|
</div>
|
||||||
|
</article>
|
||||||
|
);
|
||||||
|
}
|
||||||
20
packages/blog/src/ui/components/article-list.tsx
Normal file
20
packages/blog/src/ui/components/article-list.tsx
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { useArticleList } from "../hooks/use-article-list";
|
||||||
|
import { ArticleCard } from "./article-card";
|
||||||
|
|
||||||
|
export function ArticleList() {
|
||||||
|
const { data: articles } = useArticleList();
|
||||||
|
|
||||||
|
if (articles.length === 0) {
|
||||||
|
return <p className="text-muted-foreground">No published articles yet.</p>;
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="grid gap-4">
|
||||||
|
{articles.map((article) => (
|
||||||
|
<ArticleCard key={article.id} article={article} />
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
12
packages/blog/src/ui/hooks/use-article-by-slug.ts
Normal file
12
packages/blog/src/ui/hooks/use-article-by-slug.ts
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { useSuspenseQuery } from "@tanstack/react-query";
|
||||||
|
import { useTRPC } from "@repo/core-trpc";
|
||||||
|
import type { Article } from "../../entities/models/article";
|
||||||
|
|
||||||
|
export function useArticleBySlug(slug: string) {
|
||||||
|
const trpc = useTRPC();
|
||||||
|
return useSuspenseQuery(trpc.blog.articleBySlug.queryOptions({ slug })) as {
|
||||||
|
data: Article | null;
|
||||||
|
};
|
||||||
|
}
|
||||||
18
packages/blog/src/ui/hooks/use-article-list.ts
Normal file
18
packages/blog/src/ui/hooks/use-article-list.ts
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { useSuspenseQuery } from "@tanstack/react-query";
|
||||||
|
import { useTRPC } from "@repo/core-trpc";
|
||||||
|
import type { Article } from "../../entities/models/article";
|
||||||
|
|
||||||
|
export function useArticleList(options?: {
|
||||||
|
status?: "draft" | "published";
|
||||||
|
limit?: number;
|
||||||
|
}) {
|
||||||
|
const trpc = useTRPC();
|
||||||
|
return useSuspenseQuery(
|
||||||
|
trpc.blog.listArticles.queryOptions({
|
||||||
|
status: options?.status ?? "published",
|
||||||
|
limit: options?.limit ?? 20,
|
||||||
|
}),
|
||||||
|
) as { data: Article[] };
|
||||||
|
}
|
||||||
@@ -1 +1,9 @@
|
|||||||
export { articleBySlugQuery, listArticlesQuery } from "./query";
|
export { articleBySlugQuery, listArticlesQuery } from "./query";
|
||||||
|
export { useArticleList } from "./hooks/use-article-list";
|
||||||
|
export { useArticleBySlug } from "./hooks/use-article-by-slug";
|
||||||
|
export { ArticleCard, type ArticleCardProps } from "./components/article-card";
|
||||||
|
export { ArticleList } from "./components/article-list";
|
||||||
|
export {
|
||||||
|
ArticleDetail,
|
||||||
|
type ArticleDetailProps,
|
||||||
|
} from "./components/article-detail";
|
||||||
|
|||||||
@@ -24,9 +24,13 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@repo/auth": "workspace:*",
|
"@repo/auth": "workspace:*",
|
||||||
"@repo/core-shared": "workspace:*",
|
"@repo/core-shared": "workspace:*",
|
||||||
|
"@repo/core-trpc": "workspace:^",
|
||||||
|
"@tanstack/react-query": "^5.66.0",
|
||||||
|
"@trpc/client": "^11.17.0",
|
||||||
"@trpc/server": "^11.0.0",
|
"@trpc/server": "^11.0.0",
|
||||||
"inversify": "^6.2.0",
|
"inversify": "^6.2.0",
|
||||||
"payload": "^3.14.0",
|
"payload": "^3.14.0",
|
||||||
|
"react": "^19.0.0",
|
||||||
"reflect-metadata": "^0.2.2",
|
"reflect-metadata": "^0.2.2",
|
||||||
"zod": "^3.24.0"
|
"zod": "^3.24.0"
|
||||||
},
|
},
|
||||||
@@ -35,6 +39,7 @@
|
|||||||
"@repo/core-testing": "workspace:*",
|
"@repo/core-testing": "workspace:*",
|
||||||
"@repo/core-typescript": "workspace:*",
|
"@repo/core-typescript": "workspace:*",
|
||||||
"@types/node": "^22.0.0",
|
"@types/node": "^22.0.0",
|
||||||
|
"@types/react": "^19.0.0",
|
||||||
"@vitest/coverage-v8": "^3.2.4",
|
"@vitest/coverage-v8": "^3.2.4",
|
||||||
"vitest": "^3.1.0"
|
"vitest": "^3.1.0"
|
||||||
}
|
}
|
||||||
|
|||||||
25
packages/marketing-pages/src/ui/components/page-content.tsx
Normal file
25
packages/marketing-pages/src/ui/components/page-content.tsx
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { usePageBySlug } from "../hooks/use-page-by-slug";
|
||||||
|
import { PageHero } from "./page-hero";
|
||||||
|
|
||||||
|
export type PageContentProps = {
|
||||||
|
slug: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export function PageContent({ slug }: PageContentProps) {
|
||||||
|
const { data: page } = usePageBySlug(slug);
|
||||||
|
|
||||||
|
if (!page) return null;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<article className="mx-auto max-w-3xl">
|
||||||
|
<PageHero hero={page.hero} />
|
||||||
|
<div className="prose text-foreground">
|
||||||
|
<pre className="whitespace-pre-wrap text-sm">
|
||||||
|
{JSON.stringify(page.layout, null, 2)}
|
||||||
|
</pre>
|
||||||
|
</div>
|
||||||
|
</article>
|
||||||
|
);
|
||||||
|
}
|
||||||
16
packages/marketing-pages/src/ui/components/page-hero.tsx
Normal file
16
packages/marketing-pages/src/ui/components/page-hero.tsx
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
import type { Hero } from "../../entities/models/page";
|
||||||
|
|
||||||
|
export type PageHeroProps = {
|
||||||
|
hero: Hero;
|
||||||
|
};
|
||||||
|
|
||||||
|
export function PageHero({ hero }: PageHeroProps) {
|
||||||
|
return (
|
||||||
|
<header className="mb-8">
|
||||||
|
<h1 className="text-3xl font-bold text-foreground">{hero.heading}</h1>
|
||||||
|
{hero.subheading ? (
|
||||||
|
<p className="mt-2 text-lg text-muted-foreground">{hero.subheading}</p>
|
||||||
|
) : null}
|
||||||
|
</header>
|
||||||
|
);
|
||||||
|
}
|
||||||
12
packages/marketing-pages/src/ui/hooks/use-page-by-slug.ts
Normal file
12
packages/marketing-pages/src/ui/hooks/use-page-by-slug.ts
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { useSuspenseQuery } from "@tanstack/react-query";
|
||||||
|
import { useTRPC } from "@repo/core-trpc";
|
||||||
|
import type { Page } from "../../entities/models/page";
|
||||||
|
|
||||||
|
export function usePageBySlug(slug: string) {
|
||||||
|
const trpc = useTRPC();
|
||||||
|
return useSuspenseQuery(
|
||||||
|
trpc.marketingPages.pageBySlug.queryOptions({ slug }),
|
||||||
|
) as { data: Page | null };
|
||||||
|
}
|
||||||
12
packages/marketing-pages/src/ui/hooks/use-site-settings.ts
Normal file
12
packages/marketing-pages/src/ui/hooks/use-site-settings.ts
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { useSuspenseQuery } from "@tanstack/react-query";
|
||||||
|
import { useTRPC } from "@repo/core-trpc";
|
||||||
|
import type { SiteSettings } from "../../entities/models/site-settings";
|
||||||
|
|
||||||
|
export function useSiteSettings() {
|
||||||
|
const trpc = useTRPC();
|
||||||
|
return useSuspenseQuery(
|
||||||
|
trpc.marketingPages.siteSettings.queryOptions({}),
|
||||||
|
) as { data: SiteSettings };
|
||||||
|
}
|
||||||
@@ -1 +1,5 @@
|
|||||||
export { pageBySlugQuery, siteSettingsQuery } from "./query";
|
export { pageBySlugQuery, siteSettingsQuery } from "./query";
|
||||||
|
export { usePageBySlug } from "./hooks/use-page-by-slug";
|
||||||
|
export { useSiteSettings } from "./hooks/use-site-settings";
|
||||||
|
export { PageHero, type PageHeroProps } from "./components/page-hero";
|
||||||
|
export { PageContent, type PageContentProps } from "./components/page-content";
|
||||||
|
|||||||
@@ -19,9 +19,13 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@repo/core-shared": "workspace:*",
|
"@repo/core-shared": "workspace:*",
|
||||||
|
"@repo/core-trpc": "workspace:^",
|
||||||
|
"@tanstack/react-query": "^5.66.0",
|
||||||
|
"@trpc/client": "^11.17.0",
|
||||||
"@trpc/server": "^11.0.0",
|
"@trpc/server": "^11.0.0",
|
||||||
"inversify": "^6.2.0",
|
"inversify": "^6.2.0",
|
||||||
"payload": "^3.14.0",
|
"payload": "^3.14.0",
|
||||||
|
"react": "^19.0.0",
|
||||||
"reflect-metadata": "^0.2.2",
|
"reflect-metadata": "^0.2.2",
|
||||||
"zod": "^3.24.0"
|
"zod": "^3.24.0"
|
||||||
},
|
},
|
||||||
@@ -30,6 +34,7 @@
|
|||||||
"@repo/core-testing": "workspace:*",
|
"@repo/core-testing": "workspace:*",
|
||||||
"@repo/core-typescript": "workspace:*",
|
"@repo/core-typescript": "workspace:*",
|
||||||
"@types/node": "^22.0.0",
|
"@types/node": "^22.0.0",
|
||||||
|
"@types/react": "^19.0.0",
|
||||||
"@vitest/coverage-v8": "^3.2.4",
|
"@vitest/coverage-v8": "^3.2.4",
|
||||||
"vitest": "^3.1.0"
|
"vitest": "^3.1.0"
|
||||||
}
|
}
|
||||||
|
|||||||
46
packages/navigation/src/ui/components/site-header.tsx
Normal file
46
packages/navigation/src/ui/components/site-header.tsx
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { useHeader } from "../hooks/use-header";
|
||||||
|
|
||||||
|
export type SiteHeaderProps = {
|
||||||
|
siteName: string;
|
||||||
|
siteDescription?: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
export function SiteHeader({ siteName, siteDescription }: SiteHeaderProps) {
|
||||||
|
const { data: header } = useHeader();
|
||||||
|
|
||||||
|
return (
|
||||||
|
<header className="border-b border-border bg-background px-6 py-4">
|
||||||
|
<div className="mx-auto flex max-w-5xl items-center justify-between">
|
||||||
|
<div>
|
||||||
|
<a href="/">
|
||||||
|
<span className="text-lg font-semibold text-foreground">
|
||||||
|
{siteName}
|
||||||
|
</span>
|
||||||
|
</a>
|
||||||
|
{siteDescription ? (
|
||||||
|
<p className="text-sm text-muted-foreground">{siteDescription}</p>
|
||||||
|
) : null}
|
||||||
|
</div>
|
||||||
|
<nav>
|
||||||
|
<ul className="flex gap-4">
|
||||||
|
{header.items.map((item) => (
|
||||||
|
<li key={item.href}>
|
||||||
|
<a
|
||||||
|
href={item.href}
|
||||||
|
{...(item.external
|
||||||
|
? { target: "_blank", rel: "noopener noreferrer" }
|
||||||
|
: {})}
|
||||||
|
className="text-sm font-medium text-foreground hover:text-primary"
|
||||||
|
>
|
||||||
|
{item.label}
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
))}
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
);
|
||||||
|
}
|
||||||
15
packages/navigation/src/ui/hooks/use-header.ts
Normal file
15
packages/navigation/src/ui/hooks/use-header.ts
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { useSuspenseQuery } from "@tanstack/react-query";
|
||||||
|
import { useTRPC } from "@repo/core-trpc";
|
||||||
|
|
||||||
|
// eslint-disable-next-line @typescript-eslint/explicit-function-return-type
|
||||||
|
export function useHeader() {
|
||||||
|
const trpc = useTRPC();
|
||||||
|
return useSuspenseQuery(trpc.navigation.header.queryOptions({})) as {
|
||||||
|
data: {
|
||||||
|
items: { label: string; href: string; external: boolean }[];
|
||||||
|
logoId?: string;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -1 +1,3 @@
|
|||||||
export { headerQuery } from "./query";
|
export { headerQuery } from "./query";
|
||||||
|
export { useHeader } from "./hooks/use-header";
|
||||||
|
export { SiteHeader, type SiteHeaderProps } from "./components/site-header";
|
||||||
|
|||||||
Reference in New Issue
Block a user