Files
fusion/packages/dashboard/app/hooks/useConfirm.ts
Fusion (runfusion.ai) 44562cdf78 feat(FN-4996): complete Step 1 — add tertiary confirm choice
Fusion-Task-Id: FN-4996
Fusion-Task-Lineage: 650bb5e4-18f2-41a0-ae46-b9112c4a0d74
2026-05-18 05:51:14 -07:00

92 lines
2.6 KiB
TypeScript

import { createContext, useCallback, useContext, useMemo, useRef, useState } from "react";
import type { ReactNode } from "react";
import React from "react";
import { ConfirmDialog } from "../components/ConfirmDialog";
export interface ConfirmOptions {
title: string;
message: string;
confirmLabel?: string;
cancelLabel?: string;
danger?: boolean;
tertiaryLabel?: string;
tertiaryDanger?: boolean;
}
export type ConfirmChoice = "primary" | "tertiary" | "cancel";
interface PendingConfirm {
options: ConfirmOptions;
resolve: (value: ConfirmChoice) => void;
}
interface ConfirmContextValue {
confirm: (options: ConfirmOptions) => Promise<boolean>;
confirmWithChoice: (options: ConfirmOptions) => Promise<ConfirmChoice>;
}
const ConfirmContext = createContext<ConfirmContextValue | null>(null);
export function ConfirmDialogProvider({ children }: { children: ReactNode }) {
const [queue, setQueue] = useState<PendingConfirm[]>([]);
const queueRef = useRef<PendingConfirm[]>([]);
const updateQueue = useCallback((updater: (current: PendingConfirm[]) => PendingConfirm[]) => {
setQueue((current) => {
const next = updater(current);
queueRef.current = next;
return next;
});
}, []);
const confirmWithChoice = useCallback((options: ConfirmOptions) => {
return new Promise<ConfirmChoice>((resolve) => {
updateQueue((current) => [...current, { options, resolve }]);
});
}, [updateQueue]);
const confirm = useCallback(async (options: ConfirmOptions) => {
const choice = await confirmWithChoice(options);
return choice === "primary";
}, [confirmWithChoice]);
const resolveCurrent = useCallback((value: ConfirmChoice) => {
const current = queueRef.current[0];
if (!current) {
return;
}
current.resolve(value);
updateQueue((items) => items.slice(1));
}, [updateQueue]);
const active = queue[0] ?? null;
const contextValue = useMemo<ConfirmContextValue>(() => ({ confirm, confirmWithChoice }), [confirm, confirmWithChoice]);
return React.createElement(
ConfirmContext.Provider,
{ value: contextValue },
children,
React.createElement(ConfirmDialog, {
isOpen: active !== null,
options: active?.options ?? null,
onConfirm: () => resolveCurrent("primary"),
onTertiary: () => resolveCurrent("tertiary"),
onCancel: () => resolveCurrent("cancel"),
})
);
}
export function useConfirm(): ConfirmContextValue {
const context = useContext(ConfirmContext);
if (context) {
return context;
}
return {
confirm: async (_options: ConfirmOptions) => false,
confirmWithChoice: async (_options: ConfirmOptions) => "cancel",
};
}