mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
3c884fd46e
* fix: implementing layouts in all pages * fix: layout fixes, implemting using standard nextjs parctice
59 lines
1.7 KiB
TypeScript
59 lines
1.7 KiB
TypeScript
import { ReactElement } from "react";
|
|
import { useRouter } from "next/router";
|
|
import useSWR from "swr";
|
|
// mobx store
|
|
import { useMobxStore } from "lib/mobx/store-provider";
|
|
// layouts
|
|
import { AppLayout } from "layouts/app-layout";
|
|
// components
|
|
import { ProjectViewLayoutRoot } from "components/issues";
|
|
import { ProjectViewIssuesHeader } from "components/headers";
|
|
// ui
|
|
import { EmptyState } from "components/common";
|
|
// assets
|
|
import emptyView from "public/empty-state/view.svg";
|
|
// types
|
|
import { NextPageWithLayout } from "types/app";
|
|
|
|
const ProjectViewIssuesPage: NextPageWithLayout = () => {
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId, viewId } = router.query;
|
|
|
|
const { projectViews: projectViewsStore } = useMobxStore();
|
|
|
|
const { error } = useSWR(
|
|
workspaceSlug && projectId && viewId ? `VIEW_DETAILS_${viewId.toString()}` : null,
|
|
workspaceSlug && projectId && viewId
|
|
? () => projectViewsStore.fetchViewDetails(workspaceSlug.toString(), projectId.toString(), viewId.toString())
|
|
: null
|
|
);
|
|
|
|
return (
|
|
<>
|
|
{error ? (
|
|
<EmptyState
|
|
image={emptyView}
|
|
title="View does not exist"
|
|
description="The view you are looking for does not exist or has been deleted."
|
|
primaryButton={{
|
|
text: "View other views",
|
|
onClick: () => router.push(`/${workspaceSlug}/projects/${projectId}/views`),
|
|
}}
|
|
/>
|
|
) : (
|
|
<ProjectViewLayoutRoot />
|
|
)}
|
|
</>
|
|
);
|
|
};
|
|
|
|
ProjectViewIssuesPage.getLayout = function getLayout(page: ReactElement) {
|
|
return (
|
|
<AppLayout header={<ProjectViewIssuesHeader />} withProjectWrapper>
|
|
{page}
|
|
</AppLayout>
|
|
);
|
|
};
|
|
|
|
export default ProjectViewIssuesPage;
|