forked from github/plane
c16a5b9b71
* restructure the logic to avoid throwing error if any dat is not found * updated files for previous commit * fix build errors * remove throwing error if userId is undefined * optionally chain display_name property to fix sentry issues * add ooptional check * change issue action logic to increase code maintainability and make sure to send only the updated date while updating the issue * fix issue updation bugs * fix module issues build error * fix runtime errors
43 lines
1.4 KiB
TypeScript
43 lines
1.4 KiB
TypeScript
import { useCallback } from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
import { useRouter } from "next/router";
|
|
//hooks
|
|
import { useCycle, useIssues } from "hooks/store";
|
|
// components
|
|
import { CycleIssueQuickActions } from "components/issues";
|
|
import { BaseCalendarRoot } from "../base-calendar-root";
|
|
// types
|
|
// constants
|
|
import { EIssuesStoreType } from "constants/issue";
|
|
|
|
export const CycleCalendarLayout: React.FC = observer(() => {
|
|
const { currentProjectCompletedCycleIds } = useCycle();
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId, cycleId } = router.query;
|
|
|
|
const { issues } = useIssues(EIssuesStoreType.CYCLE);
|
|
|
|
if (!cycleId) return null;
|
|
|
|
const isCompletedCycle =
|
|
cycleId && currentProjectCompletedCycleIds ? currentProjectCompletedCycleIds.includes(cycleId.toString()) : false;
|
|
|
|
const addIssuesToView = useCallback(
|
|
(issueIds: string[]) => {
|
|
if (!workspaceSlug || !projectId || !cycleId) throw new Error();
|
|
return issues.addIssueToCycle(workspaceSlug.toString(), projectId.toString(), cycleId.toString(), issueIds);
|
|
},
|
|
[issues?.addIssueToCycle, workspaceSlug, projectId, cycleId]
|
|
);
|
|
|
|
return (
|
|
<BaseCalendarRoot
|
|
QuickActions={CycleIssueQuickActions}
|
|
addIssuesToView={addIssuesToView}
|
|
viewId={cycleId.toString()}
|
|
isCompletedCycle={isCompletedCycle}
|
|
storeType={EIssuesStoreType.CYCLE}
|
|
/>
|
|
);
|
|
});
|