2023-01-26 18:12:20 +00:00
|
|
|
// hooks
|
|
|
|
import useTheme from "hooks/use-theme";
|
|
|
|
// components
|
|
|
|
import {
|
|
|
|
WorkspaceHelpSection,
|
|
|
|
WorkspaceSidebarDropdown,
|
|
|
|
WorkspaceSidebarMenu,
|
|
|
|
} from "components/workspace";
|
|
|
|
import { ProjectSidebarList } from "components/project";
|
|
|
|
|
|
|
|
export interface SidebarProps {
|
|
|
|
toggleSidebar: boolean;
|
|
|
|
setToggleSidebar: React.Dispatch<React.SetStateAction<boolean>>;
|
|
|
|
}
|
|
|
|
|
2023-05-16 05:11:37 +00:00
|
|
|
const Sidebar: React.FC<SidebarProps> = ({ toggleSidebar, setToggleSidebar }) => {
|
2023-01-26 18:12:20 +00:00
|
|
|
// theme
|
|
|
|
const { collapsed: sidebarCollapse } = useTheme();
|
|
|
|
|
|
|
|
return (
|
2023-05-05 11:37:29 +00:00
|
|
|
<div
|
2023-07-17 10:58:23 +00:00
|
|
|
className={`fixed md:relative inset-y-0 flex flex-col bg-custom-sidebar-background-100 h-full flex-shrink-0 flex-grow-0 border-r border-custom-sidebar-border-200 z-20 duration-300 ${
|
2023-07-14 09:38:07 +00:00
|
|
|
sidebarCollapse ? "" : "md:w-[280px]"
|
2023-07-13 13:05:43 +00:00
|
|
|
} ${toggleSidebar ? "left-0" : "-left-full md:left-0"}`}
|
2023-05-05 11:37:29 +00:00
|
|
|
>
|
2023-07-13 13:05:43 +00:00
|
|
|
<div className="flex h-full w-full flex-1 flex-col">
|
2023-05-05 11:37:29 +00:00
|
|
|
<WorkspaceSidebarDropdown />
|
2023-05-16 05:11:37 +00:00
|
|
|
<WorkspaceSidebarMenu />
|
2023-05-05 11:37:29 +00:00
|
|
|
<ProjectSidebarList />
|
|
|
|
<WorkspaceHelpSection setSidebarActive={setToggleSidebar} />
|
2023-01-26 18:12:20 +00:00
|
|
|
</div>
|
2023-05-05 11:37:29 +00:00
|
|
|
</div>
|
2023-01-26 18:12:20 +00:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default Sidebar;
|