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.
71 lines
1.4 KiB
71 lines
1.4 KiB
import * as React from 'react';
|
|
import Modal, { ModalFuncProps, destroyFns } from './Modal';
|
|
import confirm from './confirm';
|
|
import Icon from '../icon';
|
|
|
|
export { ActionButtonProps } from './ActionButton';
|
|
export { ModalProps, ModalFuncProps } from './Modal';
|
|
|
|
function modalWarn(props: ModalFuncProps) {
|
|
const config = {
|
|
type: 'warning',
|
|
icon: <Icon type="exclamation-circle" />,
|
|
okCancel: false,
|
|
...props,
|
|
};
|
|
return confirm(config);
|
|
}
|
|
|
|
Modal.info = function infoFn(props: ModalFuncProps) {
|
|
const config = {
|
|
type: 'info',
|
|
icon: <Icon type="info-circle" />,
|
|
okCancel: false,
|
|
...props,
|
|
};
|
|
return confirm(config);
|
|
};
|
|
|
|
Modal.success = function successFn(props: ModalFuncProps) {
|
|
const config = {
|
|
type: 'success',
|
|
icon: <Icon type="check-circle" />,
|
|
okCancel: false,
|
|
...props,
|
|
};
|
|
return confirm(config);
|
|
};
|
|
|
|
Modal.error = function errorFn(props: ModalFuncProps) {
|
|
const config = {
|
|
type: 'error',
|
|
icon: <Icon type="close-circle" />,
|
|
okCancel: false,
|
|
...props,
|
|
};
|
|
return confirm(config);
|
|
};
|
|
|
|
Modal.warning = modalWarn;
|
|
|
|
Modal.warn = modalWarn;
|
|
|
|
Modal.confirm = function confirmFn(props: ModalFuncProps) {
|
|
const config = {
|
|
type: 'confirm',
|
|
okCancel: true,
|
|
...props,
|
|
};
|
|
return confirm(config);
|
|
};
|
|
|
|
Modal.destroyAll = function destroyAllFn() {
|
|
while (destroyFns.length) {
|
|
const close = destroyFns.pop();
|
|
if (close) {
|
|
close();
|
|
}
|
|
}
|
|
};
|
|
|
|
export default Modal;
|
|
|