mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-26 12:35:35 +02:00
- Add explicit type="button" to 61 <button> elements missing the attribute - Replace useContext() with React 19 use() across 16 context consumers - Replace [...arr].sort() with arr.toSorted() in 12 web/desktop files (mobile excluded — Hermes lacks toSorted support) - Fix rules-of-hooks violation: useSidebar try/catch → useSidebarSafe null check - Fix nested component definition: useMemo wrapping HeaderRight → useCallback - Fix missing ARIA: add aria-expanded + aria-controls to combobox in create-squad React Doctor score: 23 → 30. No behavioral changes, no business logic modified. Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
151 lines
4.4 KiB
TypeScript
151 lines
4.4 KiB
TypeScript
"use client";
|
|
|
|
import {
|
|
createContext,
|
|
use,
|
|
useEffect,
|
|
useState,
|
|
useCallback,
|
|
useSyncExternalStore,
|
|
type ReactNode,
|
|
} from "react";
|
|
import { WSClient } from "../api/ws-client";
|
|
import type { WSEventType, StorageAdapter } from "../types";
|
|
import type { ClientIdentity } from "../platform/types";
|
|
import type { StoreApi, UseBoundStore } from "zustand";
|
|
import type { AuthState } from "../auth/store";
|
|
import {
|
|
getCurrentSlug,
|
|
subscribeToCurrentSlug,
|
|
} from "../platform/workspace-storage";
|
|
import { createLogger } from "../logger";
|
|
import { useRealtimeSync, type RealtimeSyncStores } from "./use-realtime-sync";
|
|
|
|
type EventHandler = (payload: unknown, actorId?: string, actorType?: string) => void;
|
|
|
|
interface WSContextValue {
|
|
subscribe: (event: WSEventType, handler: EventHandler) => () => void;
|
|
onReconnect: (callback: () => void) => () => void;
|
|
}
|
|
|
|
const WSContext = createContext<WSContextValue | null>(null);
|
|
|
|
export interface WSProviderProps {
|
|
children: ReactNode;
|
|
/** WebSocket server URL (e.g. "ws://localhost:8080/ws") */
|
|
wsUrl: string;
|
|
/** Platform-created auth store instance */
|
|
authStore: UseBoundStore<StoreApi<AuthState>>;
|
|
/** Platform-specific storage adapter for reading auth tokens */
|
|
storage: StorageAdapter;
|
|
/** When true, use HttpOnly cookies instead of token query param for WS auth. */
|
|
cookieAuth?: boolean;
|
|
/** Identifies the WS client to the server (sent as query params on the upgrade URL). */
|
|
identity?: ClientIdentity;
|
|
/** Optional callback for showing toast messages (platform-specific, e.g. sonner) */
|
|
onToast?: (message: string, type?: "info" | "error") => void;
|
|
}
|
|
|
|
export function WSProvider({
|
|
children,
|
|
wsUrl,
|
|
authStore,
|
|
storage,
|
|
cookieAuth,
|
|
identity,
|
|
onToast,
|
|
}: WSProviderProps) {
|
|
const user = authStore((s) => s.user);
|
|
// Reactive read of the current workspace slug (URL-driven singleton in
|
|
// packages/core/platform/workspace-storage.ts). When the workspace switches,
|
|
// the useEffect below tears down the old WS connection and opens a new one
|
|
// bound to the new workspace slug. SSR snapshot is `null` because this
|
|
// provider only renders client-side under CoreProvider.
|
|
const wsSlug = useSyncExternalStore(
|
|
subscribeToCurrentSlug,
|
|
getCurrentSlug,
|
|
() => null,
|
|
);
|
|
const [wsClient, setWsClient] = useState<WSClient | null>(null);
|
|
|
|
// Depend on identity primitives instead of the object reference so a parent
|
|
// re-render that passes a new `{ platform, version, os }` literal does not
|
|
// tear down and reconnect the WS when nothing about the identity actually
|
|
// changed.
|
|
const identityPlatform = identity?.platform;
|
|
const identityVersion = identity?.version;
|
|
const identityOS = identity?.os;
|
|
|
|
useEffect(() => {
|
|
if (!user || !wsSlug) return;
|
|
|
|
// In token mode we need a token from storage; in cookie mode the HttpOnly
|
|
// cookie is sent automatically with the WS upgrade request.
|
|
const token = cookieAuth ? null : storage.getItem("multica_token");
|
|
if (!cookieAuth && !token) return;
|
|
|
|
const ws = new WSClient(wsUrl, {
|
|
logger: createLogger("ws"),
|
|
cookieAuth,
|
|
identity:
|
|
identityPlatform || identityVersion || identityOS
|
|
? {
|
|
platform: identityPlatform,
|
|
version: identityVersion,
|
|
os: identityOS,
|
|
}
|
|
: undefined,
|
|
});
|
|
ws.setAuth(token, wsSlug);
|
|
setWsClient(ws);
|
|
ws.connect();
|
|
|
|
return () => {
|
|
ws.disconnect();
|
|
setWsClient(null);
|
|
};
|
|
}, [
|
|
user,
|
|
wsSlug,
|
|
wsUrl,
|
|
storage,
|
|
cookieAuth,
|
|
identityPlatform,
|
|
identityVersion,
|
|
identityOS,
|
|
]);
|
|
|
|
const stores: RealtimeSyncStores = { authStore };
|
|
|
|
// Centralized WS -> store sync (uses state so it re-subscribes when WS changes)
|
|
useRealtimeSync(wsClient, stores, onToast);
|
|
|
|
const subscribe = useCallback(
|
|
(event: WSEventType, handler: EventHandler) => {
|
|
if (!wsClient) return () => {};
|
|
return wsClient.on(event, handler);
|
|
},
|
|
[wsClient],
|
|
);
|
|
|
|
const onReconnectCb = useCallback(
|
|
(callback: () => void) => {
|
|
if (!wsClient) return () => {};
|
|
return wsClient.onReconnect(callback);
|
|
},
|
|
[wsClient],
|
|
);
|
|
|
|
return (
|
|
<WSContext.Provider value={{ subscribe, onReconnect: onReconnectCb }}>
|
|
{children}
|
|
</WSContext.Provider>
|
|
);
|
|
}
|
|
|
|
export function useWS() {
|
|
const ctx = use(WSContext);
|
|
if (!ctx) throw new Error("useWS must be used within WSProvider");
|
|
return ctx;
|
|
}
|