-
Notifications
You must be signed in to change notification settings - Fork 4.1k
/
Copy pathConfirm.js
106 lines (90 loc) · 2.82 KB
/
Confirm.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
import _ from 'lodash'
import PropTypes from 'prop-types'
import * as React from 'react'
import { customPropTypes, getUnhandledProps } from '../../lib'
import Button from '../../elements/Button'
import Modal from '../../modules/Modal'
/**
* A Confirm modal gives the user a choice to confirm or cancel an action.
* @see Modal
*/
const Confirm = React.forwardRef(function (props, ref) {
const {
cancelButton = 'Cancel',
confirmButton = 'OK',
content = 'Are you sure?',
header,
open,
size = 'small',
} = props
const rest = getUnhandledProps(Confirm, props)
const handleCancel = (e) => {
_.invoke(props, 'onCancel', e, props)
}
const handleCancelOverrides = (predefinedProps) => ({
onClick: (e, buttonProps) => {
_.invoke(predefinedProps, 'onClick', e, buttonProps)
handleCancel(e)
},
})
const handleConfirmOverrides = (predefinedProps) => ({
onClick: (e, buttonProps) => {
_.invoke(predefinedProps, 'onClick', e, buttonProps)
_.invoke(props, 'onConfirm', e, props)
},
})
// `open` is auto controlled by the Modal
// It cannot be present (even undefined) with `defaultOpen`
// only apply it if the user provided an open prop
const openProp = {}
if (_.has(props, 'open')) {
openProp.open = open
}
return (
<Modal {...rest} {...openProp} size={size} onClose={handleCancel} ref={ref}>
{Modal.Header.create(header, { autoGenerateKey: false })}
{Modal.Content.create(content, { autoGenerateKey: false })}
<Modal.Actions>
{Button.create(cancelButton, {
autoGenerateKey: false,
overrideProps: handleCancelOverrides,
})}
{Button.create(confirmButton, {
autoGenerateKey: false,
defaultProps: { primary: true },
overrideProps: handleConfirmOverrides,
})}
</Modal.Actions>
</Modal>
)
})
Confirm.displayName = 'Confirm'
Confirm.propTypes = {
/** The cancel button text. */
cancelButton: customPropTypes.itemShorthand,
/** The OK button text. */
confirmButton: customPropTypes.itemShorthand,
/** The ModalContent text. */
content: customPropTypes.itemShorthand,
/** The ModalHeader text. */
header: customPropTypes.itemShorthand,
/**
* Called when the Modal is closed without clicking confirm.
*
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {object} data - All props.
*/
onCancel: PropTypes.func,
/**
* Called when the OK button is clicked.
*
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {object} data - All props.
*/
onConfirm: PropTypes.func,
/** Whether or not the modal is visible. */
open: PropTypes.bool,
/** A Confirm can vary in size */
size: PropTypes.oneOf(['mini', 'tiny', 'small', 'large', 'fullscreen']),
}
export default Confirm