plane/space/components/issues/navbar/controls.tsx

124 lines
4.1 KiB
TypeScript
Raw Normal View History

2024-05-14 20:55:38 +00:00
"use client";
import { useEffect, FC } from "react";
2024-05-15 22:33:43 +00:00
import { observer } from "mobx-react-lite";
import { useRouter, useSearchParams } from "next/navigation";
2024-05-14 20:55:38 +00:00
// components
import { IssueFiltersDropdown } from "@/components/issues/filters";
import { NavbarIssueBoardView } from "@/components/issues/navbar/issue-board-view";
import { NavbarTheme } from "@/components/issues/navbar/theme";
import { UserAvatar } from "@/components/issues/navbar/user-avatar";
// helpers
import { queryParamGenerator } from "@/helpers/query-param-generator";
2024-05-14 20:55:38 +00:00
// hooks
2024-06-04 08:08:47 +00:00
import { useIssueFilter, useIssueDetails } from "@/hooks/store";
import useIsInIframe from "@/hooks/use-is-in-iframe";
2024-06-04 08:08:47 +00:00
// store
import { PublishStore } from "@/store/publish/publish.store";
2024-05-14 20:55:38 +00:00
// types
import { TIssueLayout } from "@/types/issue";
2024-05-14 20:55:38 +00:00
export type NavbarControlsProps = {
2024-06-04 08:08:47 +00:00
publishSettings: PublishStore;
2024-05-14 20:55:38 +00:00
};
2024-05-15 22:33:43 +00:00
export const NavbarControls: FC<NavbarControlsProps> = observer((props) => {
// props
2024-06-04 08:08:47 +00:00
const { publishSettings } = props;
2024-05-14 20:55:38 +00:00
// router
const router = useRouter();
const searchParams = useSearchParams();
// query params
const board = searchParams.get("board") || undefined;
const labels = searchParams.get("labels") || undefined;
const state = searchParams.get("state") || undefined;
const priority = searchParams.get("priority") || undefined;
const peekId = searchParams.get("peekId") || undefined;
// hooks
const { issueFilters, isIssueFiltersUpdated, initIssueFilters } = useIssueFilter();
const { setPeekId } = useIssueDetails();
// derived values
const activeLayout = issueFilters?.display_filters?.layout || undefined;
2024-06-04 08:08:47 +00:00
const { project, views, workspace_detail } = publishSettings;
2024-05-14 20:55:38 +00:00
const isInIframe = useIsInIframe();
2024-05-14 20:55:38 +00:00
useEffect(() => {
2024-06-04 08:08:47 +00:00
if (project && workspace_detail) {
2024-05-14 20:55:38 +00:00
const viewsAcceptable: string[] = [];
let currentBoard: TIssueLayout | null = null;
2024-05-14 20:55:38 +00:00
2024-06-04 08:08:47 +00:00
if (views?.list) viewsAcceptable.push("list");
if (views?.kanban) viewsAcceptable.push("kanban");
if (views?.calendar) viewsAcceptable.push("calendar");
if (views?.gantt) viewsAcceptable.push("gantt");
if (views?.spreadsheet) viewsAcceptable.push("spreadsheet");
2024-05-14 20:55:38 +00:00
if (board) {
if (viewsAcceptable.includes(board.toString())) currentBoard = board.toString() as TIssueLayout;
else {
if (viewsAcceptable && viewsAcceptable.length > 0) currentBoard = viewsAcceptable[0] as TIssueLayout;
}
} else {
if (viewsAcceptable && viewsAcceptable.length > 0) currentBoard = viewsAcceptable[0] as TIssueLayout;
}
2024-05-14 20:55:38 +00:00
if (currentBoard) {
if (activeLayout === undefined || activeLayout !== currentBoard) {
const { query, queryParam } = queryParamGenerator({ board: currentBoard, peekId, priority, state, labels });
const params: any = {
display_filters: { layout: (query?.board as string[])[0] },
filters: {
priority: query?.priority ?? undefined,
state: query?.state ?? undefined,
labels: query?.labels ?? undefined,
},
};
2024-05-14 20:55:38 +00:00
if (!isIssueFiltersUpdated(params)) {
2024-06-04 08:08:47 +00:00
initIssueFilters(project, params);
router.push(`/${workspace_detail.slug}/${project}?${queryParam}`);
}
2024-05-14 20:55:38 +00:00
}
}
}
}, [
board,
2024-05-14 20:55:38 +00:00
labels,
state,
priority,
2024-05-14 20:55:38 +00:00
peekId,
activeLayout,
router,
initIssueFilters,
setPeekId,
isIssueFiltersUpdated,
2024-06-04 08:08:47 +00:00
views,
project,
workspace_detail,
2024-05-14 20:55:38 +00:00
]);
2024-06-04 08:08:47 +00:00
if (!workspace_detail || !project) return;
2024-05-14 20:55:38 +00:00
return (
<>
{/* issue views */}
<div className="relative flex flex-shrink-0 items-center gap-1 transition-all delay-150 ease-in-out">
2024-06-04 08:08:47 +00:00
<NavbarIssueBoardView workspaceSlug={workspace_detail.slug} projectId={project} />
2024-05-14 20:55:38 +00:00
</div>
{/* issue filters */}
<div className="relative flex flex-shrink-0 items-center gap-1 transition-all delay-150 ease-in-out">
2024-06-04 08:08:47 +00:00
<IssueFiltersDropdown workspaceSlug={workspace_detail.slug} projectId={project} />
2024-05-14 20:55:38 +00:00
</div>
{/* theming */}
<div className="relative flex-shrink-0">
<NavbarTheme />
</div>
{!isInIframe && <UserAvatar />}
2024-05-14 20:55:38 +00:00
</>
);
2024-05-15 22:33:43 +00:00
});