81 lines
2.7 KiB
TypeScript
81 lines
2.7 KiB
TypeScript
/**
|
|
* Copyright (c) 2023-present Plane Software, Inc. and contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
* See the LICENSE file for details.
|
|
*/
|
|
|
|
import { useEffect } from "react";
|
|
import { observer } from "mobx-react";
|
|
import useSWR from "swr";
|
|
// components
|
|
import { IssueAppliedFilters } from "@/components/issues/filters/applied-filters/root";
|
|
import { IssuePeekOverview } from "@/components/issues/peek-overview";
|
|
// hooks
|
|
import { useIssue } from "@/hooks/store/use-issue";
|
|
import { useIssueDetails } from "@/hooks/store/use-issue-details";
|
|
import { useIssueFilter } from "@/hooks/store/use-issue-filter";
|
|
// store
|
|
import type { PublishStore } from "@/store/publish/publish.store";
|
|
// local imports
|
|
import { SomethingWentWrongError } from "./error";
|
|
import { IssueKanbanLayoutRoot } from "./kanban/base-kanban-root";
|
|
import { IssuesListLayoutRoot } from "./list/base-list-root";
|
|
|
|
type Props = {
|
|
peekId: string | undefined;
|
|
publishSettings: PublishStore;
|
|
};
|
|
|
|
export const IssuesLayoutsRoot = observer(function IssuesLayoutsRoot(props: Props) {
|
|
const { peekId, publishSettings } = props;
|
|
// store hooks
|
|
const { getIssueFilters } = useIssueFilter();
|
|
const { fetchPublicIssues } = useIssue();
|
|
const issueDetailStore = useIssueDetails();
|
|
// derived values
|
|
const { anchor } = publishSettings;
|
|
const issueFilters = anchor ? getIssueFilters(anchor) : undefined;
|
|
// derived values
|
|
const activeLayout = issueFilters?.display_filters?.layout || undefined;
|
|
|
|
const { error } = useSWR(
|
|
anchor ? `PUBLIC_ISSUES_${anchor}` : null,
|
|
anchor
|
|
? () => fetchPublicIssues(anchor, "init-loader", { groupedBy: "state", canGroup: true, perPageCount: 50 })
|
|
: null,
|
|
{ revalidateIfStale: false, revalidateOnFocus: false }
|
|
);
|
|
|
|
useEffect(() => {
|
|
if (peekId) {
|
|
issueDetailStore.setPeekId(peekId.toString());
|
|
}
|
|
}, [peekId, issueDetailStore]);
|
|
|
|
if (!anchor) return null;
|
|
|
|
if (error) return <SomethingWentWrongError />;
|
|
|
|
return (
|
|
<div className="relative size-full overflow-hidden">
|
|
{peekId && <IssuePeekOverview anchor={anchor} peekId={peekId} />}
|
|
{activeLayout && (
|
|
<div className="relative flex size-full flex-col overflow-hidden">
|
|
{/* applied filters */}
|
|
<IssueAppliedFilters anchor={anchor} />
|
|
|
|
{activeLayout === "list" && (
|
|
<div className="relative size-full overflow-y-auto">
|
|
<IssuesListLayoutRoot anchor={anchor} />
|
|
</div>
|
|
)}
|
|
{activeLayout === "kanban" && (
|
|
<div className="relative mx-auto size-full p-5">
|
|
<IssueKanbanLayoutRoot anchor={anchor} />
|
|
</div>
|
|
)}
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
});
|