12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- import { Link } from '@inertiajs/react';
- import { type PropsWithChildren } from 'react';
- import { Heading } from '@/common/Heading';
- import { cn } from '@/common/helpers/cn';
- import { type NavItem } from '@/common/types';
- import { appearance } from '@/routes';
- import { edit as editPassword } from '@/routes/password';
- import { edit } from '@/routes/profile';
- import { Button } from '@/shadcn/button';
- import { Separator } from '@/shadcn/separator';
- const sidebarNavItems: NavItem[] = [
- {
- title: 'Profile',
- href: edit(),
- icon: null,
- },
- {
- title: 'Password',
- href: editPassword(),
- icon: null,
- },
- {
- title: 'Appearance',
- href: appearance(),
- icon: null,
- },
- ];
- export default function SettingsLayout({ children }: PropsWithChildren) {
- // When server-side rendering, we only render the layout on the client...
- if (typeof window === 'undefined') {
- return null;
- }
- const currentPath = window.location.pathname;
- return (
- <div className="px-4 py-6">
- <Heading title="Settings" description="Manage your profile and account settings" />
- <div className="flex flex-col lg:flex-row lg:space-x-12">
- <aside className="w-full max-w-xl lg:w-48">
- <nav className="flex flex-col space-y-1 space-x-0">
- {sidebarNavItems.map((item, index) => (
- <Button
- key={`${typeof item.href === 'string' ? item.href : item.href.url}-${index}`}
- size="sm"
- variant="ghost"
- asChild
- className={cn('w-full justify-start', {
- 'bg-muted': currentPath === (typeof item.href === 'string' ? item.href : item.href.url),
- })}
- >
- <Link href={item.href} prefetch>
- {item.icon && <item.icon className="h-4 w-4" />}
- {item.title}
- </Link>
- </Button>
- ))}
- </nav>
- </aside>
- <Separator className="my-6 lg:hidden" />
- <div className="flex-1 md:max-w-2xl">
- <section className="max-w-xl space-y-12">{children}</section>
- </div>
- </div>
- </div>
- );
- }
|