* MED-109: add doctor role and basic view * add role to accounts * remove old super admin and doctor sql
64 lines
1.7 KiB
TypeScript
64 lines
1.7 KiB
TypeScript
'use client';
|
|
|
|
import Link from 'next/link';
|
|
import { usePathname } from 'next/navigation';
|
|
|
|
import { UserWorkspace } from '@/app/home/(user)/_lib/server/load-user-workspace';
|
|
import { LayoutDashboard } from 'lucide-react';
|
|
|
|
import {
|
|
Sidebar,
|
|
SidebarContent,
|
|
SidebarFooter,
|
|
SidebarGroup,
|
|
SidebarGroupContent,
|
|
SidebarGroupLabel,
|
|
SidebarHeader,
|
|
SidebarMenu,
|
|
SidebarMenuButton,
|
|
useSidebar,
|
|
} from '@kit/ui/shadcn-sidebar';
|
|
import { Trans } from '@kit/ui/trans';
|
|
|
|
import { AppLogo } from '~/components/app-logo';
|
|
import { ProfileAccountDropdownContainer } from '~/components/personal-account-dropdown-container';
|
|
|
|
export function DoctorSidebar({
|
|
accounts,
|
|
}: {
|
|
accounts: UserWorkspace['accounts'];
|
|
}) {
|
|
const path = usePathname();
|
|
const { open } = useSidebar();
|
|
return (
|
|
<Sidebar collapsible="icon">
|
|
<SidebarHeader className={'m-2'}>
|
|
<AppLogo href={'/doctor'} className="max-w-full" compact={!open} />
|
|
</SidebarHeader>
|
|
|
|
<SidebarContent>
|
|
<SidebarGroup>
|
|
<SidebarGroupLabel>
|
|
<Trans i18nKey="common:doctor" />
|
|
</SidebarGroupLabel>
|
|
|
|
<SidebarGroupContent>
|
|
<SidebarMenu>
|
|
<SidebarMenuButton isActive={path === '/doctor'} asChild>
|
|
<Link className={'flex gap-2.5'} href={'/doctor'}>
|
|
<LayoutDashboard className={'h-4'} />
|
|
<span>Dashboard</span>
|
|
</Link>
|
|
</SidebarMenuButton>
|
|
</SidebarMenu>
|
|
</SidebarGroupContent>
|
|
</SidebarGroup>
|
|
</SidebarContent>
|
|
|
|
<SidebarFooter>
|
|
<ProfileAccountDropdownContainer accounts={accounts} />
|
|
</SidebarFooter>
|
|
</Sidebar>
|
|
);
|
|
}
|