mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
87f39d7372
* chore: empty state asset added * chore: empty state asset updated and image path helper function added * chore: empty state asset updated * chore: empty state asset updated and empty state details constant added * chore: empty state component, helper function and comicbox button added * chore: draft, archived and project issue empty state * chore: cycle, module and issue layout empty state * chore: analytics, dashboard, all issues, pages and project view empty state * chore:projects empty state * chore:projects empty state improvement * chore: cycle, module, view and page loader improvement * chore: code refactor
114 lines
4.3 KiB
TypeScript
114 lines
4.3 KiB
TypeScript
import { useRouter } from "next/router";
|
|
import { observer } from "mobx-react-lite";
|
|
// hooks
|
|
import { useApplication, useModule, useUser } from "hooks/store";
|
|
import useLocalStorage from "hooks/use-local-storage";
|
|
// components
|
|
import { ModuleCardItem, ModuleListItem, ModulePeekOverview, ModulesListGanttChartView } from "components/modules";
|
|
import { EmptyState, getEmptyStateImagePath } from "components/empty-state";
|
|
// ui
|
|
import { Loader, Spinner } from "@plane/ui";
|
|
// constants
|
|
import { EUserProjectRoles } from "constants/project";
|
|
|
|
export const ModulesListView: React.FC = observer(() => {
|
|
// router
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId, peekModule } = router.query;
|
|
// store hooks
|
|
const { commandPalette: commandPaletteStore } = useApplication();
|
|
const {
|
|
membership: { currentProjectRole },
|
|
currentUser,
|
|
} = useUser();
|
|
const { projectModuleIds, loader } = useModule();
|
|
|
|
const { storedValue: modulesView } = useLocalStorage("modules_view", "grid");
|
|
|
|
const EmptyStateImagePath = getEmptyStateImagePath("onboarding", "modules", currentUser?.theme.theme === "light");
|
|
|
|
const isEditingAllowed = !!currentProjectRole && currentProjectRole >= EUserProjectRoles.MEMBER;
|
|
|
|
if (loader)
|
|
return (
|
|
<div className="flex items-center justify-center h-full w-full">
|
|
<Spinner />
|
|
</div>
|
|
);
|
|
|
|
if (!projectModuleIds)
|
|
return (
|
|
<Loader className="grid grid-cols-3 gap-4 p-8">
|
|
<Loader.Item height="176px" />
|
|
<Loader.Item height="176px" />
|
|
<Loader.Item height="176px" />
|
|
<Loader.Item height="176px" />
|
|
<Loader.Item height="176px" />
|
|
<Loader.Item height="176px" />
|
|
</Loader>
|
|
);
|
|
|
|
return (
|
|
<>
|
|
{projectModuleIds.length > 0 ? (
|
|
<>
|
|
{modulesView === "list" && (
|
|
<div className="h-full overflow-y-auto">
|
|
<div className="flex h-full w-full justify-between">
|
|
<div className="flex h-full w-full flex-col overflow-y-auto">
|
|
{projectModuleIds.map((moduleId) => (
|
|
<ModuleListItem key={moduleId} moduleId={moduleId} />
|
|
))}
|
|
</div>
|
|
<ModulePeekOverview
|
|
projectId={projectId?.toString() ?? ""}
|
|
workspaceSlug={workspaceSlug?.toString() ?? ""}
|
|
/>
|
|
</div>
|
|
</div>
|
|
)}
|
|
{modulesView === "grid" && (
|
|
<div className="h-full w-full">
|
|
<div className="flex h-full w-full justify-between">
|
|
<div
|
|
className={`grid h-full w-full grid-cols-1 gap-6 overflow-y-auto p-8 ${
|
|
peekModule
|
|
? "lg:grid-cols-1 xl:grid-cols-2 3xl:grid-cols-3"
|
|
: "lg:grid-cols-2 xl:grid-cols-3 3xl:grid-cols-4"
|
|
} auto-rows-max transition-all `}
|
|
>
|
|
{projectModuleIds.map((moduleId) => (
|
|
<ModuleCardItem key={moduleId} moduleId={moduleId} />
|
|
))}
|
|
</div>
|
|
<ModulePeekOverview
|
|
projectId={projectId?.toString() ?? ""}
|
|
workspaceSlug={workspaceSlug?.toString() ?? ""}
|
|
/>
|
|
</div>
|
|
</div>
|
|
)}
|
|
{modulesView === "gantt_chart" && <ModulesListGanttChartView />}
|
|
</>
|
|
) : (
|
|
<EmptyState
|
|
title="Map your project milestones to Modules and track aggregated work easily."
|
|
description="A group of issues that belong to a logical, hierarchical parent form a module. Think of them as a way to track work by project milestones. They have their own periods and deadlines as well as analytics to help you see how close or far you are from a milestone."
|
|
image={EmptyStateImagePath}
|
|
comicBox={{
|
|
title: "Modules help group work by hierarchy.",
|
|
description:
|
|
"A cart module, a chassis module, and a warehouse module are all good example of this grouping.",
|
|
}}
|
|
primaryButton={{
|
|
text: "Build your first module",
|
|
onClick: () => commandPaletteStore.toggleCreateModuleModal(true),
|
|
}}
|
|
size="lg"
|
|
disabled={!isEditingAllowed}
|
|
/>
|
|
)}
|
|
</>
|
|
);
|
|
});
|