mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 03:29:59 +08:00
5c266355ec
deperated `iconType` close #13918
68 lines
1.4 KiB
TypeScript
68 lines
1.4 KiB
TypeScript
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;
|