mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
3c884fd46e
* fix: implementing layouts in all pages * fix: layout fixes, implemting using standard nextjs parctice
130 lines
4.2 KiB
TypeScript
130 lines
4.2 KiB
TypeScript
import { useState, ReactElement } from "react";
|
|
import { useRouter } from "next/router";
|
|
import useSWR from "swr";
|
|
// mobx store
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
// services
|
|
import { IssueService } from "services/issue";
|
|
// hooks
|
|
import useLocalStorage from "hooks/use-local-storage";
|
|
import useUser from "hooks/use-user";
|
|
import useToast from "hooks/use-toast";
|
|
// layouts
|
|
import { AppLayout } from "layouts/app-layout";
|
|
// components
|
|
import { CycleIssuesHeader } from "components/headers";
|
|
import { ExistingIssuesListModal } from "components/core";
|
|
import { CycleDetailsSidebar } from "components/cycles";
|
|
import { CycleLayoutRoot } from "components/issues/issue-layouts";
|
|
// ui
|
|
import { EmptyState } from "components/common";
|
|
// assets
|
|
import emptyCycle from "public/empty-state/cycle.svg";
|
|
// types
|
|
import { ISearchIssueResponse } from "types";
|
|
import { NextPageWithLayout } from "types/app";
|
|
|
|
const issueService = new IssueService();
|
|
|
|
const CycleDetailPage: NextPageWithLayout = () => {
|
|
const [cycleIssuesListModal, setCycleIssuesListModal] = useState(false);
|
|
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId, cycleId } = router.query;
|
|
|
|
const { cycle: cycleStore } = useMobxStore();
|
|
|
|
const { user } = useUser();
|
|
|
|
const { setToastAlert } = useToast();
|
|
|
|
const { setValue, storedValue } = useLocalStorage("cycle_sidebar_collapsed", "false");
|
|
const isSidebarCollapsed = storedValue ? (storedValue === "true" ? true : false) : false;
|
|
|
|
const { error } = useSWR(
|
|
workspaceSlug && projectId && cycleId ? `CURRENT_CYCLE_DETAILS_${cycleId.toString()}` : null,
|
|
workspaceSlug && projectId && cycleId
|
|
? () => cycleStore.fetchCycleWithId(workspaceSlug.toString(), projectId.toString(), cycleId.toString())
|
|
: null
|
|
);
|
|
|
|
const toggleSidebar = () => {
|
|
setValue(`${!isSidebarCollapsed}`);
|
|
};
|
|
|
|
// TODO: add this function to bulk add issues to cycle
|
|
const handleAddIssuesToCycle = async (data: ISearchIssueResponse[]) => {
|
|
if (!workspaceSlug || !projectId) return;
|
|
|
|
const payload = {
|
|
issues: data.map((i) => i.id),
|
|
};
|
|
|
|
await issueService
|
|
.addIssueToCycle(workspaceSlug as string, projectId as string, cycleId as string, payload, user)
|
|
.catch(() => {
|
|
setToastAlert({
|
|
type: "error",
|
|
title: "Error!",
|
|
message: "Selected issues could not be added to the cycle. Please try again.",
|
|
});
|
|
});
|
|
};
|
|
|
|
const openIssuesListModal = () => {
|
|
setCycleIssuesListModal(true);
|
|
};
|
|
|
|
return (
|
|
<>
|
|
{/* TODO: Update logic to bulk add issues to a cycle */}
|
|
<ExistingIssuesListModal
|
|
isOpen={cycleIssuesListModal}
|
|
handleClose={() => setCycleIssuesListModal(false)}
|
|
searchParams={{ cycle: true }}
|
|
handleOnSubmit={handleAddIssuesToCycle}
|
|
/>
|
|
{error ? (
|
|
<EmptyState
|
|
image={emptyCycle}
|
|
title="Cycle does not exist"
|
|
description="The cycle you are looking for does not exist or has been deleted."
|
|
primaryButton={{
|
|
text: "View other cycles",
|
|
onClick: () => router.push(`/${workspaceSlug}/projects/${projectId}/cycles`),
|
|
}}
|
|
/>
|
|
) : (
|
|
<>
|
|
<div className="flex h-full w-full">
|
|
<div className="h-full w-full overflow-hidden">
|
|
<CycleLayoutRoot openIssuesListModal={openIssuesListModal} />
|
|
</div>
|
|
{cycleId && !isSidebarCollapsed && (
|
|
<div
|
|
className="flex flex-col gap-3.5 h-full w-[24rem] z-10 overflow-y-auto border-l border-custom-border-100 bg-custom-sidebar-background-100 px-6 py-3.5 duration-300 flex-shrink-0"
|
|
style={{
|
|
boxShadow:
|
|
"0px 1px 4px 0px rgba(0, 0, 0, 0.06), 0px 2px 4px 0px rgba(16, 24, 40, 0.06), 0px 1px 8px -1px rgba(16, 24, 40, 0.06)",
|
|
}}
|
|
>
|
|
<CycleDetailsSidebar cycleId={cycleId.toString()} handleClose={toggleSidebar} />
|
|
</div>
|
|
)}
|
|
</div>
|
|
</>
|
|
)}
|
|
</>
|
|
);
|
|
};
|
|
|
|
CycleDetailPage.getLayout = function getLayout(page: ReactElement) {
|
|
return (
|
|
<AppLayout header={<CycleIssuesHeader />} withProjectWrapper>
|
|
{page}
|
|
</AppLayout>
|
|
);
|
|
};
|
|
|
|
export default CycleDetailPage;
|