mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
52 lines
1.6 KiB
TypeScript
52 lines
1.6 KiB
TypeScript
import { ReactElement } from "react";
|
|
import { observer } from "mobx-react";
|
|
import { useRouter } from "next/router";
|
|
import useSWR from "swr";
|
|
// hooks
|
|
import { ProjectInboxHeader } from "@/components/headers";
|
|
import { InboxLayoutLoader } from "@/components/ui";
|
|
import { useInbox, useProject } from "@/hooks/store";
|
|
// layouts
|
|
import { AppLayout } from "@/layouts/app-layout";
|
|
// ui
|
|
// components
|
|
// types
|
|
import { NextPageWithLayout } from "@/lib/types";
|
|
|
|
const ProjectInboxPage: NextPageWithLayout = observer(() => {
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId } = router.query;
|
|
|
|
const { currentProjectDetails } = useProject();
|
|
const { fetchInboxes } = useInbox();
|
|
|
|
useSWR(
|
|
workspaceSlug && projectId && currentProjectDetails && currentProjectDetails?.inbox_view
|
|
? `INBOX_${workspaceSlug.toString()}_${projectId.toString()}`
|
|
: null,
|
|
async () => {
|
|
if (workspaceSlug && projectId && currentProjectDetails && currentProjectDetails?.inbox_view) {
|
|
const inboxes = await fetchInboxes(workspaceSlug.toString(), projectId.toString());
|
|
if (inboxes && inboxes.length > 0)
|
|
router.push(`/${workspaceSlug}/projects/${projectId}/inbox/${inboxes[0].id}`);
|
|
}
|
|
}
|
|
);
|
|
|
|
return (
|
|
<div className="flex h-full flex-col">
|
|
{currentProjectDetails?.inbox_view ? <InboxLayoutLoader /> : <div>You don{"'"}t have access to inbox</div>}
|
|
</div>
|
|
);
|
|
});
|
|
|
|
ProjectInboxPage.getLayout = function getLayout(page: ReactElement) {
|
|
return (
|
|
<AppLayout header={<ProjectInboxHeader />} withProjectWrapper>
|
|
{page}
|
|
</AppLayout>
|
|
);
|
|
};
|
|
|
|
export default ProjectInboxPage;
|