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.
148 lines
3.9 KiB
148 lines
3.9 KiB
import { createVNode, render as vueRender } from 'vue';
|
|
import ConfirmDialog from './ConfirmDialog';
|
|
import type { ModalFuncProps } from './Modal';
|
|
import ConfigProvider, { globalConfigForApi } from '../config-provider';
|
|
import omit from '../_util/omit';
|
|
|
|
import { getConfirmLocale } from './locale';
|
|
import destroyFns from './destroyFns';
|
|
|
|
type ConfigUpdate = ModalFuncProps | ((prevConfig: ModalFuncProps) => ModalFuncProps);
|
|
export type ModalStaticFunctions<T = ModalFunc> = Record<NonNullable<ModalFuncProps['type']>, T>;
|
|
|
|
export type ModalFunc = (props: ModalFuncProps) => {
|
|
destroy: () => void;
|
|
update: (configUpdate: ConfigUpdate) => void;
|
|
};
|
|
|
|
const confirm = (config: ModalFuncProps) => {
|
|
const container = document.createDocumentFragment();
|
|
let currentConfig = {
|
|
...omit(config, ['parentContext', 'appContext']),
|
|
close,
|
|
open: true,
|
|
} as any;
|
|
let confirmDialogInstance = null;
|
|
function destroy(...args: any[]) {
|
|
if (confirmDialogInstance) {
|
|
// destroy
|
|
vueRender(null, container as any);
|
|
confirmDialogInstance.component.update();
|
|
confirmDialogInstance = null;
|
|
}
|
|
const triggerCancel = args.some(param => param && param.triggerCancel);
|
|
if (config.onCancel && triggerCancel) {
|
|
config.onCancel(() => {}, ...args.slice(1));
|
|
}
|
|
for (let i = 0; i < destroyFns.length; i++) {
|
|
const fn = destroyFns[i];
|
|
if (fn === close) {
|
|
destroyFns.splice(i, 1);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
function close(this: typeof close, ...args: any[]) {
|
|
currentConfig = {
|
|
...currentConfig,
|
|
open: false,
|
|
afterClose: () => {
|
|
if (typeof config.afterClose === 'function') {
|
|
config.afterClose();
|
|
}
|
|
destroy.apply(this, args);
|
|
},
|
|
};
|
|
// Legacy support
|
|
if (currentConfig.visible) {
|
|
delete currentConfig.visible;
|
|
}
|
|
update(currentConfig);
|
|
}
|
|
function update(configUpdate: ConfigUpdate) {
|
|
if (typeof configUpdate === 'function') {
|
|
currentConfig = configUpdate(currentConfig);
|
|
} else {
|
|
currentConfig = {
|
|
...currentConfig,
|
|
...configUpdate,
|
|
};
|
|
}
|
|
if (confirmDialogInstance) {
|
|
Object.assign(confirmDialogInstance.component.props, currentConfig);
|
|
confirmDialogInstance.component.update();
|
|
}
|
|
}
|
|
|
|
const Wrapper = (p: ModalFuncProps) => {
|
|
const global = globalConfigForApi;
|
|
const rootPrefixCls = global.prefixCls;
|
|
const prefixCls = p.prefixCls || `${rootPrefixCls}-modal`;
|
|
const iconPrefixCls = global.iconPrefixCls;
|
|
const runtimeLocale = getConfirmLocale();
|
|
return (
|
|
<ConfigProvider {...(global as any)} prefixCls={rootPrefixCls}>
|
|
<ConfirmDialog
|
|
{...p}
|
|
rootPrefixCls={rootPrefixCls}
|
|
prefixCls={prefixCls}
|
|
iconPrefixCls={iconPrefixCls}
|
|
locale={runtimeLocale}
|
|
cancelText={p.cancelText || runtimeLocale.cancelText}
|
|
></ConfirmDialog>
|
|
</ConfigProvider>
|
|
);
|
|
};
|
|
function render(props: ModalFuncProps) {
|
|
const vm = createVNode(Wrapper, { ...props });
|
|
vm.appContext = config.parentContext || config.appContext || vm.appContext;
|
|
vueRender(vm, container as any);
|
|
return vm;
|
|
}
|
|
|
|
confirmDialogInstance = render(currentConfig);
|
|
destroyFns.push(close);
|
|
return {
|
|
destroy: close,
|
|
update,
|
|
};
|
|
};
|
|
|
|
export default confirm;
|
|
|
|
export function withWarn(props: ModalFuncProps): ModalFuncProps {
|
|
return {
|
|
...props,
|
|
type: 'warning',
|
|
};
|
|
}
|
|
|
|
export function withInfo(props: ModalFuncProps): ModalFuncProps {
|
|
return {
|
|
...props,
|
|
type: 'info',
|
|
};
|
|
}
|
|
|
|
export function withSuccess(props: ModalFuncProps): ModalFuncProps {
|
|
return {
|
|
...props,
|
|
type: 'success',
|
|
};
|
|
}
|
|
|
|
export function withError(props: ModalFuncProps): ModalFuncProps {
|
|
return {
|
|
...props,
|
|
type: 'error',
|
|
};
|
|
}
|
|
|
|
export function withConfirm(props: ModalFuncProps): ModalFuncProps {
|
|
return {
|
|
...props,
|
|
type: 'confirm',
|
|
};
|
|
}
|