mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
1a534a3c19
* chore: global bar graph component * chore: global pie graph component * chore: global line graph component * chore: removed unnecessary file * chore: refactored global chart components to accept all props * chore: function to convert response to chart data * chore: global calendar graph component added * chore: global scatter plot graph component * feat: analytics boilerplate created * chore: null value for segment and project * chore: clean up file * chore: change project query param key * chore: export, refresh buttons, analytics table * fix: analytics fetch key error * chore: show only integer values in the y-axis * chore: custom x-axis tick values and bar colors * refactor: divide analytics page into granular components * chore: convert analytics page to modal, save analytics modal * fix: build error * fix: modal overflow issues, analytics loading screen * chore: custom tooltip, refactor: graphs folder structure * refactor: folder structure, chore: x-axis tick values for larger data * chore: code cleanup * chore: remove unnecessary files * fix: refresh analytics button on error * feat: scope and demand analytics * refactor: scope and demand and custom analytics folder structure * fix: dynamic import type * chore: minor updates * feat: project, cycle and module level analytics * style: project analytics modal * fix: merge conflicts
49 lines
1.3 KiB
TypeScript
49 lines
1.3 KiB
TypeScript
// 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>>;
|
|
isAnalyticsModalOpen: boolean;
|
|
setAnalyticsModal: React.Dispatch<React.SetStateAction<boolean>>;
|
|
}
|
|
|
|
const Sidebar: React.FC<SidebarProps> = ({
|
|
toggleSidebar,
|
|
setToggleSidebar,
|
|
isAnalyticsModalOpen,
|
|
setAnalyticsModal,
|
|
}) => {
|
|
// theme
|
|
const { collapsed: sidebarCollapse } = useTheme();
|
|
|
|
return (
|
|
<div
|
|
className={`z-20 h-full flex-shrink-0 border-r border-brand-base ${
|
|
sidebarCollapse ? "" : "w-auto md:w-[17rem]"
|
|
} fixed inset-y-0 top-0 ${
|
|
toggleSidebar ? "left-0" : "-left-full md:left-0"
|
|
} flex h-full flex-col bg-brand-sidebar duration-300 md:relative`}
|
|
>
|
|
<div className="flex h-full flex-1 flex-col">
|
|
<WorkspaceSidebarDropdown />
|
|
<WorkspaceSidebarMenu
|
|
isAnalyticsModalOpen={isAnalyticsModalOpen}
|
|
setAnalyticsModal={setAnalyticsModal}
|
|
/>
|
|
<ProjectSidebarList />
|
|
<WorkspaceHelpSection setSidebarActive={setToggleSidebar} />
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Sidebar;
|