mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
105 lines
4.0 KiB
TypeScript
105 lines
4.0 KiB
TypeScript
"use client";
|
|
|
|
import { FC, useEffect } from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
import Image from "next/image";
|
|
import { useSearchParams } from "next/navigation";
|
|
import useSWR from "swr";
|
|
// components
|
|
import { IssueCalendarView } from "@/components/issues/board-views/calendar";
|
|
import { IssueGanttView } from "@/components/issues/board-views/gantt";
|
|
import { IssueKanbanView } from "@/components/issues/board-views/kanban";
|
|
import { IssueListView } from "@/components/issues/board-views/list";
|
|
import { IssueSpreadsheetView } from "@/components/issues/board-views/spreadsheet";
|
|
import { IssueAppliedFilters } from "@/components/issues/filters/applied-filters/root";
|
|
import { IssuePeekOverview } from "@/components/issues/peek-overview";
|
|
// hooks
|
|
import { useIssue, useIssueDetails, useIssueFilter } from "@/hooks/store";
|
|
// store
|
|
import { PublishStore } from "@/store/publish/publish.store";
|
|
// assets
|
|
import SomethingWentWrongImage from "public/something-went-wrong.svg";
|
|
|
|
type ProjectDetailsViewProps = {
|
|
peekId: string | undefined;
|
|
publishSettings: PublishStore;
|
|
};
|
|
|
|
export const ProjectDetailsView: FC<ProjectDetailsViewProps> = observer((props) => {
|
|
const { peekId, publishSettings } = props;
|
|
// query params
|
|
const searchParams = useSearchParams();
|
|
const states = searchParams.get("states") || undefined;
|
|
const priority = searchParams.get("priority") || undefined;
|
|
const labels = searchParams.get("labels") || undefined;
|
|
// store hooks
|
|
const { issueFilters } = useIssueFilter();
|
|
const { loader, issues, error, fetchPublicIssues } = useIssue();
|
|
const issueDetailStore = useIssueDetails();
|
|
// derived values
|
|
const { anchor } = publishSettings;
|
|
|
|
useSWR(
|
|
anchor ? `PUBLIC_ISSUES_${anchor}` : null,
|
|
anchor ? () => fetchPublicIssues(anchor, { states, priority, labels }) : null
|
|
);
|
|
|
|
useEffect(() => {
|
|
if (peekId) {
|
|
issueDetailStore.setPeekId(peekId.toString());
|
|
}
|
|
}, [peekId, issueDetailStore]);
|
|
|
|
// derived values
|
|
const activeLayout = issueFilters?.display_filters?.layout || undefined;
|
|
|
|
if (!anchor) return null;
|
|
|
|
return (
|
|
<div className="relative h-full w-full overflow-hidden">
|
|
{peekId && <IssuePeekOverview anchor={anchor} peekId={peekId} />}
|
|
|
|
{loader && !issues ? (
|
|
<div className="py-10 text-center text-sm text-custom-text-100">Loading...</div>
|
|
) : (
|
|
<>
|
|
{error ? (
|
|
<div className="grid h-full w-full place-items-center p-6">
|
|
<div className="text-center">
|
|
<div className="mx-auto grid h-52 w-52 place-items-center rounded-full bg-custom-background-80">
|
|
<div className="grid h-32 w-32 place-items-center">
|
|
<Image src={SomethingWentWrongImage} alt="Oops! Something went wrong" />
|
|
</div>
|
|
</div>
|
|
<h1 className="mt-12 text-3xl font-semibold">Oops! Something went wrong.</h1>
|
|
<p className="mt-4 text-custom-text-300">The public board does not exist. Please check the URL.</p>
|
|
</div>
|
|
</div>
|
|
) : (
|
|
activeLayout && (
|
|
<div className="relative flex h-full w-full flex-col overflow-hidden">
|
|
{/* applied filters */}
|
|
<IssueAppliedFilters anchor={anchor} />
|
|
|
|
{activeLayout === "list" && (
|
|
<div className="relative h-full w-full overflow-y-auto">
|
|
<IssueListView anchor={anchor} />
|
|
</div>
|
|
)}
|
|
{activeLayout === "kanban" && (
|
|
<div className="relative mx-auto h-full w-full p-5">
|
|
<IssueKanbanView anchor={anchor} />
|
|
</div>
|
|
)}
|
|
{activeLayout === "calendar" && <IssueCalendarView />}
|
|
{activeLayout === "spreadsheet" && <IssueSpreadsheetView />}
|
|
{activeLayout === "gantt" && <IssueGanttView />}
|
|
</div>
|
|
)
|
|
)}
|
|
</>
|
|
)}
|
|
</div>
|
|
);
|
|
});
|