-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
63 lines (56 loc) · 1.17 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import Modal from './Modal'
import modalConfirm from './confirm'
// export { ActionButtonProps } from './ActionButton'
// export { ModalProps, ModalFuncProps } from './Modal'
const info = function (props) {
const config = {
type: 'info',
iconType: 'info-circle',
okCancel: false,
...props,
}
return modalConfirm(config)
}
const success = function (props) {
const config = {
type: 'success',
iconType: 'check-circle',
okCancel: false,
...props,
}
return modalConfirm(config)
}
const error = function (props) {
const config = {
type: 'error',
iconType: 'cross-circle',
okCancel: false,
...props,
}
return modalConfirm(config)
}
const warning = function (props) {
const config = {
type: 'warning',
iconType: 'exclamation-circle',
okCancel: false,
...props,
}
return modalConfirm(config)
}
const warn = warning
const confirm = function (props) {
const config = {
type: 'confirm',
okCancel: true,
...props,
}
return modalConfirm(config)
}
Modal.info = info
Modal.success = success
Modal.error = error
Modal.warning = warning
Modal.warn = warn
Modal.confirm = confirm
export default Modal