mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
2bf2e98b00
* chore: updated issue filters in space * chore: persisting the query params even when we switch layouts --------- Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
77 lines
2.8 KiB
TypeScript
77 lines
2.8 KiB
TypeScript
"use client";
|
|
|
|
import { FC } from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
import { useRouter, useSearchParams } from "next/navigation";
|
|
// constants
|
|
import { issueLayoutViews } from "@/constants/issue";
|
|
// hooks
|
|
import { useIssueFilter } from "@/hooks/store";
|
|
// mobx
|
|
import { TIssueLayout } from "@/types/issue";
|
|
|
|
type NavbarIssueBoardViewProps = {
|
|
workspaceSlug: string;
|
|
projectId: string;
|
|
};
|
|
|
|
export const NavbarIssueBoardView: FC<NavbarIssueBoardViewProps> = observer((props) => {
|
|
const router = useRouter();
|
|
const searchParams = useSearchParams();
|
|
// query params
|
|
const labels = searchParams.get("labels") || undefined;
|
|
const state = searchParams.get("state") || undefined;
|
|
const priority = searchParams.get("priority") || undefined;
|
|
const peekId = searchParams.get("peekId") || undefined;
|
|
// props
|
|
const { workspaceSlug, projectId } = props;
|
|
// hooks
|
|
const { layoutOptions, issueFilters, updateIssueFilters } = useIssueFilter();
|
|
|
|
// derived values
|
|
const activeLayout = issueFilters?.display_filters?.layout || undefined;
|
|
|
|
const handleCurrentBoardView = (boardView: TIssueLayout) => {
|
|
updateIssueFilters(projectId, "display_filters", "layout", boardView);
|
|
|
|
let queryParams: any = { board: boardView };
|
|
if (peekId && peekId.length > 0) queryParams = { ...queryParams, peekId: peekId };
|
|
if (priority && priority.length > 0) queryParams = { ...queryParams, priority: priority };
|
|
if (state && state.length > 0) queryParams = { ...queryParams, state: state };
|
|
if (labels && labels.length > 0) queryParams = { ...queryParams, labels: labels };
|
|
queryParams = new URLSearchParams(queryParams).toString();
|
|
router.push(`/${workspaceSlug}/${projectId}?${queryParams}`);
|
|
};
|
|
|
|
return (
|
|
<>
|
|
{issueLayoutViews &&
|
|
Object.keys(issueLayoutViews).map((key: string) => {
|
|
const layoutKey = key as TIssueLayout;
|
|
if (layoutOptions[layoutKey]) {
|
|
return (
|
|
<div
|
|
key={layoutKey}
|
|
className={`flex h-[28px] w-[28px] cursor-pointer items-center justify-center rounded-sm ${
|
|
layoutKey === activeLayout
|
|
? `bg-custom-background-80 text-custom-text-200`
|
|
: `text-custom-text-300 hover:bg-custom-background-80`
|
|
}`}
|
|
onClick={() => handleCurrentBoardView(layoutKey)}
|
|
title={layoutKey}
|
|
>
|
|
<span
|
|
className={`material-symbols-rounded text-[18px] ${
|
|
issueLayoutViews[layoutKey]?.className ? issueLayoutViews[layoutKey]?.className : ``
|
|
}`}
|
|
>
|
|
{issueLayoutViews[layoutKey]?.icon}
|
|
</span>
|
|
</div>
|
|
);
|
|
}
|
|
})}
|
|
</>
|
|
);
|
|
});
|