"use client"; import { useEffect, FC } from "react"; import { observer } from "mobx-react-lite"; import Link from "next/link"; import { useRouter } from "next/navigation"; // components import { Briefcase } from "lucide-react"; import { Avatar, Button } from "@plane/ui"; import { ProjectLogo } from "@/components/common"; import { IssueFiltersDropdown } from "@/components/issues/filters"; // hooks import { useProject, useUser } from "@/hooks/store"; // store import { NavbarIssueBoardView } from "./issue-board-view"; import { NavbarTheme } from "./theme"; type IssueNavbarProps = { projectSettings: any; }; const IssueNavbar: FC = observer((props) => { const { projectSettings } = props; const { project_details, views } = projectSettings; console.log("projectSettings", projectSettings); // hooks const router = useRouter(); // store const { settings, activeLayout, hydrate } = useProject(); hydrate(projectSettings); const { data: user } = useUser(); console.log("user", user); // return <>layout; // useEffect(() => { // if (workspace_slug && project_slug && settings) { // const viewsAcceptable: string[] = []; // let currentBoard: TIssueBoardKeys | null = null; // 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"); // if (board) { // if (viewsAcceptable.includes(board.toString())) { // currentBoard = board.toString() as TIssueBoardKeys; // } else { // if (viewsAcceptable && viewsAcceptable.length > 0) { // currentBoard = viewsAcceptable[0] as TIssueBoardKeys; // } // } // } else { // if (viewsAcceptable && viewsAcceptable.length > 0) { // currentBoard = viewsAcceptable[0] as TIssueBoardKeys; // } // } // if (currentBoard) { // if (projectStore?.layout === null || projectStore?.activeBoard !== currentBoard) { // let params: any = { board: currentBoard }; // if (peekId && peekId.length > 0) params = { ...params, peekId: peekId }; // if (priorities && priorities.length > 0) params = { ...params, priorities: priorities }; // if (states && states.length > 0) params = { ...params, states: states }; // if (labels && labels.length > 0) params = { ...params, labels: labels }; // let storeParams: any = {}; // if (priorities && priorities.length > 0) storeParams = { ...storeParams, priority: priorities.split(",") }; // if (states && states.length > 0) storeParams = { ...storeParams, state: states.split(",") }; // if (labels && labels.length > 0) storeParams = { ...storeParams, labels: labels.split(",") }; // if (storeParams) updateFilters(project_slug, storeParams); // projectStore.setActiveBoard(currentBoard); // router.push({ // pathname: `/${workspace_slug}/${project_slug}`, // query: { ...params }, // }); // } // } // } // }, [ // board, // workspace_slug, // project_slug, // router, // projectStore, // projectStore?.deploySettings, // updateFilters, // labels, // states, // priorities, // peekId, // ]); return (
{/* project detail */}
{project_details ? ( ) : ( )}
{project_details?.name || `...`}
{/* issue views */}
{/* issue filters */}
{/* theming */}
{user?.id ? (
{user.display_name}
) : (
)}
); }); export default IssueNavbar;