mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
3d09a69d58
* fix: eslint fixes --------- Co-authored-by: gurusainath <gurusainath007@gmail.com>
53 lines
1.9 KiB
TypeScript
53 lines
1.9 KiB
TypeScript
import { ReactElement } from "react";
|
|
import { observer } from "mobx-react";
|
|
import { useRouter } from "next/router";
|
|
// layouts
|
|
import { PageHead } from "components/core";
|
|
import { GlobalIssuesHeader } from "components/headers";
|
|
import { AllIssueLayoutRoot } from "components/issues";
|
|
import { GlobalViewsHeader } from "components/workspace";
|
|
import { DEFAULT_GLOBAL_VIEWS_LIST } from "constants/workspace";
|
|
import { useGlobalView, useWorkspace } from "hooks/store";
|
|
import { AppLayout } from "layouts/app-layout";
|
|
// hooks
|
|
// components
|
|
// types
|
|
import { NextPageWithLayout } from "lib/types";
|
|
// constants
|
|
|
|
const GlobalViewIssuesPage: NextPageWithLayout = observer(() => {
|
|
// router
|
|
const router = useRouter();
|
|
const { globalViewId } = router.query;
|
|
// store hooks
|
|
const { currentWorkspace } = useWorkspace();
|
|
const { getViewDetailsById } = useGlobalView();
|
|
// derived values
|
|
const globalViewDetails = globalViewId ? getViewDetailsById(globalViewId.toString()) : undefined;
|
|
const defaultView = DEFAULT_GLOBAL_VIEWS_LIST.find((view) => view.key === globalViewId);
|
|
const pageTitle =
|
|
currentWorkspace?.name && defaultView?.label
|
|
? `${currentWorkspace?.name} - ${defaultView?.label}`
|
|
: currentWorkspace?.name && globalViewDetails?.name
|
|
? `${currentWorkspace?.name} - ${globalViewDetails?.name}`
|
|
: undefined;
|
|
|
|
return (
|
|
<>
|
|
<PageHead title={pageTitle} />
|
|
<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;
|