plane/apps/app/components/cycles/cycles-list/draft-cycles-list.tsx

30 lines
830 B
TypeScript
Raw Normal View History

2023-05-28 20:44:40 +00:00
import { useRouter } from "next/router";
import useSWR from "swr";
// services
import cyclesService from "services/cycles.service";
// components
import { CyclesView } from "components/cycles";
// fetch-keys
2023-05-28 21:08:16 +00:00
import { DRAFT_CYCLES_LIST } from "constants/fetch-keys";
2023-05-28 20:44:40 +00:00
type Props = {
viewType: string | null;
};
export const DraftCyclesList: React.FC<Props> = ({ viewType }) => {
const router = useRouter();
const { workspaceSlug, projectId } = router.query;
const { data: draftCyclesList } = useSWR(
2023-05-28 21:08:16 +00:00
workspaceSlug && projectId ? DRAFT_CYCLES_LIST(projectId.toString()) : null,
2023-05-28 20:44:40 +00:00
workspaceSlug && projectId
? () =>
cyclesService.getCyclesWithParams(workspaceSlug.toString(), projectId.toString(), "draft")
2023-05-28 20:44:40 +00:00
: null
);
return <CyclesView cycles={draftCyclesList} viewType={viewType} />;
};