mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
5d67029b5a
* style: page details * style: page blocks design * chore: pages list end points * feat: add blocks, push blocks to issues * feat: page labels, color options * feat: added labels to pages * fix: update page mutation
35 lines
870 B
TypeScript
35 lines
870 B
TypeScript
import { useRouter } from "next/router";
|
|
|
|
import useSWR from "swr";
|
|
|
|
// services
|
|
import pagesService from "services/pages.service";
|
|
// components
|
|
import { PagesView } from "components/pages";
|
|
// types
|
|
import { TPageViewProps } from "types";
|
|
// fetch-keys
|
|
import { MY_PAGES_LIST } from "constants/fetch-keys";
|
|
|
|
type Props = {
|
|
viewType: TPageViewProps;
|
|
};
|
|
|
|
export const MyPagesList: React.FC<Props> = ({ viewType }) => {
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId } = router.query;
|
|
|
|
const { data: pages } = useSWR(
|
|
workspaceSlug && projectId ? MY_PAGES_LIST(projectId as string) : null,
|
|
workspaceSlug && projectId
|
|
? () => pagesService.getMyPages(workspaceSlug as string, projectId as string)
|
|
: null
|
|
);
|
|
|
|
return (
|
|
<div className="mt-4 space-y-4">
|
|
<PagesView pages={pages} viewType={viewType} />
|
|
</div>
|
|
);
|
|
};
|