* feat: export snapshot as tar file chore(mutext): prevent double lock release * chore: pr feedbacks * fix: dump single file no tar * chore: pr feedbacks
133 lines
4.3 KiB
TypeScript
133 lines
4.3 KiB
TypeScript
import { useQueryClient } from "@tanstack/react-query";
|
|
import { useCallback, useEffect, useRef } from "react";
|
|
import { serverEventNames, type ServerEventPayloadMap } from "~/schemas/server-events";
|
|
|
|
type LifecycleEventPayloadMap = {
|
|
connected: { type: "connected"; timestamp: number };
|
|
heartbeat: { timestamp: number };
|
|
};
|
|
|
|
type ServerEventsPayloadMap = LifecycleEventPayloadMap & ServerEventPayloadMap;
|
|
type ServerEventType = keyof ServerEventsPayloadMap;
|
|
|
|
type EventHandler<T extends ServerEventType> = (data: ServerEventsPayloadMap[T]) => void;
|
|
type EventHandlerSet<T extends ServerEventType> = Set<EventHandler<T>>;
|
|
type EventHandlerMap = {
|
|
[K in ServerEventType]?: EventHandlerSet<K>;
|
|
};
|
|
|
|
const invalidatingEvents = new Set<ServerEventType>([
|
|
"backup:completed",
|
|
"volume:updated",
|
|
"volume:status_changed",
|
|
"mirror:completed",
|
|
"doctor:started",
|
|
"doctor:completed",
|
|
"doctor:cancelled",
|
|
]);
|
|
|
|
export type RestoreEvent = ServerEventsPayloadMap["restore:started"] | ServerEventsPayloadMap["restore:completed"];
|
|
export type RestoreProgressEvent = ServerEventsPayloadMap["restore:progress"];
|
|
export type RestoreCompletedEvent = ServerEventsPayloadMap["restore:completed"];
|
|
export type BackupProgressEvent = ServerEventsPayloadMap["backup:progress"];
|
|
|
|
const parseEventData = <T extends ServerEventType>(event: Event): ServerEventsPayloadMap[T] =>
|
|
JSON.parse((event as MessageEvent<string>).data) as ServerEventsPayloadMap[T];
|
|
|
|
/**
|
|
* Hook to listen to Server-Sent Events (SSE) from the backend
|
|
* Automatically handles cache invalidation for backup and volume events
|
|
*/
|
|
export function useServerEvents() {
|
|
const queryClient = useQueryClient();
|
|
const eventSourceRef = useRef<EventSource | null>(null);
|
|
const handlersRef = useRef<EventHandlerMap>({});
|
|
const emit = useCallback(<T extends ServerEventType>(eventName: T, data: ServerEventsPayloadMap[T]) => {
|
|
const handlers = handlersRef.current[eventName] as EventHandlerSet<T> | undefined;
|
|
handlers?.forEach((handler) => {
|
|
handler(data);
|
|
});
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
const eventSource = new EventSource("/api/v1/events");
|
|
eventSourceRef.current = eventSource;
|
|
|
|
eventSource.addEventListener("connected", (event) => {
|
|
const data = parseEventData<"connected">(event);
|
|
console.info("[SSE] Connected to server events");
|
|
emit("connected", data);
|
|
});
|
|
|
|
eventSource.addEventListener("heartbeat", (event) => {
|
|
emit("heartbeat", parseEventData<"heartbeat">(event));
|
|
});
|
|
|
|
for (const eventName of serverEventNames) {
|
|
eventSource.addEventListener(eventName, (event) => {
|
|
const data = parseEventData<typeof eventName>(event);
|
|
console.info(`[SSE] ${eventName}:`, data);
|
|
|
|
if (invalidatingEvents.has(eventName)) {
|
|
void queryClient.invalidateQueries();
|
|
}
|
|
|
|
if (eventName === "backup:completed") {
|
|
void queryClient.refetchQueries();
|
|
}
|
|
|
|
if (eventName === "volume:status_changed") {
|
|
const statusData = data as ServerEventsPayloadMap["volume:status_changed"];
|
|
emit("volume:status_changed", statusData);
|
|
emit("volume:updated", statusData);
|
|
return;
|
|
}
|
|
|
|
emit(eventName, data);
|
|
});
|
|
}
|
|
|
|
eventSource.onerror = (error) => {
|
|
console.error("[SSE] Connection error:", error);
|
|
};
|
|
|
|
return () => {
|
|
console.info("[SSE] Disconnecting from server events");
|
|
eventSource.close();
|
|
eventSourceRef.current = null;
|
|
};
|
|
}, [emit, queryClient]);
|
|
|
|
const addEventListener = useCallback(
|
|
<T extends ServerEventType>(eventName: T, handler: EventHandler<T>, options?: { signal?: AbortSignal }) => {
|
|
if (options?.signal?.aborted) {
|
|
return () => {};
|
|
}
|
|
|
|
const existingHandlers = handlersRef.current[eventName] as EventHandlerSet<T> | undefined;
|
|
const eventHandlers = existingHandlers ?? new Set<EventHandler<T>>();
|
|
eventHandlers.add(handler);
|
|
handlersRef.current[eventName] = eventHandlers as EventHandlerMap[T];
|
|
|
|
const unsubscribe = () => {
|
|
const handlers = handlersRef.current[eventName] as EventHandlerSet<T> | undefined;
|
|
handlers?.delete(handler);
|
|
if (handlers && handlers.size === 0) {
|
|
delete handlersRef.current[eventName];
|
|
}
|
|
if (options?.signal) {
|
|
options.signal.removeEventListener("abort", unsubscribe);
|
|
}
|
|
};
|
|
|
|
if (options?.signal) {
|
|
options.signal.addEventListener("abort", unsubscribe, { once: true });
|
|
}
|
|
|
|
return unsubscribe;
|
|
},
|
|
[],
|
|
);
|
|
|
|
return { addEventListener };
|
|
}
|