feat(app): extend navigation with changelog links and accordion

This commit is contained in:
Lars Hampe 2024-10-01 11:02:19 +02:00
parent 558e0758d8
commit 048855049d
4 changed files with 121 additions and 28 deletions

View File

@ -1,4 +1,8 @@
import {
Accordion,
AccordionContent,
AccordionItem,
AccordionTrigger,
Button,
Card,
CardContent,
@ -24,18 +28,50 @@ export const Navigation = () => {
</Button>
</div>
<div className="flex-1">
<nav className="grid items-start px-2 text-sm font-medium lg:px-4">
{NavigationRoutes.map((route) => (
<Link
key={route.to}
to={route.to}
className="flex items-center gap-3 rounded-lg px-3 py-2 transition-all hover:text-primary"
activeProps={{ className: 'bg-muted text-primary' }}
>
<route.icon className="h-4 w-4" />
{route.name}
</Link>
))}
<nav className="grid items-start px-2 text-sm font-medium lg:px-4 gap-2">
{NavigationRoutes.map((route) => {
if (!route.childrens) {
return (
<Link
key={route.name}
to={route.to}
className="flex items-center gap-3 rounded-lg px-3 py-2 transition-all hover:text-primary"
activeProps={{ className: 'bg-muted text-primary' }}
activeOptions={{ exact: true }}
>
<route.icon className="h-4 w-4" />
{route.name}
</Link>
)
}
return (
<Accordion
type="single"
collapsible
key={route.name}
defaultValue="changelog"
>
<AccordionItem value="changelog">
<AccordionTrigger>Changelog</AccordionTrigger>
<AccordionContent className="gap-2 flex flex-col">
{route.childrens.map((childRoute) => (
<Link
key={childRoute.name}
to={childRoute.to}
className="flex items-center gap-3 rounded-lg px-3 py-2 transition-all hover:text-primary"
activeProps={{ className: 'bg-muted text-primary' }}
activeOptions={{ exact: true }}
>
<childRoute.icon className="h-4 w-4" />
{childRoute.name}
</Link>
))}
</AccordionContent>
</AccordionItem>
</Accordion>
)
})}
</nav>
</div>
<div className="mt-auto p-4">

View File

@ -1,4 +1,8 @@
import {
Accordion,
AccordionContent,
AccordionItem,
AccordionTrigger,
Button,
Card,
CardContent,
@ -30,19 +34,49 @@ export const NavigationMobile = () => {
>
<span className="sr-only">boring.tools</span>
</Link>
{NavigationRoutes.map((route) => (
<Link
key={route.to}
to={route.to}
className="mx-[-0.65rem] flex items-center gap-4 rounded-xl px-3 py-2 hover:text-foreground"
activeProps={{
className: 'bg-muted text-foreground',
}}
>
<route.icon className="h-5 w-5" />
{route.name}
</Link>
))}
{NavigationRoutes.map((route) => {
if (!route.childrens) {
return (
<Link
key={route.name}
to={route.to}
className="flex items-center gap-3 rounded-lg px-3 py-2 transition-all hover:text-primary"
activeProps={{ className: 'bg-muted text-primary' }}
activeOptions={{ exact: true }}
>
<route.icon className="h-4 w-4" />
{route.name}
</Link>
)
}
return (
<Accordion
type="single"
collapsible
key={route.name}
defaultValue="changelog"
>
<AccordionItem value="changelog">
<AccordionTrigger>Changelog</AccordionTrigger>
<AccordionContent className="gap-2 flex flex-col">
{route.childrens.map((childRoute) => (
<Link
key={childRoute.name}
to={childRoute.to}
className="flex items-center gap-3 rounded-lg px-3 py-2 transition-all hover:text-primary"
activeProps={{ className: 'bg-muted text-primary' }}
activeOptions={{ exact: true }}
>
<childRoute.icon className="h-4 w-4" />
{childRoute.name}
</Link>
))}
</AccordionContent>
</AccordionItem>
</Accordion>
)
})}
</nav>
<div className="mt-auto">
<Card>

View File

@ -1,9 +1,32 @@
import { HouseIcon } from 'lucide-react'
import type { ReactNode } from '@tanstack/react-router'
import { FileStackIcon, HouseIcon, LayoutDashboardIcon } from 'lucide-react'
export const NavigationRoutes = [
type Route = {
name: string
to?: string
icon?: ReactNode
childrens?: Route[]
}
export const NavigationRoutes: Route[] = [
{
name: 'Dashboard',
to: '/',
icon: HouseIcon,
icon: LayoutDashboardIcon,
},
{
name: 'Changelog',
childrens: [
{
name: 'Overview',
to: '/changelog',
icon: HouseIcon,
},
{
name: 'Versions',
to: '/changelog/version',
icon: FileStackIcon,
},
],
},
]

BIN
bun.lockb

Binary file not shown.