2023-03-27 17:49:05 +00:00
|
|
|
import React from "react";
|
|
|
|
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
|
|
|
|
import useSWR from "swr";
|
|
|
|
|
|
|
|
// services
|
|
|
|
import pagesService from "services/pages.service";
|
|
|
|
// components
|
|
|
|
import { PagesView } from "components/pages";
|
|
|
|
// ui
|
2023-03-30 21:21:39 +00:00
|
|
|
import { EmptyState, Loader } from "components/ui";
|
|
|
|
// images
|
|
|
|
import emptyPage from "public/empty-state/empty-page.svg";
|
2023-03-27 17:49:05 +00:00
|
|
|
// helpers
|
|
|
|
import { replaceUnderscoreIfSnakeCase } from "helpers/string.helper";
|
|
|
|
// types
|
|
|
|
import { TPagesListProps } from "./types";
|
|
|
|
import { RecentPagesResponse } from "types";
|
|
|
|
// fetch-keys
|
|
|
|
import { RECENT_PAGES_LIST } from "constants/fetch-keys";
|
|
|
|
|
|
|
|
export const RecentPagesList: React.FC<TPagesListProps> = ({ viewType }) => {
|
|
|
|
const router = useRouter();
|
|
|
|
const { workspaceSlug, projectId } = router.query;
|
|
|
|
|
|
|
|
const { data: pages } = useSWR(
|
|
|
|
workspaceSlug && projectId ? RECENT_PAGES_LIST(projectId as string) : null,
|
|
|
|
workspaceSlug && projectId
|
|
|
|
? () => pagesService.getRecentPages(workspaceSlug as string, projectId as string)
|
|
|
|
: null
|
|
|
|
);
|
|
|
|
|
2023-03-30 21:21:39 +00:00
|
|
|
const isEmpty = pages && Object.keys(pages).every((key) => pages[key].length === 0);
|
|
|
|
|
2023-03-27 17:49:05 +00:00
|
|
|
return (
|
|
|
|
<>
|
|
|
|
{pages ? (
|
2023-03-30 21:21:39 +00:00
|
|
|
Object.keys(pages).length > 0 && !isEmpty ? (
|
2023-04-11 12:48:49 +00:00
|
|
|
<div className="mt-4 space-y-4 flex flex-col gap-5">
|
2023-03-27 17:49:05 +00:00
|
|
|
{Object.keys(pages).map((key) => {
|
|
|
|
if (pages[key].length === 0) return null;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<React.Fragment key={key}>
|
2023-04-11 12:48:49 +00:00
|
|
|
<div>
|
|
|
|
<h2 className="text-xl font-semibold capitalize mb-4">
|
|
|
|
{replaceUnderscoreIfSnakeCase(key)}
|
|
|
|
</h2>
|
|
|
|
<PagesView
|
|
|
|
pages={pages[key as keyof RecentPagesResponse]}
|
|
|
|
viewType={viewType}
|
|
|
|
/>
|
|
|
|
</div>
|
2023-03-27 17:49:05 +00:00
|
|
|
</React.Fragment>
|
|
|
|
);
|
|
|
|
})}
|
|
|
|
</div>
|
|
|
|
) : (
|
2023-03-30 21:21:39 +00:00
|
|
|
<div className="mt-4">
|
|
|
|
<EmptyState
|
|
|
|
type="page"
|
|
|
|
title="Create New Page"
|
|
|
|
description="Create and document issues effortlessly in one place with Plane Notes, AI-powered for ease."
|
|
|
|
imgURL={emptyPage}
|
|
|
|
/>
|
|
|
|
</div>
|
2023-03-27 17:49:05 +00:00
|
|
|
)
|
|
|
|
) : (
|
|
|
|
<Loader className="mt-8 space-y-4">
|
|
|
|
<Loader.Item height="40px" />
|
|
|
|
<Loader.Item height="40px" />
|
|
|
|
<Loader.Item height="40px" />
|
|
|
|
</Loader>
|
|
|
|
)}
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|