mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 07:43:16 +10:00
* chore: add cursor pointer * fix: tooltip color * chore: add tooltip * fix: admin pages in mobile
84 lines
2.0 KiB
TypeScript
84 lines
2.0 KiB
TypeScript
'use client';
|
|
|
|
import { HTMLAttributes } from 'react';
|
|
|
|
import Link from 'next/link';
|
|
import { usePathname } from 'next/navigation';
|
|
|
|
import { BarChart3, FileStack, User2, Wallet2 } from 'lucide-react';
|
|
|
|
import { cn } from '@documenso/ui/lib/utils';
|
|
import { Button } from '@documenso/ui/primitives/button';
|
|
|
|
export type AdminNavProps = HTMLAttributes<HTMLDivElement>;
|
|
|
|
export const AdminNav = ({ className, ...props }: AdminNavProps) => {
|
|
const pathname = usePathname();
|
|
|
|
return (
|
|
<div
|
|
className={cn(
|
|
'flex gap-x-2.5 gap-y-2 overflow-hidden overflow-x-auto md:flex-col',
|
|
className,
|
|
)}
|
|
{...props}
|
|
>
|
|
<Button
|
|
variant="ghost"
|
|
className={cn(
|
|
'justify-start md:w-full',
|
|
pathname?.startsWith('/admin/stats') && 'bg-secondary',
|
|
)}
|
|
asChild
|
|
>
|
|
<Link href="/admin/stats">
|
|
<BarChart3 className="mr-2 h-5 w-5" />
|
|
Stats
|
|
</Link>
|
|
</Button>
|
|
|
|
<Button
|
|
variant="ghost"
|
|
className={cn(
|
|
'justify-start md:w-full',
|
|
pathname?.startsWith('/admin/users') && 'bg-secondary',
|
|
)}
|
|
asChild
|
|
>
|
|
<Link href="/admin/users">
|
|
<User2 className="mr-2 h-5 w-5" />
|
|
Users
|
|
</Link>
|
|
</Button>
|
|
|
|
<Button
|
|
variant="ghost"
|
|
className={cn(
|
|
'justify-start md:w-full',
|
|
pathname?.startsWith('/admin/documents') && 'bg-secondary',
|
|
)}
|
|
asChild
|
|
>
|
|
<Link href="/admin/documents">
|
|
<FileStack className="mr-2 h-5 w-5" />
|
|
Documents
|
|
</Link>
|
|
</Button>
|
|
|
|
<Button
|
|
variant="ghost"
|
|
className={cn(
|
|
'justify-start md:w-full',
|
|
pathname?.startsWith('/admin/subscriptions') && 'bg-secondary',
|
|
)}
|
|
asChild
|
|
>
|
|
<Link href="/admin/subscriptions">
|
|
<Wallet2 className="mr-2 h-5 w-5" />
|
|
Subscriptions
|
|
</Link>
|
|
</Button>
|
|
</div>
|
|
);
|
|
};
|