mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
32 lines
1.0 KiB
TypeScript
32 lines
1.0 KiB
TypeScript
import { ReactElement } from "react";
|
|
import { useRouter } from "next/router";
|
|
// layouts
|
|
import { AppLayout } from "layouts/app-layout";
|
|
// components
|
|
import { GlobalViewsHeader } from "components/workspace";
|
|
import { AllIssueLayoutRoot } from "components/issues";
|
|
import { GlobalIssuesHeader } from "components/headers";
|
|
// types
|
|
import { NextPageWithLayout } from "lib/types";
|
|
|
|
const GlobalViewIssuesPage: NextPageWithLayout = () => {
|
|
const router = useRouter();
|
|
const { workspaceSlug, globalViewId: viewId } = router.query;
|
|
|
|
if (!workspaceSlug || !viewId) return <></>;
|
|
return (
|
|
<div className="h-full overflow-hidden bg-custom-background-100">
|
|
<div className="flex h-full w-full flex-col border-b border-custom-border-300">
|
|
<GlobalViewsHeader />
|
|
<AllIssueLayoutRoot />
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
GlobalViewIssuesPage.getLayout = function getLayout(page: ReactElement) {
|
|
return <AppLayout header={<GlobalIssuesHeader activeLayout="spreadsheet" />}>{page}</AppLayout>;
|
|
};
|
|
|
|
export default GlobalViewIssuesPage;
|