Files
pn-new-crm/src/providers/port-provider.tsx
Matt 221ae5784e chore(autonomous-session): consolidate uncommitted work from prior session
Bundles the prior autonomous-session output that was sitting unstaged:

- Em-dash sweep across src/ + tests/ (en-dash/em-dash to hyphen, ~2280 instances)
- country-flag-icons rollout (CountryFlag component, replaces emoji glyphs that
  never rendered on Windows; lazy-loads the 3x2 SVG index as a single chunk
  after the per-subpath dynamic-import approach silently failed in webpack)
- Admin IA Phase 1+2: 7-domain regroup, 41 to 38 pages, /admin/berths index,
  redirects (ocr to ai, reports to dashboard, invitations to users),
  docs/admin-ia-proposal.md
- Per-template email tester (registry + endpoint + UI on Email admin page)
- Cancel-document mode picker (delete-from-Documenso vs keep-for-audit)
- Dashboard PDF report: 25 widgets, SVG charts, date-range picker, 11 resolvers
- Customize-widgets per-region sortables at xl+ (charts/rails/feed); single
  flat sortable below xl when the layout stacks; per-viewport saved orders
- Audit doc updates capturing each shipped item
- Lint fixes: react-compiler immutability in DonutChart (reduce instead of
  let-reassign), set-state-in-effect disables in CountryFlag and
  UploadForSigning preview-bytes effect, unused 'confirm' destructures in
  interest contract + reservation tabs, unescaped apostrophe in test-template
  card copy
2026-05-23 00:52:59 +02:00

88 lines
2.8 KiB
TypeScript

'use client';
import { createContext, useContext, useEffect, useRef, type ReactNode } from 'react';
import { useParams } from 'next/navigation';
import { useUIStore } from '@/stores/ui-store';
import { apiFetch } from '@/lib/api/client';
import type { Port } from '@/lib/db/schema/ports';
interface PortContextValue {
ports: Port[];
currentPort: Port | null;
currentPortId: string | null;
currentPortSlug: string | null;
}
const PortContext = createContext<PortContextValue>({
ports: [],
currentPort: null,
currentPortId: null,
currentPortSlug: null,
});
interface PortProviderProps {
children: ReactNode;
ports: Port[];
defaultPortId: string | null;
}
export function PortProvider({ children, ports, defaultPortId }: PortProviderProps) {
const params = useParams();
const portSlugFromUrl = params?.portSlug as string | undefined;
const setPort = useUIStore((s) => s.setPort);
const currentPortId = useUIStore((s) => s.currentPortId);
const currentPortSlug = useUIStore((s) => s.currentPortSlug);
// Resolve current port - URL slug takes priority over stored port
const currentPort =
ports.find((p) => p.slug === portSlugFromUrl) ??
ports.find((p) => p.id === currentPortId) ??
(defaultPortId ? (ports.find((p) => p.id === defaultPortId) ?? null) : null);
// Sync Zustand store whenever the active port changes
useEffect(() => {
if (currentPort && (currentPort.id !== currentPortId || currentPort.slug !== currentPortSlug)) {
setPort(currentPort.id, currentPort.slug);
}
}, [currentPort, currentPortId, currentPortSlug, setPort]);
// Remember the last port the user landed on (URL-derived or
// explicit-switch) so the next login routes here automatically. Tracked
// in a ref-keyed dedupe so we only PATCH when the active port actually
// changes - re-renders inside the same port don't write. Fire-and-forget;
// a transient network failure shouldn't block navigation, and the
// post-login resolver verifies access so a stale value can't strand the
// user on a 403.
const lastPersistedPortIdRef = useRef<string | null>(null);
useEffect(() => {
if (!currentPort) return;
if (lastPersistedPortIdRef.current === currentPort.id) return;
lastPersistedPortIdRef.current = currentPort.id;
void apiFetch('/api/v1/me', {
method: 'PATCH',
body: { preferences: { defaultPortId: currentPort.id } },
}).catch(() => {
/* silent - best-effort */
});
}, [currentPort]);
return (
<PortContext.Provider
value={{
ports,
currentPort: currentPort ?? null,
currentPortId: currentPort?.id ?? null,
currentPortSlug: currentPort?.slug ?? null,
}}
>
{children}
</PortContext.Provider>
);
}
export function usePortContext(): PortContextValue {
return useContext(PortContext);
}