Replaces every em-dash and en-dash with regular ASCII hyphens across comments, JSX strings, and dev-facing logs. Mostly cosmetic but stops the inconsistent mix that crept in over the last few months (some files used em-dashes in comments, others didn't, some used both). Bundles two small dashboard-layout tweaks that touch a couple of already-modified files: - (dashboard)/layout.tsx main padding goes from p-6 to pt-3 px-6 pb-6 so page content sits closer to the topbar. - Sidebar now receives the ports list it needs for the footer port switcher. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
67 lines
1.9 KiB
TypeScript
67 lines
1.9 KiB
TypeScript
'use client';
|
|
|
|
import { createContext, useContext, useEffect, type ReactNode } from 'react';
|
|
import { useParams } from 'next/navigation';
|
|
|
|
import { useUIStore } from '@/stores/ui-store';
|
|
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]);
|
|
|
|
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);
|
|
}
|