mirror of
https://github.com/documenso/documenso.git
synced 2025-11-09 20:12:31 +10:00
96 lines
2.7 KiB
TypeScript
96 lines
2.7 KiB
TypeScript
import type { HTMLAttributes } from 'react';
|
|
import { useEffect, useState } from 'react';
|
|
|
|
import { msg } from '@lingui/core/macro';
|
|
import { useLingui } from '@lingui/react';
|
|
import { Trans } from '@lingui/react/macro';
|
|
import { Search } from 'lucide-react';
|
|
import { Link, useLocation, useParams } from 'react-router';
|
|
|
|
import { getRootHref } from '@documenso/lib/utils/params';
|
|
import { cn } from '@documenso/ui/lib/utils';
|
|
import { Button } from '@documenso/ui/primitives/button';
|
|
|
|
const navigationLinks = [
|
|
{
|
|
href: '/documents',
|
|
label: msg`Documents`,
|
|
},
|
|
{
|
|
href: '/templates',
|
|
label: msg`Templates`,
|
|
},
|
|
];
|
|
|
|
export type AppNavDesktopProps = HTMLAttributes<HTMLDivElement> & {
|
|
setIsCommandMenuOpen: (value: boolean) => void;
|
|
};
|
|
|
|
export const AppNavDesktop = ({
|
|
className,
|
|
setIsCommandMenuOpen,
|
|
...props
|
|
}: AppNavDesktopProps) => {
|
|
const { _ } = useLingui();
|
|
|
|
const { pathname } = useLocation();
|
|
const params = useParams();
|
|
|
|
const [modifierKey, setModifierKey] = useState(() => 'Ctrl');
|
|
|
|
const rootHref = getRootHref(params, { returnEmptyRootString: true });
|
|
|
|
useEffect(() => {
|
|
const userAgent = typeof navigator !== 'undefined' ? navigator.userAgent : 'unknown';
|
|
const isMacOS = /Macintosh|Mac\s+OS\s+X/i.test(userAgent);
|
|
|
|
setModifierKey(isMacOS ? '⌘' : 'Ctrl');
|
|
}, []);
|
|
|
|
return (
|
|
<div
|
|
className={cn(
|
|
'ml-8 hidden flex-1 items-center gap-x-12 md:flex md:justify-between',
|
|
className,
|
|
)}
|
|
{...props}
|
|
>
|
|
<div className="flex items-baseline gap-x-6">
|
|
{navigationLinks.map(({ href, label }) => (
|
|
<Link
|
|
key={href}
|
|
to={`${rootHref}${href}`}
|
|
className={cn(
|
|
'text-muted-foreground dark:text-muted-foreground/60 focus-visible:ring-ring ring-offset-background rounded-md font-medium leading-5 hover:opacity-80 focus-visible:outline-none focus-visible:ring-2',
|
|
{
|
|
'text-foreground dark:text-muted-foreground': pathname?.startsWith(
|
|
`${rootHref}${href}`,
|
|
),
|
|
},
|
|
)}
|
|
>
|
|
{_(label)}
|
|
</Link>
|
|
))}
|
|
</div>
|
|
|
|
<Button
|
|
variant="outline"
|
|
className="text-muted-foreground flex w-96 items-center justify-between rounded-lg"
|
|
onClick={() => setIsCommandMenuOpen(true)}
|
|
>
|
|
<div className="flex items-center">
|
|
<Search className="mr-2 h-5 w-5" />
|
|
<Trans>Search</Trans>
|
|
</div>
|
|
|
|
<div>
|
|
<div className="text-muted-foreground bg-muted flex items-center rounded-md px-1.5 py-0.5 text-xs tracking-wider">
|
|
{modifierKey}+K
|
|
</div>
|
|
</div>
|
|
</Button>
|
|
</div>
|
|
);
|
|
};
|