| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215 |
- "use client";
- import React from "react";
- import Link from "next/link";
- import { useAuth } from "@/components/auth/authContext";
- import { getBranches } from "@/lib/frontend/apiClient";
- import { branchPath, searchPath } from "@/lib/frontend/routes";
- import { isValidBranchParam } from "@/lib/frontend/params";
- import {
- buildNextUrlForBranchSwitch,
- readRouteBranchFromPathname,
- safeReadLocalStorageBranch,
- safeWriteLocalStorageBranch,
- } from "@/lib/frontend/quickNav/branchSwitch";
- import { Button } from "@/components/ui/button";
- import {
- DropdownMenu,
- DropdownMenuContent,
- DropdownMenuLabel,
- DropdownMenuRadioGroup,
- DropdownMenuRadioItem,
- DropdownMenuSeparator,
- DropdownMenuTrigger,
- } from "@/components/ui/dropdown-menu";
- const STORAGE_KEY_LAST_BRANCH = "rhl_last_branch";
- const BRANCH_LIST_STATE = Object.freeze({
- IDLE: "idle",
- LOADING: "loading",
- READY: "ready",
- ERROR: "error",
- });
- export default function QuickNav() {
- const { status, user } = useAuth();
- const isAuthenticated = status === "authenticated" && user;
- const isAdminDev =
- isAuthenticated && (user.role === "admin" || user.role === "dev");
- const isBranchUser = isAuthenticated && user.role === "branch";
- const [selectedBranch, setSelectedBranch] = React.useState(null);
- const [branchList, setBranchList] = React.useState({
- status: BRANCH_LIST_STATE.IDLE,
- branches: null,
- });
- React.useEffect(() => {
- if (!isAuthenticated) return;
- if (isBranchUser) {
- const own = user.branchId;
- setSelectedBranch(own && isValidBranchParam(own) ? own : null);
- return;
- }
- const fromRoute = readRouteBranchFromPathname(window.location.pathname);
- const fromStorage = safeReadLocalStorageBranch(STORAGE_KEY_LAST_BRANCH);
- const initial = fromRoute || fromStorage || null;
- if (initial) setSelectedBranch(initial);
- }, [isAuthenticated, isBranchUser, user?.branchId]);
- React.useEffect(() => {
- // B.4 fix:
- // - Fetch the branch list once for admin/dev users (or when the user changes),
- // not on every selectedBranch change.
- if (!isAdminDev) return;
- let cancelled = false;
- setBranchList({ status: BRANCH_LIST_STATE.LOADING, branches: null });
- (async () => {
- try {
- const res = await getBranches();
- if (cancelled) return;
- const branches = Array.isArray(res?.branches) ? res.branches : [];
- setBranchList({ status: BRANCH_LIST_STATE.READY, branches });
- } catch (err) {
- if (cancelled) return;
- console.error("[QuickNav] getBranches failed:", err);
- setBranchList({ status: BRANCH_LIST_STATE.ERROR, branches: null });
- }
- })();
- return () => {
- cancelled = true;
- };
- }, [isAdminDev, user?.userId]);
- React.useEffect(() => {
- // After we have the branch list, ensure selectedBranch is valid and known.
- // This effect does NOT trigger any refetches (only local state).
- if (!isAdminDev) return;
- if (branchList.status !== BRANCH_LIST_STATE.READY) return;
- const branches = Array.isArray(branchList.branches)
- ? branchList.branches
- : [];
- if (branches.length === 0) return;
- // If no selection yet (or selection is no longer in the list), choose a stable default.
- if (!selectedBranch || !branches.includes(selectedBranch)) {
- const next = branches[0];
- setSelectedBranch(next);
- safeWriteLocalStorageBranch(STORAGE_KEY_LAST_BRANCH, next);
- }
- }, [isAdminDev, branchList.status, branchList.branches, selectedBranch]);
- React.useEffect(() => {
- if (!isAdminDev) return;
- if (!selectedBranch) return;
- safeWriteLocalStorageBranch(STORAGE_KEY_LAST_BRANCH, selectedBranch);
- }, [isAdminDev, selectedBranch]);
- if (!isAuthenticated) return null;
- const effectiveBranch = isBranchUser ? user.branchId : selectedBranch;
- const canNavigate = Boolean(
- effectiveBranch && isValidBranchParam(effectiveBranch)
- );
- function navigateToBranchKeepingContext(nextBranch) {
- if (typeof window === "undefined") return;
- if (!isValidBranchParam(nextBranch)) return;
- const nextUrl = buildNextUrlForBranchSwitch({
- pathname: window.location.pathname || "/",
- search: window.location.search || "",
- nextBranch,
- });
- if (!nextUrl) return;
- window.location.assign(nextUrl);
- }
- return (
- <div className="hidden items-center gap-2 md:flex">
- {isAdminDev ? (
- <DropdownMenu>
- <DropdownMenuTrigger asChild>
- <Button
- variant="outline"
- size="sm"
- type="button"
- title="Niederlassung auswählen"
- >
- {canNavigate ? effectiveBranch : "Niederlassung wählen"}
- </Button>
- </DropdownMenuTrigger>
- <DropdownMenuContent align="end" className="min-w-[14rem]">
- <DropdownMenuLabel>Niederlassung</DropdownMenuLabel>
- <DropdownMenuSeparator />
- {branchList.status === BRANCH_LIST_STATE.ERROR ? (
- <div className="px-2 py-2 text-xs text-muted-foreground">
- Konnte nicht geladen werden.
- </div>
- ) : (
- <DropdownMenuRadioGroup
- value={canNavigate ? effectiveBranch : ""}
- onValueChange={(value) => {
- if (!value) return;
- if (!isValidBranchParam(value)) return;
- setSelectedBranch(value);
- safeWriteLocalStorageBranch(STORAGE_KEY_LAST_BRANCH, value);
- navigateToBranchKeepingContext(value);
- }}
- >
- {(Array.isArray(branchList.branches)
- ? branchList.branches
- : []
- ).map((b) => (
- <DropdownMenuRadioItem key={b} value={b}>
- {b}
- </DropdownMenuRadioItem>
- ))}
- </DropdownMenuRadioGroup>
- )}
- </DropdownMenuContent>
- </DropdownMenu>
- ) : null}
- <Button variant="outline" size="sm" asChild disabled={!canNavigate}>
- <Link
- href={canNavigate ? branchPath(effectiveBranch) : "#"}
- title="Explorer öffnen"
- >
- Explorer
- </Link>
- </Button>
- <Button variant="outline" size="sm" asChild disabled={!canNavigate}>
- <Link
- href={canNavigate ? searchPath(effectiveBranch) : "#"}
- title="Suche öffnen"
- >
- Suche
- </Link>
- </Button>
- </div>
- );
- }
|