-
Notifications
You must be signed in to change notification settings - Fork 4k
/
Copy pathModal.js
407 lines (339 loc) · 10.7 KB
/
Modal.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
import cx from 'clsx'
import _ from 'lodash'
import PropTypes from 'prop-types'
import * as React from 'react'
import shallowEqual from 'shallowequal'
import {
childrenUtils,
customPropTypes,
doesNodeContainClick,
eventStack,
getComponentType,
getUnhandledProps,
isBrowser,
makeDebugger,
getKeyOnly,
useAutoControlledValue,
useMergedRefs,
} from '../../lib'
import Icon from '../../elements/Icon'
import Portal from '../../addons/Portal'
import ModalActions from './ModalActions'
import ModalContent from './ModalContent'
import ModalDescription from './ModalDescription'
import ModalDimmer from './ModalDimmer'
import ModalHeader from './ModalHeader'
import { canFit, getLegacyStyles, isLegacy } from './utils'
const debug = makeDebugger('modal')
/**
* A modal displays content that temporarily blocks interactions with the main view of a site.
* @see Confirm
* @see Portal
*/
const Modal = React.forwardRef(function (props, ref) {
const {
actions,
basic,
centered = true,
children,
className,
closeIcon,
closeOnDimmerClick = true,
closeOnDocumentClick = false,
content,
dimmer = true,
eventPool = 'Modal',
header,
size,
style,
trigger,
} = props
// Do not access document when server side rendering
const mountNode = isBrowser() ? props.mountNode || document.body : null
const [open, setOpen] = useAutoControlledValue({
state: props.open,
defaultState: props.defaultOpen,
initialState: false,
})
const [legacyStyles, setLegacyStyles] = React.useState({})
const [scrolling, setScrolling] = React.useState(false)
const [legacy] = React.useState(() => isBrowser() && isLegacy())
const elementRef = useMergedRefs(ref, React.useRef())
const dimmerRef = React.useRef()
const animationRequestId = React.useRef()
const latestDocumentMouseDownEvent = React.useRef()
React.useEffect(() => {
return () => {
cancelAnimationFrame(animationRequestId.current)
latestDocumentMouseDownEvent.current = null
}
}, [])
// ----------------------------------------
// Styles calc
// ----------------------------------------
const setPositionAndClassNames = () => {
if (elementRef.current) {
const rect = elementRef.current.getBoundingClientRect()
const isFitted = canFit(rect)
setScrolling(!isFitted)
// Styles should be computed for IE11
const computedLegacyStyles = legacy ? getLegacyStyles(isFitted, centered, rect) : {}
if (!shallowEqual(computedLegacyStyles, computedLegacyStyles)) {
setLegacyStyles(computedLegacyStyles)
}
}
animationRequestId.current = requestAnimationFrame(setPositionAndClassNames)
}
// ----------------------------------------
// Document Event Handlers
// ----------------------------------------
const handleClose = (e) => {
debug('close()')
setOpen(false)
_.invoke(props, 'onClose', e, { ...props, open: false })
}
const handleDocumentMouseDown = (e) => {
latestDocumentMouseDownEvent.current = e
}
const handleDocumentClick = (e) => {
debug('handleDocumentClick()')
const currentDocumentMouseDownEvent = latestDocumentMouseDownEvent.current
latestDocumentMouseDownEvent.current = null
if (
!closeOnDimmerClick ||
doesNodeContainClick(elementRef.current, currentDocumentMouseDownEvent) ||
doesNodeContainClick(elementRef.current, e)
)
return
setOpen(false)
_.invoke(props, 'onClose', e, { ...props, open: false })
}
const handleOpen = (e) => {
debug('open()')
setOpen(true)
_.invoke(props, 'onOpen', e, { ...props, open: true })
}
const handlePortalMount = (e) => {
debug('handlePortalMount()', { eventPool })
setScrolling(false)
setPositionAndClassNames()
eventStack.sub('mousedown', handleDocumentMouseDown, {
pool: eventPool,
target: dimmerRef.current,
})
eventStack.sub('click', handleDocumentClick, {
pool: eventPool,
target: dimmerRef.current,
})
_.invoke(props, 'onMount', e, props)
}
const handlePortalUnmount = (e) => {
debug('handlePortalUnmount()', { eventPool })
cancelAnimationFrame(animationRequestId.current)
eventStack.unsub('mousedown', handleDocumentMouseDown, {
pool: eventPool,
target: dimmerRef.current,
})
eventStack.unsub('click', handleDocumentClick, {
pool: eventPool,
target: dimmerRef.current,
})
_.invoke(props, 'onUnmount', e, props)
}
// ----------------------------------------
// Render
// ----------------------------------------
const renderContent = (rest) => {
const classes = cx(
'ui',
size,
getKeyOnly(basic, 'basic'),
getKeyOnly(legacy, 'legacy'),
getKeyOnly(scrolling, 'scrolling'),
'modal transition visible active',
className,
)
const ElementType = getComponentType(props)
const closeIconName = closeIcon === true ? 'close' : closeIcon
const closeIconJSX = Icon.create(closeIconName, {
overrideProps: (predefinedProps) => ({
onClick: (e) => {
_.invoke(predefinedProps, 'onClick', e)
handleClose(e)
},
}),
})
return (
<ElementType
{...rest}
className={classes}
ref={elementRef}
style={{ ...legacyStyles, ...style }}
>
{closeIconJSX}
{childrenUtils.isNil(children) ? (
<>
{ModalHeader.create(header, { autoGenerateKey: false })}
{ModalContent.create(content, { autoGenerateKey: false })}
{ModalActions.create(actions, {
overrideProps: (predefinedProps) => ({
onActionClick: (e, actionProps) => {
_.invoke(predefinedProps, 'onActionClick', e, actionProps)
_.invoke(props, 'onActionClick', e, props)
handleClose(e)
},
}),
})}
</>
) : (
children
)}
</ElementType>
)
}
// Short circuit when server side rendering
if (!isBrowser()) {
return React.isValidElement(trigger) ? trigger : null
}
const unhandled = getUnhandledProps(Modal, props)
const portalPropNames = Portal.handledProps
const rest = _.reduce(
unhandled,
(acc, val, key) => {
if (!_.includes(portalPropNames, key)) acc[key] = val
return acc
},
{},
)
const portalProps = _.pick(unhandled, portalPropNames)
// Heads up!
//
// The SUI CSS selector to prevent the modal itself from blurring requires an immediate .dimmer child:
// .blurring.dimmed.dimmable>:not(.dimmer) { ... }
//
// The .blurring.dimmed.dimmable is the body, so that all body content inside is blurred.
// We need the immediate child to be the dimmer to :not() blur the modal itself!
// Otherwise, the portal div is also blurred, blurring the modal.
//
// We cannot them wrap the modalJSX in an actual <Dimmer /> instead, we apply the dimmer classes to the <Portal />.
return (
<Portal
closeOnDocumentClick={closeOnDocumentClick}
{...portalProps}
trigger={trigger}
eventPool={eventPool}
mountNode={mountNode}
open={open}
onClose={handleClose}
onMount={handlePortalMount}
onOpen={handleOpen}
onUnmount={handlePortalUnmount}
>
{ModalDimmer.create(_.isPlainObject(dimmer) ? dimmer : {}, {
autoGenerateKey: false,
defaultProps: {
blurring: dimmer === 'blurring',
inverted: dimmer === 'inverted',
},
overrideProps: {
children: renderContent(rest),
centered,
mountNode,
scrolling,
ref: dimmerRef,
},
})}
</Portal>
)
})
Modal.displayName = 'Modal'
Modal.propTypes = {
/** An element type to render as (string or function). */
as: PropTypes.elementType,
/** Shorthand for Modal.Actions. Typically an array of button shorthand. */
actions: customPropTypes.itemShorthand,
/** A modal can reduce its complexity */
basic: PropTypes.bool,
/** A modal can be vertically centered in the viewport */
centered: PropTypes.bool,
/** Primary content. */
children: PropTypes.node,
/** Additional classes. */
className: PropTypes.string,
/** Shorthand for the close icon. Closes the modal on click. */
closeIcon: PropTypes.oneOfType([PropTypes.node, PropTypes.object, PropTypes.bool]),
/** Whether or not the Modal should close when the dimmer is clicked. */
closeOnDimmerClick: PropTypes.bool,
/** Whether or not the Modal should close when the document is clicked. */
closeOnDocumentClick: PropTypes.bool,
/** Simple text content for the Modal. */
content: customPropTypes.itemShorthand,
/** Initial value of open. */
defaultOpen: PropTypes.bool,
/** A Modal can appear in a dimmer. */
dimmer: PropTypes.oneOfType([
PropTypes.bool,
PropTypes.func,
PropTypes.object,
PropTypes.oneOf(['inverted', 'blurring']),
]),
/** Event pool namespace that is used to handle component events */
eventPool: PropTypes.string,
/** Modal displayed above the content in bold. */
header: customPropTypes.itemShorthand,
/** The node where the modal should mount. Defaults to document.body. */
mountNode: PropTypes.any,
/**
* Action onClick handler when using shorthand `actions`.
*
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {object} data - All props.
*/
onActionClick: PropTypes.func,
/**
* Called when a close event happens.
*
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {object} data - All props.
*/
onClose: PropTypes.func,
/**
* Called when the modal is mounted on the DOM.
*
* @param {null}
* @param {object} data - All props.
*/
onMount: PropTypes.func,
/**
* Called when an open event happens.
*
* @param {SyntheticEvent} event - React's original SyntheticEvent.
* @param {object} data - All props.
*/
onOpen: PropTypes.func,
/**
* Called when the modal is unmounted from the DOM.
*
* @param {null}
* @param {object} data - All props.
*/
onUnmount: PropTypes.func,
/** Controls whether or not the Modal is displayed. */
open: PropTypes.bool,
/** A modal can vary in size */
size: PropTypes.oneOf(['mini', 'tiny', 'small', 'large', 'fullscreen']),
/** Custom styles. */
style: PropTypes.object,
/** Element to be rendered in-place where the modal is defined. */
trigger: PropTypes.node,
/**
* NOTE: Any unhandled props that are defined in Modal are passed-through
* to the inner Portal.
*/
}
Modal.Actions = ModalActions
Modal.Content = ModalContent
Modal.Description = ModalDescription
Modal.Dimmer = ModalDimmer
Modal.Header = ModalHeader
export default Modal