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 { COMPLETED_CYCLES_LIST } from "constants/fetch-keys";
|
2023-05-28 20:44:40 +00:00
|
|
|
|
|
|
|
type Props = {
|
|
|
|
viewType: string | null;
|
|
|
|
};
|
|
|
|
|
|
|
|
export const CompletedCyclesList: React.FC<Props> = ({ viewType }) => {
|
|
|
|
const router = useRouter();
|
|
|
|
const { workspaceSlug, projectId } = router.query;
|
|
|
|
|
|
|
|
const { data: completedCyclesList } = useSWR(
|
2023-05-28 21:08:16 +00:00
|
|
|
workspaceSlug && projectId ? COMPLETED_CYCLES_LIST(projectId.toString()) : null,
|
2023-05-28 20:44:40 +00:00
|
|
|
workspaceSlug && projectId
|
|
|
|
? () =>
|
|
|
|
cyclesService.getCyclesWithParams(workspaceSlug.toString(), projectId.toString(), {
|
|
|
|
cycle_view: "completed",
|
|
|
|
})
|
|
|
|
: null
|
|
|
|
);
|
|
|
|
|
|
|
|
return <CyclesView cycles={completedCyclesList} viewType={viewType} />;
|
|
|
|
};
|