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.
62 lines
1.4 KiB
62 lines
1.4 KiB
import * as React from 'react';
|
|
import Modal from './Modal';
|
|
import confirm from './confirm';
|
|
import assign from 'object-assign';
|
|
|
|
export interface ModalFuncProps {
|
|
visible?: boolean;
|
|
title?: React.ReactNode | string;
|
|
content?: React.ReactNode | string;
|
|
onOk?: (func: Function) => any;
|
|
onCancel?: (func: Function) => any;
|
|
width?: string | number;
|
|
iconClassName?: string;
|
|
okText?: string;
|
|
cancelText?: string;
|
|
iconType?: string;
|
|
}
|
|
Modal.info = function (props: ModalFuncProps) {
|
|
const config = assign({}, {
|
|
type: 'info',
|
|
iconType: 'info-circle',
|
|
okCancel: false,
|
|
}, props);
|
|
return confirm(config);
|
|
};
|
|
|
|
Modal.success = function (props: ModalFuncProps) {
|
|
const config = assign({}, {
|
|
type: 'success',
|
|
iconType: 'check-circle',
|
|
okCancel: false,
|
|
}, props);
|
|
return confirm(config);
|
|
};
|
|
|
|
Modal.error = function (props: ModalFuncProps) {
|
|
const config = assign({}, {
|
|
type: 'error',
|
|
iconType: 'cross-circle',
|
|
okCancel: false,
|
|
}, props);
|
|
return confirm(config);
|
|
};
|
|
|
|
Modal.warning = Modal.warn = function (props: ModalFuncProps) {
|
|
const config = assign({}, {
|
|
type: 'warning',
|
|
iconType: 'exclamation-circle',
|
|
okCancel: false,
|
|
}, props);
|
|
return confirm(config);
|
|
};
|
|
|
|
Modal.confirm = function (props: ModalFuncProps) {
|
|
const config = assign({}, {
|
|
type: 'confirm',
|
|
okCancel: true,
|
|
}, props);
|
|
return confirm(config);
|
|
};
|
|
|
|
export default Modal;
|
|
|