import { Fragment } from "react"; import { useRouter } from "next/router"; import Link from "next/link"; // headless ui import { Menu, Transition } from "@headlessui/react"; // hooks import useUser from "hooks/use-user"; import useTheme from "hooks/use-theme"; import useWorkspaces from "hooks/use-workspaces"; import useToast from "hooks/use-toast"; // services import userService from "services/user.service"; import authenticationService from "services/authentication.service"; // components import { Avatar, Loader } from "components/ui"; // icons import { CheckIcon, PlusIcon } from "@heroicons/react/24/outline"; // helpers import { truncateText } from "helpers/string.helper"; // types import { IWorkspace } from "types"; // Static Data const userLinks = (workspaceSlug: string) => [ { name: "Workspace Settings", href: `/${workspaceSlug}/settings`, }, { name: "Workspace Invites", href: "/invitations", }, { name: "My Profile", href: `/${workspaceSlug}/me/profile`, }, ]; export const WorkspaceSidebarDropdown = () => { const router = useRouter(); const { workspaceSlug } = router.query; // fetching user details const { user, mutateUser } = useUser(); // fetching theme context const { collapsed: sidebarCollapse } = useTheme(); const { setToastAlert } = useToast(); // fetching workspaces const { activeWorkspace, workspaces } = useWorkspaces(); const handleWorkspaceNavigation = (workspace: IWorkspace) => { userService .updateUser({ last_workspace_id: workspace?.id, }) .then(() => { mutateUser(); router.push(`/${workspace.slug}/`); }) .catch(() => setToastAlert({ type: "error", title: "Error!", message: "Failed to navigate to the workspace. Please try again.", }) ); }; const handleSignOut = async () => { await authenticationService .signOut() .then(() => { mutateUser(undefined); router.push("/"); }) .catch(() => setToastAlert({ type: "error", title: "Error!", message: "Failed to sign out. Please try again.", }) ); }; return (
{activeWorkspace?.logo && activeWorkspace.logo !== "" ? ( Workspace Logo ) : ( activeWorkspace?.name?.charAt(0) ?? "..." )}
{!sidebarCollapse && (

{activeWorkspace?.name ? truncateText(activeWorkspace.name, 14) : "Loading..."}

)}
{!sidebarCollapse && (
)}
{user?.email}
Workspace {workspaces ? (
{workspaces.length > 0 ? ( workspaces.map((workspace) => ( {({ active }) => ( )} )) ) : (

No workspace found!

)} { router.push("/create-workspace"); }} className="flex w-full items-center gap-1 text-sm text-custom-sidebar-text-200" > Create Workspace
) : (
)}
{userLinks(workspaceSlug as string).map((link, index) => ( {link.name} ))}
Sign out
); };