2023-01-26 18:12:20 +00:00
|
|
|
// hooks
|
|
|
|
import useTheme from "hooks/use-theme";
|
|
|
|
// components
|
|
|
|
import {
|
|
|
|
WorkspaceHelpSection,
|
|
|
|
WorkspaceSidebarDropdown,
|
|
|
|
WorkspaceSidebarMenu,
|
2023-08-11 10:23:10 +00:00
|
|
|
WorkspaceSidebarQuickAction,
|
2023-01-26 18:12:20 +00:00
|
|
|
} from "components/workspace";
|
|
|
|
import { ProjectSidebarList } from "components/project";
|
2023-08-14 13:48:38 +00:00
|
|
|
import { PublishProjectModal } from "components/project/publish-project/modal";
|
2023-09-04 10:23:46 +00:00
|
|
|
import { ConfirmProjectLeaveModal } from "components/project/confirm-project-leave-modal";
|
2023-08-08 07:20:27 +00:00
|
|
|
// mobx react lite
|
|
|
|
import { observer } from "mobx-react-lite";
|
|
|
|
// mobx store
|
|
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
2023-01-26 18:12:20 +00:00
|
|
|
|
|
|
|
export interface SidebarProps {
|
|
|
|
toggleSidebar: boolean;
|
|
|
|
setToggleSidebar: React.Dispatch<React.SetStateAction<boolean>>;
|
|
|
|
}
|
|
|
|
|
2023-08-08 07:20:27 +00:00
|
|
|
const Sidebar: React.FC<SidebarProps> = observer(({ toggleSidebar, setToggleSidebar }) => {
|
|
|
|
const store: any = useMobxStore();
|
2023-01-26 18:12:20 +00:00
|
|
|
// theme
|
|
|
|
const { collapsed: sidebarCollapse } = useTheme();
|
|
|
|
|
|
|
|
return (
|
2023-05-05 11:37:29 +00:00
|
|
|
<div
|
2023-08-11 10:29:13 +00:00
|
|
|
id="app-sidebar"
|
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-08-08 07:20:27 +00:00
|
|
|
store?.theme?.sidebarCollapsed ? "" : "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-08-11 10:23:10 +00:00
|
|
|
<WorkspaceSidebarQuickAction />
|
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-09-04 10:23:46 +00:00
|
|
|
{/* publish project modal */}
|
2023-08-14 13:48:38 +00:00
|
|
|
<PublishProjectModal />
|
2023-09-04 10:23:46 +00:00
|
|
|
{/* project leave modal */}
|
|
|
|
<ConfirmProjectLeaveModal />
|
2023-05-05 11:37:29 +00:00
|
|
|
</div>
|
2023-01-26 18:12:20 +00:00
|
|
|
);
|
2023-08-08 07:20:27 +00:00
|
|
|
});
|
2023-01-26 18:12:20 +00:00
|
|
|
|
|
|
|
export default Sidebar;
|