-
-
Notifications
You must be signed in to change notification settings - Fork 529
/
index.js
595 lines (527 loc) · 18.5 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
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
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
'use strict'
import React from 'react'
import PropTypes from 'prop-types'
import classname from 'classnames'
/* Decorators */
import staticMethods from './decorators/staticMethods'
import windowListener from './decorators/windowListener'
import customEvent from './decorators/customEvent'
import isCapture from './decorators/isCapture'
import getEffect from './decorators/getEffect'
import trackRemoval from './decorators/trackRemoval'
/* Utils */
import getPosition from './utils/getPosition'
import getTipContent from './utils/getTipContent'
import { parseAria } from './utils/aria'
import nodeListToArray from './utils/nodeListToArray'
/* CSS */
import cssStyle from './style'
@staticMethods
@windowListener
@customEvent
@isCapture
@getEffect
@trackRemoval
class ReactTooltip extends React.Component {
static propTypes = {
children: PropTypes.any,
place: PropTypes.string,
type: PropTypes.string,
effect: PropTypes.string,
offset: PropTypes.object,
multiline: PropTypes.bool,
border: PropTypes.bool,
insecure: PropTypes.bool,
class: PropTypes.string,
className: PropTypes.string,
id: PropTypes.string,
html: PropTypes.bool,
delayHide: PropTypes.number,
delayUpdate: PropTypes.number,
delayShow: PropTypes.number,
event: PropTypes.string,
eventOff: PropTypes.string,
watchWindow: PropTypes.bool,
isCapture: PropTypes.bool,
globalEventOff: PropTypes.string,
getContent: PropTypes.any,
afterShow: PropTypes.func,
afterHide: PropTypes.func,
overridePosition: PropTypes.func,
disable: PropTypes.bool,
scrollHide: PropTypes.bool,
resizeHide: PropTypes.bool,
wrapper: PropTypes.string,
clickable: PropTypes.bool
};
static defaultProps = {
insecure: true,
resizeHide: true,
wrapper: 'div',
clickable: false
};
static supportedWrappers = ['div', 'span'];
static displayName = 'ReactTooltip';
constructor (props) {
super(props)
this.state = {
place: props.place || 'top', // Direction of tooltip
desiredPlace: props.place || 'top',
type: 'dark', // Color theme of tooltip
effect: 'float', // float or fixed
show: false,
border: false,
offset: {},
extraClass: '',
html: false,
delayHide: 0,
delayShow: 0,
event: props.event || null,
eventOff: props.eventOff || null,
currentEvent: null, // Current mouse event
currentTarget: null, // Current target of mouse event
ariaProps: parseAria(props), // aria- and role attributes
isEmptyTip: false,
disable: false,
originTooltip: null,
isMultiline: false
}
this.bind([
'showTooltip',
'updateTooltip',
'hideTooltip',
'hideTooltipOnScroll',
'getTooltipContent',
'globalRebuild',
'globalShow',
'globalHide',
'onWindowResize',
'mouseOnToolTip'
])
this.mount = true
this.delayShowLoop = null
this.delayHideLoop = null
this.delayReshow = null
this.intervalUpdateContent = null
}
/**
* For unify the bind and unbind listener
*/
bind (methodArray) {
methodArray.forEach(method => {
this[method] = this[method].bind(this)
})
}
componentDidMount () {
const { insecure, resizeHide } = this.props
if (insecure) {
this.setStyleHeader() // Set the style to the <link>
}
this.bindListener() // Bind listener for tooltip
this.bindWindowEvents(resizeHide) // Bind global event for static method
}
static getDerivedStateFromProps (nextProps, prevState) {
const { ariaProps } = prevState
const newAriaProps = parseAria(nextProps)
const isChanged = Object.keys(newAriaProps).some(props => {
return newAriaProps[props] !== ariaProps[props]
})
if (!isChanged) {
return null
}
return {
...prevState,
ariaProps: newAriaProps
}
}
componentWillUnmount () {
this.mount = false
this.clearTimer()
this.unbindListener()
this.removeScrollListener()
this.unbindWindowEvents()
}
/**
* Return if the mouse is on the tooltip.
* @returns {boolean} true - mouse is on the tooltip
*/
mouseOnToolTip () {
const {show} = this.state
if (show && this.tooltipRef) {
/* old IE or Firefox work around */
if (!this.tooltipRef.matches) {
/* old IE work around */
if (this.tooltipRef.msMatchesSelector) {
this.tooltipRef.matches = this.tooltipRef.msMatchesSelector
} else {
/* old Firefox work around */
this.tooltipRef.matches = this.tooltipRef.mozMatchesSelector
}
}
return this.tooltipRef.matches(':hover')
}
return false
}
/**
* Pick out corresponded target elements
*/
getTargetArray (id) {
let targetArray
if (!id) {
targetArray = document.querySelectorAll('[data-tip]:not([data-for])')
} else {
const escaped = id.replace(/\\/g, '\\\\').replace(/"/g, '\\"')
targetArray = document.querySelectorAll(`[data-tip][data-for="${escaped}"]`)
}
// targetArray is a NodeList, convert it to a real array
return nodeListToArray(targetArray)
}
/**
* Bind listener to the target elements
* These listeners used to trigger showing or hiding the tooltip
*/
bindListener () {
const {id, globalEventOff, isCapture} = this.props
let targetArray = this.getTargetArray(id)
targetArray.forEach(target => {
const isCaptureMode = this.isCapture(target)
const effect = this.getEffect(target)
if (target.getAttribute('currentItem') === null) {
target.setAttribute('currentItem', 'false')
}
this.unbindBasicListener(target)
if (this.isCustomEvent(target)) {
this.customBindListener(target)
return
}
target.addEventListener('mouseenter', this.showTooltip, isCaptureMode)
if (effect === 'float') {
target.addEventListener('mousemove', this.updateTooltip, isCaptureMode)
}
target.addEventListener('mouseleave', this.hideTooltip, isCaptureMode)
})
// Global event to hide tooltip
if (globalEventOff) {
window.removeEventListener(globalEventOff, this.hideTooltip)
window.addEventListener(globalEventOff, this.hideTooltip, isCapture)
}
// Track removal of targetArray elements from DOM
this.bindRemovalTracker()
}
/**
* Unbind listeners on target elements
*/
unbindListener () {
const {id, globalEventOff} = this.props
const targetArray = this.getTargetArray(id)
targetArray.forEach(target => {
this.unbindBasicListener(target)
if (this.isCustomEvent(target)) this.customUnbindListener(target)
})
if (globalEventOff) window.removeEventListener(globalEventOff, this.hideTooltip)
this.unbindRemovalTracker()
}
/**
* Invoke this before bind listener and unmount the component
* it is necessary to invoke this even when binding custom event
* so that the tooltip can switch between custom and default listener
*/
unbindBasicListener (target) {
const isCaptureMode = this.isCapture(target)
target.removeEventListener('mouseenter', this.showTooltip, isCaptureMode)
target.removeEventListener('mousemove', this.updateTooltip, isCaptureMode)
target.removeEventListener('mouseleave', this.hideTooltip, isCaptureMode)
}
getTooltipContent () {
const {getContent, children} = this.props
// Generate tooltip content
let content
if (getContent) {
if (Array.isArray(getContent)) {
content = getContent[0] && getContent[0](this.state.originTooltip)
} else {
content = getContent(this.state.originTooltip)
}
}
return getTipContent(this.state.originTooltip, children, content, this.state.isMultiline)
}
isEmptyTip (placeholder) {
return typeof placeholder === 'string' && placeholder === '' || placeholder === null
}
/**
* When mouse enter, show the tooltip
*/
showTooltip (e, isGlobalCall) {
if (isGlobalCall) {
// Don't trigger other elements belongs to other ReactTooltip
const targetArray = this.getTargetArray(this.props.id)
const isMyElement = targetArray.some(ele => ele === e.currentTarget)
if (!isMyElement) return
}
// Get the tooltip content
// calculate in this phrase so that tip width height can be detected
const {multiline, getContent} = this.props
const originTooltip = e.currentTarget.getAttribute('data-tip')
const isMultiline = e.currentTarget.getAttribute('data-multiline') || multiline || false
// If it is focus event or called by ReactTooltip.show, switch to `solid` effect
const switchToSolid = e instanceof window.FocusEvent || isGlobalCall
// if it needs to skip adding hide listener to scroll
let scrollHide = true
if (e.currentTarget.getAttribute('data-scroll-hide')) {
scrollHide = e.currentTarget.getAttribute('data-scroll-hide') === 'true'
} else if (this.props.scrollHide != null) {
scrollHide = this.props.scrollHide
}
// Make sure the correct place is set
let desiredPlace = e.currentTarget.getAttribute('data-place') || this.props.place || 'top'
let effect = switchToSolid && 'solid' || this.getEffect(e.currentTarget)
let offset = e.currentTarget.getAttribute('data-offset') || this.props.offset || {}
let result = getPosition(e, e.currentTarget, this.tooltipRef, desiredPlace, desiredPlace, effect, offset)
if (result.position && this.props.overridePosition) {
result.position = this.props.overridePosition(result.position, e.currentTarget, this.tooltipRef, desiredPlace, desiredPlace, effect, offset)
}
let place = result.isNewState ? result.newState.place : desiredPlace
// To prevent previously created timers from triggering
this.clearTimer()
var target = e.currentTarget
var reshowDelay = this.state.show ? target.getAttribute('data-delay-update') || this.props.delayUpdate : 0
var self = this
var updateState = function updateState () {
self.setState({
originTooltip: originTooltip,
isMultiline: isMultiline,
desiredPlace: desiredPlace,
place: place,
type: target.getAttribute('data-type') || self.props.type || 'dark',
effect: effect,
offset: offset,
html: target.getAttribute('data-html') ? target.getAttribute('data-html') === 'true' : self.props.html || false,
delayShow: target.getAttribute('data-delay-show') || self.props.delayShow || 0,
delayHide: target.getAttribute('data-delay-hide') || self.props.delayHide || 0,
delayUpdate: target.getAttribute('data-delay-update') || self.props.delayUpdate || 0,
border: target.getAttribute('data-border') ? target.getAttribute('data-border') === 'true' : self.props.border || false,
extraClass: target.getAttribute('data-class') || self.props.class || self.props.className || '',
disable: target.getAttribute('data-tip-disable') ? target.getAttribute('data-tip-disable') === 'true' : self.props.disable || false,
currentTarget: target
}, () => {
if (scrollHide) self.addScrollListener(self.state.currentTarget)
self.updateTooltip(e)
if (getContent && Array.isArray(getContent)) {
self.intervalUpdateContent = setInterval(() => {
if (self.mount) {
const {getContent} = self.props
const placeholder = getTipContent(originTooltip, '', getContent[0](), isMultiline)
const isEmptyTip = self.isEmptyTip(placeholder)
self.setState({
isEmptyTip
})
self.updatePosition()
}
}, getContent[1])
}
})
}
// If there is no delay call immediately, don't allow events to get in first.
if (reshowDelay) {
this.delayReshow = setTimeout(updateState, reshowDelay)
} else {
updateState()
}
}
/**
* When mouse hover, update tool tip
*/
updateTooltip (e) {
const {delayShow, disable} = this.state
const {afterShow} = this.props
const placeholder = this.getTooltipContent()
const delayTime = parseInt(delayShow, 10)
const eventTarget = e.currentTarget || e.target
// Check if the mouse is actually over the tooltip, if so don't hide the tooltip
if (this.mouseOnToolTip()) {
return
}
if (this.isEmptyTip(placeholder) || disable) return // if the tooltip is empty, disable the tooltip
const updateState = () => {
if (Array.isArray(placeholder) && placeholder.length > 0 || placeholder) {
const isInvisible = !this.state.show
this.setState({
currentEvent: e,
currentTarget: eventTarget,
show: true
}, () => {
this.updatePosition()
if (isInvisible && afterShow) afterShow(e)
})
}
}
clearTimeout(this.delayShowLoop)
if (delayShow) {
this.delayShowLoop = setTimeout(updateState, delayTime)
} else {
updateState()
}
}
/*
* If we're mousing over the tooltip remove it when we leave.
*/
listenForTooltipExit () {
const {show} = this.state
if (show && this.tooltipRef) {
this.tooltipRef.addEventListener('mouseleave', this.hideTooltip)
}
}
removeListenerForTooltipExit () {
const {show} = this.state
if (show && this.tooltipRef) {
this.tooltipRef.removeEventListener('mouseleave', this.hideTooltip)
}
}
/**
* When mouse leave, hide tooltip
*/
hideTooltip (e, hasTarget, options = { isScroll: false }) {
const {disable} = this.state
const {isScroll} = options
const delayHide = isScroll ? 0 : this.state.delayHide
const {afterHide} = this.props
const placeholder = this.getTooltipContent()
if (!this.mount) return
if (this.isEmptyTip(placeholder) || disable) return // if the tooltip is empty, disable the tooltip
if (hasTarget) {
// Don't trigger other elements belongs to other ReactTooltip
const targetArray = this.getTargetArray(this.props.id)
const isMyElement = targetArray.some(ele => ele === e.currentTarget)
if (!isMyElement || !this.state.show) return
}
const resetState = () => {
const isVisible = this.state.show
// Check if the mouse is actually over the tooltip, if so don't hide the tooltip
if (this.mouseOnToolTip()) {
this.listenForTooltipExit()
return
}
this.removeListenerForTooltipExit()
this.setState({
show: false
}, () => {
this.removeScrollListener()
if (isVisible && afterHide) afterHide(e)
})
}
this.clearTimer()
if (delayHide) {
this.delayHideLoop = setTimeout(resetState, parseInt(delayHide, 10))
} else {
resetState()
}
}
/**
* When scroll, hide tooltip
*/
hideTooltipOnScroll (event, hasTarget) {
this.hideTooltip(event, hasTarget, { isScroll: true })
}
/**
* Add scroll event listener when tooltip show
* automatically hide the tooltip when scrolling
*/
addScrollListener (currentTarget) {
const isCaptureMode = this.isCapture(currentTarget)
window.addEventListener('scroll', this.hideTooltipOnScroll, isCaptureMode)
}
removeScrollListener () {
window.removeEventListener('scroll', this.hideTooltipOnScroll)
}
// Calculation the position
updatePosition () {
const {currentEvent, currentTarget, place, desiredPlace, effect, offset} = this.state
const node = this.tooltipRef
let result = getPosition(currentEvent, currentTarget, node, place, desiredPlace, effect, offset)
if (result.position && this.props.overridePosition) {
result.position = this.props.overridePosition(result.position, currentEvent, currentTarget, node, place, desiredPlace, effect, offset)
}
if (result.isNewState) {
// Switch to reverse placement
return this.setState(result.newState, () => {
this.updatePosition()
})
}
// Set tooltip position
node.style.left = result.position.left + 'px'
node.style.top = result.position.top + 'px'
}
/**
* Set style tag in header
* in this way we can insert default css
*/
setStyleHeader () {
const head = document.getElementsByTagName('head')[0]
if (!head.querySelector('style[id="react-tooltip"]')) {
let tag = document.createElement('style')
tag.id = 'react-tooltip'
tag.innerHTML = cssStyle
/* eslint-disable */
if (typeof __webpack_nonce__ !== 'undefined' && __webpack_nonce__) {
tag.setAttribute('nonce', __webpack_nonce__)
}
/* eslint-enable */
head.insertBefore(tag, head.firstChild)
}
}
/**
* CLear all kinds of timeout of interval
*/
clearTimer () {
clearTimeout(this.delayShowLoop)
clearTimeout(this.delayHideLoop)
clearTimeout(this.delayReshow)
clearInterval(this.intervalUpdateContent)
}
render () {
const {extraClass, html, ariaProps, disable} = this.state
const placeholder = this.getTooltipContent()
const isEmptyTip = this.isEmptyTip(placeholder)
let tooltipClass = classname(
'__react_component_tooltip',
{'show': this.state.show && !disable && !isEmptyTip},
{'border': this.state.border},
{'place-top': this.state.place === 'top'},
{'place-bottom': this.state.place === 'bottom'},
{'place-left': this.state.place === 'left'},
{'place-right': this.state.place === 'right'},
{'type-dark': this.state.type === 'dark'},
{'type-success': this.state.type === 'success'},
{'type-warning': this.state.type === 'warning'},
{'type-error': this.state.type === 'error'},
{'type-info': this.state.type === 'info'},
{'type-light': this.state.type === 'light'},
{'allow_hover': this.props.delayUpdate},
{'allow_click': this.props.clickable}
)
let Wrapper = this.props.wrapper
if (ReactTooltip.supportedWrappers.indexOf(Wrapper) < 0) {
Wrapper = ReactTooltip.defaultProps.wrapper
}
if (html) {
return (
<Wrapper className={`${tooltipClass} ${extraClass}`}
id={this.props.id}
ref={ref => this.tooltipRef = ref}
{...ariaProps}
data-id='tooltip'
dangerouslySetInnerHTML={{__html: placeholder}}/>
)
} else {
return (
<Wrapper className={`${tooltipClass} ${extraClass}`}
id={this.props.id}
{...ariaProps}
ref={ref => this.tooltipRef = ref}
data-id='tooltip'>{placeholder}</Wrapper>
)
}
}
}
/* export default not fit for standalone, it will exports {default:...} */
module.exports = ReactTooltip