Nyavokevin 9e5cc5ab1a
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
add dark theme
2025-09-18 20:34:07 +03:00

63 lines
2.0 KiB
Vue

<script setup lang="ts">
import Heading from '@/components/Heading.vue';
import { Button } from '@/components/ui/button';
import { Separator } from '@/components/ui/separator';
import { appearance } from '@/routes';
import { edit as editPassword } from '@/routes/password';
import { edit } from '@/routes/profile';
import { type NavItem } from '@/types';
import { Link } from '@inertiajs/vue3';
const sidebarNavItems: NavItem[] = [
{
title: 'Profile',
href: edit(),
},
{
title: 'Password',
href: editPassword(),
},
{
title: 'Appearance',
href: appearance(),
},
];
const currentPath = typeof window !== undefined ? window.location.pathname : '';
</script>
<template>
<div class="px-4 py-6">
<Heading title="Settings" description="Manage your profile and account settings" />
<div class="flex flex-col lg:flex-row lg:space-x-12">
<aside class="w-full max-w-xl lg:w-48">
<nav class="flex flex-col space-y-1 space-x-0">
<Button
v-for="item in sidebarNavItems"
:key="typeof item.href === 'string' ? item.href : item.href?.url"
variant="ghost"
:class="[
'w-full justify-start',
{ 'bg-muted': currentPath === (typeof item.href === 'string' ? item.href : item.href?.url) },
]"
as-child
>
<Link :href="item.href">
{{ item.title }}
</Link>
</Button>
</nav>
</aside>
<Separator class="my-6 lg:hidden" />
<div class="flex-1 md:max-w-2xl">
<section class="max-w-xl space-y-12">
<slot />
</section>
</div>
</div>
</div>
</template>