mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
d78b4dccf3
* chore: basic crud operations added to the list view * refactor: cycle details page * refactor: module details page * chore: added quick actions to kanban issue block * chore: implement quick actions in calendar layout * fix: custom menu component * chore: separate quick action dropdowns implemented * style: loader for calendar * fix: build errors
95 lines
3.3 KiB
TypeScript
95 lines
3.3 KiB
TypeScript
import React, { useState } from "react";
|
|
import { useRouter } from "next/router";
|
|
import useSWR from "swr";
|
|
// mobx store
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
// hooks
|
|
import useLocalStorage from "hooks/use-local-storage";
|
|
// layouts
|
|
import { AppLayout } from "layouts/app-layout";
|
|
// components
|
|
import { ExistingIssuesListModal } from "components/core";
|
|
import { ModuleDetailsSidebar } from "components/modules";
|
|
import { ModuleLayoutRoot } from "components/issues";
|
|
import { ModuleIssuesHeader } from "components/headers";
|
|
// ui
|
|
import { EmptyState } from "components/common";
|
|
// assets
|
|
import emptyModule from "public/empty-state/module.svg";
|
|
|
|
const SingleModule: React.FC = () => {
|
|
const [moduleIssuesListModal, setModuleIssuesListModal] = useState(false);
|
|
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId, moduleId } = router.query;
|
|
|
|
const { module: moduleStore } = useMobxStore();
|
|
|
|
const { storedValue } = useLocalStorage("module_sidebar_collapsed", "false");
|
|
const isSidebarCollapsed = storedValue ? (storedValue === "true" ? true : false) : false;
|
|
|
|
const { error } = useSWR(
|
|
workspaceSlug && projectId && moduleId ? `CURRENT_MODULE_DETAILS_${moduleId.toString()}` : null,
|
|
workspaceSlug && projectId && moduleId
|
|
? () => moduleStore.fetchModuleDetails(workspaceSlug.toString(), projectId.toString(), moduleId.toString())
|
|
: null
|
|
);
|
|
|
|
// TODO: add this function to bulk add issues to cycle
|
|
// const handleAddIssuesToModule = async (data: ISearchIssueResponse[]) => {
|
|
// if (!workspaceSlug || !projectId) return;
|
|
|
|
// const payload = {
|
|
// issues: data.map((i) => i.id),
|
|
// };
|
|
|
|
// await moduleService
|
|
// .addIssuesToModule(workspaceSlug as string, projectId as string, moduleId as string, payload, user)
|
|
// .catch(() =>
|
|
// setToastAlert({
|
|
// type: "error",
|
|
// title: "Error!",
|
|
// message: "Selected issues could not be added to the module. Please try again.",
|
|
// })
|
|
// );
|
|
// };
|
|
|
|
// const openIssuesListModal = () => {
|
|
// setModuleIssuesListModal(true);
|
|
// };
|
|
|
|
return (
|
|
<>
|
|
<AppLayout header={<ModuleIssuesHeader />} withProjectWrapper>
|
|
{/* TODO: Update logic to bulk add issues to a cycle */}
|
|
<ExistingIssuesListModal
|
|
isOpen={moduleIssuesListModal}
|
|
handleClose={() => setModuleIssuesListModal(false)}
|
|
searchParams={{ module: true }}
|
|
handleOnSubmit={async () => {}}
|
|
/>
|
|
{error ? (
|
|
<EmptyState
|
|
image={emptyModule}
|
|
title="Module does not exist"
|
|
description="The module you are looking for does not exist or has been deleted."
|
|
primaryButton={{
|
|
text: "View other modules",
|
|
onClick: () => router.push(`/${workspaceSlug}/projects/${projectId}/modules`),
|
|
}}
|
|
/>
|
|
) : (
|
|
<div className="flex h-full w-full">
|
|
<div className={`h-full w-full ${isSidebarCollapsed ? "" : "mr-[24rem]"} duration-300`}>
|
|
<ModuleLayoutRoot />
|
|
</div>
|
|
{moduleId && <ModuleDetailsSidebar isOpen={!isSidebarCollapsed} moduleId={moduleId.toString()} />}
|
|
</div>
|
|
)}
|
|
</AppLayout>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default SingleModule;
|