You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.5 KiB
64 lines
1.5 KiB
import * as React from 'react';
|
|
import { ModalFuncProps } from '../Modal';
|
|
import usePatchElement from '../../_util/usePatchElement';
|
|
import HookModal, { HookModalRef } from './HookModal';
|
|
import {
|
|
withConfirm,
|
|
ModalStaticFunctions,
|
|
withInfo,
|
|
withSuccess,
|
|
withError,
|
|
withWarn,
|
|
} from '../confirm';
|
|
|
|
let uuid = 0;
|
|
|
|
export default function useModal(): [Omit<ModalStaticFunctions, 'warn'>, React.ReactElement] {
|
|
const [elements, patchElement] = usePatchElement();
|
|
|
|
function getConfirmFunc(withFunc: (config: ModalFuncProps) => ModalFuncProps) {
|
|
return function hookConfirm(config: ModalFuncProps) {
|
|
uuid += 1;
|
|
|
|
const modalRef = React.createRef<HookModalRef>();
|
|
|
|
let closeFunc: Function;
|
|
const modal = (
|
|
<HookModal
|
|
key={`modal-${uuid}`}
|
|
config={withFunc(config)}
|
|
ref={modalRef}
|
|
afterClose={() => {
|
|
closeFunc();
|
|
}}
|
|
/>
|
|
);
|
|
|
|
closeFunc = patchElement(modal);
|
|
|
|
return {
|
|
destroy: () => {
|
|
if (modalRef.current) {
|
|
modalRef.current.destroy();
|
|
}
|
|
},
|
|
update: (newConfig: ModalFuncProps) => {
|
|
if (modalRef.current) {
|
|
modalRef.current.update(newConfig);
|
|
}
|
|
},
|
|
};
|
|
};
|
|
}
|
|
|
|
return [
|
|
{
|
|
info: getConfirmFunc(withInfo),
|
|
success: getConfirmFunc(withSuccess),
|
|
error: getConfirmFunc(withError),
|
|
warning: getConfirmFunc(withWarn),
|
|
confirm: getConfirmFunc(withConfirm),
|
|
},
|
|
<>{elements}</>,
|
|
];
|
|
}
|
|
|