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
|
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
|
|
|
// changes - re-renders inside the same port don't write. Fire-and-forget;
|
2026-05-21 19:06:48 +02:00
|
|
|
// 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(() => {
|
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
|
|
|
/* silent - best-effort */
|
2026-05-21 19:06:48 +02:00
|
|
|
});
|
|
|
|
|
}, [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);
|
|
|
|
|
}
|