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";
|
2024-05-14 20:55:38 +00:00
|
|
|
import Link from "next/link";
|
2024-05-16 07:37:47 +00:00
|
|
|
import { useRouter, useSearchParams, usePathname } from "next/navigation";
|
2024-05-14 20:55:38 +00:00
|
|
|
// ui
|
|
|
|
import { Avatar, Button } from "@plane/ui";
|
|
|
|
// components
|
|
|
|
import { IssueFiltersDropdown } from "@/components/issues/filters";
|
2024-05-16 07:37:47 +00:00
|
|
|
import { NavbarIssueBoardView } from "@/components/issues/navbar/issue-board-view";
|
|
|
|
import { NavbarTheme } from "@/components/issues/navbar/theme";
|
2024-05-16 11:47:04 +00:00
|
|
|
// helpers
|
|
|
|
import { queryParamGenerator } from "@/helpers/query-param-generator";
|
2024-05-14 20:55:38 +00:00
|
|
|
// hooks
|
2024-05-16 07:37:47 +00:00
|
|
|
import { useProject, useUser, useIssueFilter, useIssueDetails } from "@/hooks/store";
|
2024-05-14 20:55:38 +00:00
|
|
|
// types
|
2024-05-16 07:37:47 +00:00
|
|
|
import { TIssueLayout } from "@/types/issue";
|
2024-05-14 20:55:38 +00:00
|
|
|
|
|
|
|
export type NavbarControlsProps = {
|
|
|
|
workspaceSlug: string;
|
|
|
|
projectId: string;
|
|
|
|
};
|
|
|
|
|
2024-05-15 22:33:43 +00:00
|
|
|
export const NavbarControls: FC<NavbarControlsProps> = observer((props) => {
|
2024-05-16 07:37:47 +00:00
|
|
|
// props
|
|
|
|
const { workspaceSlug, projectId } = props;
|
2024-05-14 20:55:38 +00:00
|
|
|
// router
|
|
|
|
const router = useRouter();
|
|
|
|
const pathName = usePathname();
|
2024-05-16 07:37:47 +00:00
|
|
|
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 { settings } = useProject();
|
|
|
|
const { data: user } = useUser();
|
|
|
|
const { setPeekId } = useIssueDetails();
|
|
|
|
// derived values
|
|
|
|
const activeLayout = issueFilters?.display_filters?.layout || undefined;
|
2024-05-14 20:55:38 +00:00
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
if (workspaceSlug && projectId && settings) {
|
|
|
|
const viewsAcceptable: string[] = [];
|
2024-05-16 07:37:47 +00:00
|
|
|
let currentBoard: TIssueLayout | null = null;
|
2024-05-14 20:55:38 +00:00
|
|
|
|
|
|
|
if (settings?.views?.list) viewsAcceptable.push("list");
|
|
|
|
if (settings?.views?.kanban) viewsAcceptable.push("kanban");
|
|
|
|
if (settings?.views?.calendar) viewsAcceptable.push("calendar");
|
|
|
|
if (settings?.views?.gantt) viewsAcceptable.push("gantt");
|
|
|
|
if (settings?.views?.spreadsheet) viewsAcceptable.push("spreadsheet");
|
|
|
|
|
2024-05-16 07:37:47 +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) {
|
2024-05-16 07:37:47 +00:00
|
|
|
if (activeLayout === undefined || activeLayout !== currentBoard) {
|
2024-05-16 11:47:04 +00:00
|
|
|
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
|
|
|
|
2024-05-16 07:37:47 +00:00
|
|
|
if (!isIssueFiltersUpdated(params)) {
|
|
|
|
initIssueFilters(projectId, params);
|
2024-05-16 11:47:04 +00:00
|
|
|
router.push(`/${workspaceSlug}/${projectId}?${queryParam}`);
|
2024-05-16 07:37:47 +00:00
|
|
|
}
|
2024-05-14 20:55:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, [
|
|
|
|
workspaceSlug,
|
|
|
|
projectId,
|
2024-05-16 07:37:47 +00:00
|
|
|
board,
|
2024-05-14 20:55:38 +00:00
|
|
|
labels,
|
2024-05-16 07:37:47 +00:00
|
|
|
state,
|
|
|
|
priority,
|
2024-05-14 20:55:38 +00:00
|
|
|
peekId,
|
|
|
|
settings,
|
|
|
|
activeLayout,
|
2024-05-16 07:37:47 +00:00
|
|
|
router,
|
|
|
|
initIssueFilters,
|
|
|
|
setPeekId,
|
|
|
|
isIssueFiltersUpdated,
|
2024-05-14 20:55:38 +00:00
|
|
|
]);
|
2024-05-16 07:37:47 +00:00
|
|
|
|
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-05-16 07:37:47 +00:00
|
|
|
<NavbarIssueBoardView workspaceSlug={workspaceSlug} projectId={projectId} />
|
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">
|
|
|
|
<IssueFiltersDropdown workspaceSlug={workspaceSlug} projectId={projectId} />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{/* theming */}
|
|
|
|
<div className="relative flex-shrink-0">
|
|
|
|
<NavbarTheme />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{user?.id ? (
|
|
|
|
<div className="flex items-center gap-2 rounded border border-custom-border-200 p-2">
|
|
|
|
<Avatar name={user?.display_name} src={user?.avatar ?? undefined} shape="square" size="sm" />
|
|
|
|
<h6 className="text-xs font-medium">{user.display_name}</h6>
|
|
|
|
</div>
|
|
|
|
) : (
|
|
|
|
<div className="flex-shrink-0">
|
|
|
|
<Link href={`/?next_path=${pathName}`}>
|
|
|
|
<Button variant="outline-primary">Sign in</Button>
|
|
|
|
</Link>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</>
|
|
|
|
);
|
2024-05-15 22:33:43 +00:00
|
|
|
});
|