2023-10-02 19:03:03 +00:00
|
|
|
import { FC } from "react";
|
2023-09-25 12:13:55 +00:00
|
|
|
import { observer } from "mobx-react-lite";
|
2023-01-26 18:12:20 +00:00
|
|
|
// 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-08 07:20:27 +00:00
|
|
|
// mobx store
|
|
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
2023-01-26 18:12:20 +00:00
|
|
|
|
2023-10-02 19:03:03 +00:00
|
|
|
export interface IAppSidebar {}
|
2023-01-26 18:12:20 +00:00
|
|
|
|
2023-10-02 19:03:03 +00:00
|
|
|
export const AppSidebar: FC<IAppSidebar> = observer(() => {
|
|
|
|
// store
|
2023-09-25 12:13:55 +00:00
|
|
|
const { theme: themStore } = useMobxStore();
|
2023-01-26 18:12:20 +00:00
|
|
|
|
|
|
|
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-09-25 12:13:55 +00:00
|
|
|
themStore?.sidebarCollapsed ? "" : "md:w-[280px]"
|
2023-10-02 19:03:03 +00:00
|
|
|
} ${themStore?.sidebarCollapsed ? "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 />
|
2023-10-02 19:03:03 +00:00
|
|
|
<WorkspaceHelpSection />
|
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
|
|
|
);
|
2023-08-08 07:20:27 +00:00
|
|
|
});
|