2016-03-21 21:16:38 +08:00
|
|
|
import Modal from './Modal';
|
2015-09-07 11:48:57 +08:00
|
|
|
import confirm from './confirm';
|
|
|
|
|
2016-03-21 21:16:38 +08:00
|
|
|
Modal.info = function (props) {
|
2016-03-25 18:16:48 +08:00
|
|
|
const config = {
|
2016-04-11 14:57:29 +08:00
|
|
|
type: 'info',
|
|
|
|
iconType: 'info-circle',
|
2016-01-07 17:46:46 +08:00
|
|
|
okCancel: false,
|
2016-04-11 14:57:29 +08:00
|
|
|
...props,
|
2016-03-25 18:16:48 +08:00
|
|
|
};
|
2016-01-07 17:46:46 +08:00
|
|
|
return confirm(config);
|
2015-09-07 11:48:57 +08:00
|
|
|
};
|
|
|
|
|
2016-03-21 21:16:38 +08:00
|
|
|
Modal.success = function (props) {
|
2016-03-25 18:16:48 +08:00
|
|
|
const config = {
|
2016-04-11 14:57:29 +08:00
|
|
|
type: 'success',
|
|
|
|
iconType: 'check-circle',
|
2016-01-07 17:46:46 +08:00
|
|
|
okCancel: false,
|
2016-04-11 14:57:29 +08:00
|
|
|
...props,
|
2016-03-25 18:16:48 +08:00
|
|
|
};
|
2016-01-07 17:46:46 +08:00
|
|
|
return confirm(config);
|
2015-09-07 11:48:57 +08:00
|
|
|
};
|
|
|
|
|
2016-03-21 21:16:38 +08:00
|
|
|
Modal.error = function (props) {
|
2016-03-25 18:16:48 +08:00
|
|
|
const config = {
|
2016-04-11 14:57:29 +08:00
|
|
|
type: 'error',
|
|
|
|
iconType: 'cross-circle',
|
2016-01-07 17:46:46 +08:00
|
|
|
okCancel: false,
|
2016-04-11 14:57:29 +08:00
|
|
|
...props,
|
2016-03-25 18:16:48 +08:00
|
|
|
};
|
2016-01-07 17:46:46 +08:00
|
|
|
return confirm(config);
|
2015-09-07 11:48:57 +08:00
|
|
|
};
|
|
|
|
|
2016-04-11 14:59:37 +08:00
|
|
|
Modal.warning = function (props) {
|
|
|
|
const config = {
|
|
|
|
type: 'warning',
|
|
|
|
iconType: 'exclamation-circle',
|
|
|
|
okCancel: false,
|
|
|
|
...props,
|
|
|
|
};
|
|
|
|
return confirm(config);
|
|
|
|
};
|
|
|
|
|
2016-03-21 21:16:38 +08:00
|
|
|
Modal.confirm = function (props) {
|
2016-03-25 18:16:48 +08:00
|
|
|
const config = {
|
2016-04-11 14:57:29 +08:00
|
|
|
type: 'confirm',
|
2016-01-07 17:46:46 +08:00
|
|
|
okCancel: true,
|
2016-04-11 14:57:29 +08:00
|
|
|
...props,
|
2016-03-25 18:16:48 +08:00
|
|
|
};
|
2016-01-07 17:46:46 +08:00
|
|
|
return confirm(config);
|
2015-09-07 11:48:57 +08:00
|
|
|
};
|
|
|
|
|
2016-03-21 21:16:38 +08:00
|
|
|
export default Modal;
|