forked from github/plane
3503b22dd9
* refactor: pages folder structure, mutation issues * fix: block edit and push * fix: block title placeholder
31 lines
860 B
TypeScript
31 lines
860 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 { TPagesListProps } from "./types";
|
|
// fetch-keys
|
|
import { FAVORITE_PAGES_LIST } from "constants/fetch-keys";
|
|
|
|
export const FavoritePagesList: React.FC<TPagesListProps> = ({ viewType }) => {
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId } = router.query;
|
|
|
|
const { data: pages } = useSWR(
|
|
workspaceSlug && projectId ? FAVORITE_PAGES_LIST(projectId as string) : null,
|
|
workspaceSlug && projectId
|
|
? () => pagesService.getFavoritePages(workspaceSlug as string, projectId as string)
|
|
: null
|
|
);
|
|
|
|
return (
|
|
<div className="mt-4 space-y-4">
|
|
<PagesView pages={pages} viewType={viewType} />
|
|
</div>
|
|
);
|
|
};
|