mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
c8caa925b1
* fix: release note modal fix * chore: cycle and page endpoint refactor
30 lines
830 B
TypeScript
30 lines
830 B
TypeScript
import { useRouter } from "next/router";
|
|
|
|
import useSWR from "swr";
|
|
|
|
// services
|
|
import cyclesService from "services/cycles.service";
|
|
// components
|
|
import { CyclesView } from "components/cycles";
|
|
// fetch-keys
|
|
import { DRAFT_CYCLES_LIST } from "constants/fetch-keys";
|
|
|
|
type Props = {
|
|
viewType: string | null;
|
|
};
|
|
|
|
export const DraftCyclesList: React.FC<Props> = ({ viewType }) => {
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId } = router.query;
|
|
|
|
const { data: draftCyclesList } = useSWR(
|
|
workspaceSlug && projectId ? DRAFT_CYCLES_LIST(projectId.toString()) : null,
|
|
workspaceSlug && projectId
|
|
? () =>
|
|
cyclesService.getCyclesWithParams(workspaceSlug.toString(), projectId.toString(), "draft")
|
|
: null
|
|
);
|
|
|
|
return <CyclesView cycles={draftCyclesList} viewType={viewType} />;
|
|
};
|