Initial commit: Port Nimara CRM (Layers 0-4)
Full CRM rebuild with Next.js 15, TypeScript, Tailwind, Drizzle ORM,
PostgreSQL, Redis, BullMQ, MinIO, and Socket.io. Includes 461 source
files covering clients, berths, interests/pipeline, documents/EOI,
expenses/invoices, email, notifications, dashboard, admin, and
client portal. CI/CD via Gitea Actions with Docker builds.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-26 11:52:51 +01:00
|
|
|
'use client';
|
|
|
|
|
|
2026-05-21 19:06:48 +02:00
|
|
|
import { createContext, useContext, useEffect, useRef, type ReactNode } from 'react';
|
Initial commit: Port Nimara CRM (Layers 0-4)
Full CRM rebuild with Next.js 15, TypeScript, Tailwind, Drizzle ORM,
PostgreSQL, Redis, BullMQ, MinIO, and Socket.io. Includes 461 source
files covering clients, berths, interests/pipeline, documents/EOI,
expenses/invoices, email, notifications, dashboard, admin, and
client portal. CI/CD via Gitea Actions with Docker builds.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-26 11:52:51 +01:00
|
|
|
import { useParams } from 'next/navigation';
|
|
|
|
|
|
|
|
|
|
import { useUIStore } from '@/stores/ui-store';
|
2026-05-21 19:06:48 +02:00
|
|
|
import { apiFetch } from '@/lib/api/client';
|
Initial commit: Port Nimara CRM (Layers 0-4)
Full CRM rebuild with Next.js 15, TypeScript, Tailwind, Drizzle ORM,
PostgreSQL, Redis, BullMQ, MinIO, and Socket.io. Includes 461 source
files covering clients, berths, interests/pipeline, documents/EOI,
expenses/invoices, email, notifications, dashboard, admin, and
client portal. CI/CD via Gitea Actions with Docker builds.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-26 11:52:51 +01:00
|
|
|
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);
|
|
|
|
|
|
2026-05-04 22:57:01 +02:00
|
|
|
// Resolve current port - URL slug takes priority over stored port
|
Initial commit: Port Nimara CRM (Layers 0-4)
Full CRM rebuild with Next.js 15, TypeScript, Tailwind, Drizzle ORM,
PostgreSQL, Redis, BullMQ, MinIO, and Socket.io. Includes 461 source
files covering clients, berths, interests/pipeline, documents/EOI,
expenses/invoices, email, notifications, dashboard, admin, and
client portal. CI/CD via Gitea Actions with Docker builds.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-26 11:52:51 +01:00
|
|
|
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]);
|
|
|
|
|
|
2026-05-21 19:06:48 +02:00
|
|
|
// 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]);
|
|
|
|
|
|
Initial commit: Port Nimara CRM (Layers 0-4)
Full CRM rebuild with Next.js 15, TypeScript, Tailwind, Drizzle ORM,
PostgreSQL, Redis, BullMQ, MinIO, and Socket.io. Includes 461 source
files covering clients, berths, interests/pipeline, documents/EOI,
expenses/invoices, email, notifications, dashboard, admin, and
client portal. CI/CD via Gitea Actions with Docker builds.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-26 11:52:51 +01:00
|
|
|
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);
|
|
|
|
|
}
|