mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
cf3b888465
* chore: adding page titles * chore: added title to remaining pages * fix: added observer at required places --------- Co-authored-by: LAKHAN BAHETI <lakhanbaheti9@gmail.com>
36 lines
1.2 KiB
TypeScript
36 lines
1.2 KiB
TypeScript
import { ReactElement } from "react";
|
|
// 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";
|
|
import { observer } from "mobx-react";
|
|
import { useWorkspace } from "hooks/store";
|
|
import { PageHead } from "components/core";
|
|
|
|
const GlobalViewIssuesPage: NextPageWithLayout = observer(() => {
|
|
const { currentWorkspace } = useWorkspace();
|
|
// derived values
|
|
const pageTitle = currentWorkspace?.name ? `${currentWorkspace?.name} - Views` : 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;
|