"use client"; import { observer } from "mobx-react"; import { useParams, useRouter } from "next/navigation"; import useSWR from "swr"; // components import { EmptyState } from "@/components/common"; import { PageHead } from "@/components/core"; import { CycleDetailsSidebar } from "@/components/cycles"; import { CycleLayoutRoot } from "@/components/issues/issue-layouts"; // hooks import { useCycle, useProject } from "@/hooks/store"; import useLocalStorage from "@/hooks/use-local-storage"; // assets import emptyCycle from "public/empty-state/cycle.svg"; const CycleDetailPage = observer(() => { // router const router = useRouter(); const { workspaceSlug, projectId, cycleId } = useParams(); // store hooks const { fetchCycleDetails, getCycleById } = useCycle(); const { getProjectById } = useProject(); // hooks const { setValue, storedValue } = useLocalStorage("cycle_sidebar_collapsed", "false"); // fetching cycle details const { error } = useSWR( workspaceSlug && projectId && cycleId ? `CYCLE_DETAILS_${cycleId.toString()}` : null, workspaceSlug && projectId && cycleId ? () => fetchCycleDetails(workspaceSlug.toString(), projectId.toString(), cycleId.toString()) : null ); // derived values const isSidebarCollapsed = storedValue ? (storedValue === "true" ? true : false) : false; const cycle = cycleId ? getCycleById(cycleId.toString()) : undefined; const project = projectId ? getProjectById(projectId.toString()) : undefined; const pageTitle = project?.name && cycle?.name ? `${project?.name} - ${cycle?.name}` : undefined; /** * Toggles the sidebar */ const toggleSidebar = () => setValue(`${!isSidebarCollapsed}`); return ( <> {error ? ( router.push(`/${workspaceSlug}/projects/${projectId}/cycles`), }} /> ) : ( <> {cycleId && !isSidebarCollapsed && ( )} > )} > ); }); export default CycleDetailPage;