mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 04:22:32 +10:00
255 lines
9.3 KiB
TypeScript
255 lines
9.3 KiB
TypeScript
import { Fragment, useEffect } from "react";
|
|
import { Disclosure, Menu, Transition } from "@headlessui/react";
|
|
import Link from "next/link";
|
|
import { useRouter } from "next/router";
|
|
import { signOut, useSession } from "next-auth/react";
|
|
import avatarFromInitials from "avatar-from-initials";
|
|
import { toast, Toaster } from "react-hot-toast";
|
|
|
|
import {
|
|
Bars3Icon,
|
|
BellIcon,
|
|
XMarkIcon,
|
|
UserCircleIcon,
|
|
ArrowRightOnRectangleIcon,
|
|
DocumentTextIcon,
|
|
ChartBarIcon,
|
|
WrenchIcon,
|
|
} from "@heroicons/react/24/outline";
|
|
import Logo from "./logo";
|
|
|
|
let user: {
|
|
id?: number | undefined;
|
|
name?: string | null;
|
|
email?: string | null;
|
|
image?: string | null;
|
|
};
|
|
|
|
const navigation = [
|
|
{
|
|
name: "Dashboard",
|
|
href: "/dashboard",
|
|
current: false,
|
|
icon: ChartBarIcon,
|
|
},
|
|
{
|
|
name: "Documents",
|
|
href: "/documents",
|
|
current: false,
|
|
icon: DocumentTextIcon,
|
|
},
|
|
{
|
|
name: "Settings",
|
|
href: "/settings",
|
|
current: true,
|
|
icon: WrenchIcon,
|
|
},
|
|
];
|
|
const userNavigation = [
|
|
{ name: "Your Profile", href: "/settings/profile", icon: UserCircleIcon },
|
|
{
|
|
name: "Sign out",
|
|
href: "",
|
|
click: async (e: any) => {
|
|
e.preventDefault();
|
|
const res: any = await toast.promise(
|
|
signOut({ callbackUrl: "/login" }),
|
|
{
|
|
loading: "Logging out...",
|
|
success: "Your are logged out.",
|
|
error: "Could not log out :/",
|
|
},
|
|
{
|
|
style: {
|
|
minWidth: "200px",
|
|
},
|
|
success: {
|
|
duration: 10000,
|
|
},
|
|
}
|
|
);
|
|
},
|
|
icon: ArrowRightOnRectangleIcon,
|
|
},
|
|
];
|
|
|
|
function classNames(...classes: any) {
|
|
return classes.filter(Boolean).join(" ");
|
|
}
|
|
|
|
export default function TopNavigation() {
|
|
const session = useSession();
|
|
|
|
useEffect(() => {
|
|
user = { ...session.data?.user };
|
|
});
|
|
|
|
const router = useRouter();
|
|
navigation.forEach((element) => {
|
|
element.current = router.route.endsWith("/" + element.href.split("/")[1]);
|
|
});
|
|
|
|
return (
|
|
<>
|
|
<Disclosure as="nav" className="border-b border-gray-200 bg-white">
|
|
{({ open }) => (
|
|
<>
|
|
<div className="mx-auto max-w-7xl px-4 sm:px-6 lg:px-8">
|
|
<div className="flex h-16 justify-between">
|
|
<div className="flex">
|
|
<div className="flex flex-shrink-0 items-center">
|
|
<Logo></Logo>
|
|
</div>
|
|
<div className="hidden sm:-my-px sm:ml-6 sm:flex sm:space-x-8">
|
|
{navigation.map((item) => (
|
|
<Link
|
|
key={item.name}
|
|
href={item.href}
|
|
className={classNames(
|
|
item.current
|
|
? "border-neon text-brown"
|
|
: "border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700",
|
|
"inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
|
)}
|
|
aria-current={item.current ? "page" : undefined}
|
|
>
|
|
<item.icon
|
|
className="flex-shrink-0 -ml-1 mr-3 h-6 w-6 inline"
|
|
aria-hidden="true"
|
|
></item.icon>
|
|
{item.name}
|
|
</Link>
|
|
))}
|
|
</div>
|
|
</div>
|
|
<div className="hidden sm:ml-6 sm:flex sm:items-center">
|
|
<span className="text-sm">
|
|
<p className="font-bold">{user?.name || ""}</p>
|
|
<p>{user?.email}</p>
|
|
</span>
|
|
<Menu as="div" className="relative ml-3">
|
|
<div>
|
|
<Menu.Button className="flex max-w-xs items-center rounded-full bg-white text-sm focus:outline-none focus:ring-2 focus:ring-neon focus:ring-offset-2">
|
|
<span className="sr-only">Open user menu</span>
|
|
<div
|
|
key={user?.email}
|
|
dangerouslySetInnerHTML={{
|
|
__html: avatarFromInitials(
|
|
user?.name || "" || "",
|
|
40
|
|
),
|
|
}}
|
|
/>
|
|
</Menu.Button>
|
|
</div>
|
|
<Transition
|
|
as={Fragment}
|
|
enter="transition ease-out duration-200"
|
|
enterFrom="transform opacity-0 scale-95"
|
|
enterTo="transform opacity-100 scale-100"
|
|
leave="transition ease-in duration-75"
|
|
leaveFrom="transform opacity-100 scale-100"
|
|
leaveTo="transform opacity-0 scale-95"
|
|
>
|
|
<Menu.Items className="absolute right-0 z-10 mt-2 w-48 origin-top-right rounded-md bg-white py-1 shadow-lg ring-1 ring-black ring-opacity-5 focus:outline-none">
|
|
{userNavigation.map((item) => (
|
|
<Menu.Item key={item.name}>
|
|
{({ active }) => (
|
|
<Link
|
|
href={item.href}
|
|
onClick={item.click}
|
|
className={classNames(
|
|
active ? "bg-gray-100" : "",
|
|
"block px-4 py-2 text-sm text-gray-700"
|
|
)}
|
|
>
|
|
<item.icon
|
|
className="flex-shrink-0 -ml-1 mr-3 h-6 w-6 inline"
|
|
aria-hidden="true"
|
|
></item.icon>
|
|
{item.name}
|
|
</Link>
|
|
)}
|
|
</Menu.Item>
|
|
))}
|
|
</Menu.Items>
|
|
</Transition>
|
|
</Menu>
|
|
</div>
|
|
<div className="-mr-2 flex items-center sm:hidden">
|
|
{/* Mobile menu button */}
|
|
<Disclosure.Button className="inline-flex items-center justify-center rounded-md bg-white p-2 text-gray-400 hover:bg-gray-100 hover:text-gray-500 focus:outline-none focus:ring-2 focus:ring-neon focus:ring-offset-2">
|
|
<span className="sr-only">Open main menu</span>
|
|
{open ? (
|
|
<XMarkIcon className="block h-6 w-6" aria-hidden="true" />
|
|
) : (
|
|
<Bars3Icon className="block h-6 w-6" aria-hidden="true" />
|
|
)}
|
|
</Disclosure.Button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<Disclosure.Panel className="sm:hidden">
|
|
<div className="space-y-1 pt-2 pb-3">
|
|
{navigation.map((item) => (
|
|
<Link
|
|
key={item.name}
|
|
href={item.href}
|
|
className={classNames(
|
|
item.current
|
|
? "bg-teal-50 border-teal-500 text-teal-700"
|
|
: "border-transparent text-gray-600 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-800",
|
|
"block pl-3 pr-4 py-2 border-l-4 text-base font-medium"
|
|
)}
|
|
aria-current={item.current ? "page" : undefined}
|
|
>
|
|
{item.name}
|
|
</Link>
|
|
))}
|
|
</div>
|
|
<div className="border-t border-gray-200 pt-4 pb-3">
|
|
<div className="flex items-center px-4">
|
|
<div className="flex-shrink-0">
|
|
<div
|
|
key={user?.email}
|
|
dangerouslySetInnerHTML={{
|
|
__html: avatarFromInitials(user?.name || "" || "", 40),
|
|
}}
|
|
/>
|
|
</div>
|
|
<div className="ml-3">
|
|
<div className="text-base font-medium text-gray-800">
|
|
{user?.name || ""}
|
|
</div>
|
|
<div className="text-sm font-medium text-gray-500">
|
|
{user?.email}
|
|
</div>
|
|
</div>
|
|
<button
|
|
type="button"
|
|
className="ml-auto flex-shrink-0 rounded-full bg-white p-1 text-gray-400 hover:text-gray-500 focus:outline-none focus:ring-2 focus:ring-neon focus:ring-offset-2"
|
|
></button>
|
|
</div>
|
|
<div className="mt-3 space-y-1">
|
|
{userNavigation.map((item) => (
|
|
<Link
|
|
key={item.name}
|
|
onClick={item.click}
|
|
href={item.href}
|
|
className="block px-4 py-2 text-base font-medium text-gray-500 hover:bg-gray-100 hover:text-gray-800"
|
|
>
|
|
{item.name}
|
|
</Link>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</Disclosure.Panel>
|
|
</>
|
|
)}
|
|
</Disclosure>
|
|
{/* <Toaster position="top-center"></Toaster> */}
|
|
</>
|
|
);
|
|
}
|