import { FC } from "react"; import { useRouter } from "next/router"; // hooks import { useApplication } from "hooks/store"; import useLocalStorage from "hooks/use-local-storage"; // components import { EmptyState } from "components/empty-state"; import { PagesListItem } from "./list-item"; // ui import { Loader } from "@plane/ui"; // constants import { EMPTY_STATE_DETAILS, EmptyStateType } from "constants/empty-state"; type IPagesListView = { pageIds: string[]; }; export const PagesListView: FC = (props) => { const { pageIds: projectPageIds } = props; // store hooks const { commandPalette: { toggleCreatePageModal }, } = useApplication(); // local storage const { storedValue: pageTab } = useLocalStorage("pageTab", "Recent"); // router const router = useRouter(); const { workspaceSlug, projectId } = router.query; // here we are only observing the projectPageStore, so that we can re-render the component when the projectPageStore changes const emptyStateType = pageTab ? `project-page-${pageTab.toLowerCase()}` : EmptyStateType.PROJECT_PAGE_ALL; const isButtonVisible = pageTab !== "archived" && pageTab !== "favorites"; return ( <> {projectPageIds && workspaceSlug && projectId ? (
{projectPageIds.length > 0 ? ( ) : ( toggleCreatePageModal(true) : undefined} /> )}
) : ( )} ); };