-
-
Notifications
You must be signed in to change notification settings - Fork 533
/
Copy pathindex.js
488 lines (434 loc) · 15 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
'use strict'
import React from 'react'
import PropTypes from 'prop-types'
import ReactDOM from 'react-dom'
import classname from 'classnames'
/* Decoraters */
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,
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,
disable: PropTypes.bool,
scrollHide: PropTypes.bool,
resizeHide: PropTypes.bool,
wrapper: PropTypes.string
};
static defaultProps = {
insecure: true,
resizeHide: true,
wrapper: 'div'
};
static supportedWrappers = ['div', 'span'];
static displayName = 'ReactTooltip';
constructor (props) {
super(props)
this.state = {
place: 'top', // Direction of tooltip
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',
'getTooltipContent',
'globalRebuild',
'globalShow',
'globalHide',
'onWindowResize'
])
this.mount = true
this.delayShowLoop = null
this.delayHideLoop = 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
}
componentWillReceiveProps (props) {
const { ariaProps } = this.state
const newAriaProps = parseAria(props)
const isChanged = Object.keys(newAriaProps).some(props => {
return newAriaProps[props] !== ariaProps[props]
})
if (isChanged) {
this.setState({ ariaProps: newAriaProps })
}
}
componentWillUnmount () {
this.mount = false
this.clearTimer()
this.unbindListener()
this.removeScrollListener()
this.unbindWindowEvents()
}
/**
* 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} = 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, false)
}
// 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 ummount the compont
* it is necessary to invloke 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
}
// To prevent previously created timers from triggering
this.clearTimer()
this.setState({
originTooltip: originTooltip,
isMultiline: isMultiline,
desiredPlace: e.currentTarget.getAttribute('data-place') || this.props.place || 'top',
place: e.currentTarget.getAttribute('data-place') || this.props.place || 'top',
type: e.currentTarget.getAttribute('data-type') || this.props.type || 'dark',
effect: switchToSolid && 'solid' || this.getEffect(e.currentTarget),
offset: e.currentTarget.getAttribute('data-offset') || this.props.offset || {},
html: e.currentTarget.getAttribute('data-html')
? e.currentTarget.getAttribute('data-html') === 'true'
: (this.props.html || false),
delayShow: e.currentTarget.getAttribute('data-delay-show') || this.props.delayShow || 0,
delayHide: e.currentTarget.getAttribute('data-delay-hide') || this.props.delayHide || 0,
border: e.currentTarget.getAttribute('data-border')
? e.currentTarget.getAttribute('data-border') === 'true'
: (this.props.border || false),
extraClass: e.currentTarget.getAttribute('data-class') || this.props.class || this.props.className || '',
disable: e.currentTarget.getAttribute('data-tip-disable')
? e.currentTarget.getAttribute('data-tip-disable') === 'true'
: (this.props.disable || false),
currentTarget: e.currentTarget
}, () => {
if (scrollHide) this.addScrollListener(this.state.currentTarget)
this.updateTooltip(e)
if (getContent && Array.isArray(getContent)) {
this.intervalUpdateContent = setInterval(() => {
if (this.mount) {
const {getContent} = this.props
const placeholder = getTipContent(originTooltip, '', getContent[0](), isMultiline)
const isEmptyTip = this.isEmptyTip(placeholder)
this.setState({
isEmptyTip
})
this.updatePosition()
}
}, getContent[1])
}
})
}
/**
* When mouse hover, updatetooltip
*/
updateTooltip (e) {
const {delayShow, show, disable} = this.state
const {afterShow} = this.props
const placeholder = this.getTooltipContent()
const delayTime = show ? 0 : parseInt(delayShow, 10)
const eventTarget = e.currentTarget || e.target
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()
})
}
}
clearTimeout(this.delayShowLoop)
if (delayShow) {
this.delayShowLoop = setTimeout(updateState, delayTime)
} else {
updateState()
}
}
/**
* When mouse leave, hide tooltip
*/
hideTooltip (e, hasTarget) {
const {delayHide, disable} = this.state
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
this.setState({
show: false
}, () => {
this.removeScrollListener()
if (isVisible && afterHide) afterHide()
})
}
this.clearTimer()
if (delayHide) {
this.delayHideLoop = setTimeout(resetState, parseInt(delayHide, 10))
} else {
resetState()
}
}
/**
* Add scroll eventlistener when tooltip show
* automatically hide the tooltip when scrolling
*/
addScrollListener (currentTarget) {
const isCaptureMode = this.isCapture(currentTarget)
window.addEventListener('scroll', this.hideTooltip, isCaptureMode)
}
removeScrollListener () {
window.removeEventListener('scroll', this.hideTooltip)
}
// Calculation the position
updatePosition () {
const {currentEvent, currentTarget, place, desiredPlace, effect, offset} = this.state
const node = ReactDOM.findDOMNode(this)
const result = getPosition(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
head.insertBefore(tag, head.firstChild)
}
}
/**
* CLear all kinds of timeout of interval
*/
clearTimer () {
clearTimeout(this.delayShowLoop)
clearTimeout(this.delayHideLoop)
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'}
)
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}
{...ariaProps}
data-id='tooltip'
dangerouslySetInnerHTML={{__html: placeholder}}/>
)
} else {
return (
<Wrapper className={`${tooltipClass} ${extraClass}`}
id={this.props.id}
{...ariaProps}
data-id='tooltip'>{placeholder}</Wrapper>
)
}
}
}
/* export default not fit for standalone, it will exports {default:...} */
module.exports = ReactTooltip