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.
57 lines
1.0 KiB
57 lines
1.0 KiB
7 years ago
|
import Modal from './Modal'
|
||
|
import confirm from './confirm'
|
||
|
|
||
|
// export { ActionButtonProps } from './ActionButton'
|
||
|
// export { ModalProps, ModalFuncProps } from './Modal'
|
||
|
|
||
|
Modal.info = function (props) {
|
||
|
const config = {
|
||
|
type: 'info',
|
||
|
iconType: 'info-circle',
|
||
|
okCancel: false,
|
||
|
...props,
|
||
|
}
|
||
|
return confirm(config)
|
||
|
}
|
||
|
|
||
|
Modal.success = function (props) {
|
||
|
const config = {
|
||
|
type: 'success',
|
||
|
iconType: 'check-circle',
|
||
|
okCancel: false,
|
||
|
...props,
|
||
|
}
|
||
|
return confirm(config)
|
||
|
}
|
||
|
|
||
|
Modal.error = function (props) {
|
||
|
const config = {
|
||
|
type: 'error',
|
||
|
iconType: 'cross-circle',
|
||
|
okCancel: false,
|
||
|
...props,
|
||
|
}
|
||
|
return confirm(config)
|
||
|
}
|
||
|
|
||
|
Modal.warning = Modal.warn = function (props) {
|
||
|
const config = {
|
||
|
type: 'warning',
|
||
|
iconType: 'exclamation-circle',
|
||
|
okCancel: false,
|
||
|
...props,
|
||
|
}
|
||
|
return confirm(config)
|
||
|
}
|
||
|
|
||
|
Modal.confirm = function (props) {
|
||
|
const config = {
|
||
|
type: 'confirm',
|
||
|
okCancel: true,
|
||
|
...props,
|
||
|
}
|
||
|
return confirm(config)
|
||
|
}
|
||
|
|
||
|
export default Modal
|