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.
 
 

67 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';
Modal.info = function(props: ModalFuncProps) {
const config = {
type: 'info',
icon: <Icon type="info-circle" />,
okCancel: false,
...props,
};
return confirm(config);
};
Modal.success = function(props: ModalFuncProps) {
const config = {
type: 'success',
icon: <Icon type="check-circle" />,
okCancel: false,
...props,
};
return confirm(config);
};
Modal.error = function(props: ModalFuncProps) {
const config = {
type: 'error',
icon: <Icon type="close-circle" />,
okCancel: false,
...props,
};
return confirm(config);
};
Modal.warning = Modal.warn = function(props: ModalFuncProps) {
const config = {
type: 'warning',
icon: <Icon type="exclamation-circle" />,
okCancel: false,
...props,
};
return confirm(config);
};
Modal.confirm = function(props: ModalFuncProps) {
const config = {
type: 'confirm',
okCancel: true,
...props,
};
return confirm(config);
};
Modal.destroyAll = function() {
while (destroyFns.length) {
const close = destroyFns.pop();
if (close) {
close();
}
}
};
export default Modal;