import * as React from 'react'; import usePatchElement from '../../_util/hooks/usePatchElement'; import type { ModalFunc, ModalStaticFunctions } from '../confirm'; import { withConfirm, withError, withInfo, withSuccess, withWarn } from '../confirm'; import destroyFns from '../destroyFns'; import type { ModalFuncProps } from '../interface'; import type { HookModalRef } from './HookModal'; import HookModal from './HookModal'; let uuid = 0; interface ElementsHolderRef { patchElement: ReturnType[1]; } // Add `then` field for `ModalFunc` return instance. export type ModalFuncWithPromise = (...args: Parameters) => ReturnType & { then(resolve: (confirmed: boolean) => T, reject: VoidFunction): Promise; }; export type HookAPI = Omit, 'warn'>; const ElementsHolder = React.memo( React.forwardRef((_props, ref) => { const [elements, patchElement] = usePatchElement(); React.useImperativeHandle( ref, () => ({ patchElement, }), [], ); // eslint-disable-next-line react/jsx-no-useless-fragment return <>{elements}; }), ); function useModal(): readonly [instance: HookAPI, contextHolder: React.ReactElement] { const holderRef = React.useRef(null); // ========================== Effect ========================== const [actionQueue, setActionQueue] = React.useState<(() => void)[]>([]); React.useEffect(() => { if (actionQueue.length) { const cloneQueue = [...actionQueue]; cloneQueue.forEach((action) => { action(); }); setActionQueue([]); } }, [actionQueue]); // =========================== Hook =========================== const getConfirmFunc = React.useCallback( (withFunc: (config: ModalFuncProps) => ModalFuncProps) => function hookConfirm(config: ModalFuncProps) { uuid += 1; const modalRef = React.createRef(); // Proxy to promise with `onClose` let resolvePromise: (confirmed: boolean) => void; const promise = new Promise((resolve) => { resolvePromise = resolve; }); let silent = false; let closeFunc: Function | undefined; const modal = ( { closeFunc?.(); }} isSilent={() => silent} onConfirm={(confirmed) => { resolvePromise(confirmed); }} /> ); closeFunc = holderRef.current?.patchElement(modal); if (closeFunc) { destroyFns.push(closeFunc); } const instance: ReturnType = { destroy: () => { function destroyAction() { modalRef.current?.destroy(); } if (modalRef.current) { destroyAction(); } else { setActionQueue((prev) => [...prev, destroyAction]); } }, update: (newConfig) => { function updateAction() { modalRef.current?.update(newConfig as ModalFuncProps); } if (modalRef.current) { updateAction(); } else { setActionQueue((prev) => [...prev, updateAction]); } }, then: (resolve) => { silent = true; return promise.then(resolve); }, }; return instance; }, [], ); const fns = React.useMemo( () => ({ info: getConfirmFunc(withInfo), success: getConfirmFunc(withSuccess), error: getConfirmFunc(withError), warning: getConfirmFunc(withWarn), confirm: getConfirmFunc(withConfirm), }), [], ); return [fns, ] as const; } export default useModal;