forked from ReactTooltip/react-tooltip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
319 lines (276 loc) · 9.47 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
'use strict'
import React, { Component, PropTypes } from 'react'
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'
/* Utils */
import getPosition from './utils/getPosition'
import getTipContent from './utils/getTipContent'
/* CSS */
import cssStyle from './style'
@staticMethods @windowListener @customEvent @isCapture
class ReactTooltip extends Component {
static propTypes = {
children: PropTypes.any,
place: PropTypes.string,
type: PropTypes.string,
effect: PropTypes.string,
offset: PropTypes.object,
multiline: PropTypes.bool,
border: PropTypes.bool,
class: 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.func
}
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,
placeholder: '',
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
}
this.mount = true
this.delayShowLoop = null
this.delayHideLoop = null
}
componentDidMount () {
this.setStyleHeader() // Set the style to the <link>
this.bindListener() // Bind listener for tooltip
this.bindWindowEvents() // Bind global event for static method
}
componentWillUnmount () {
this.mount = false
clearTimeout(this.delayShowLoop)
clearTimeout(this.delayHideLoop)
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 {
targetArray = document.querySelectorAll(`[data-tip][data-for="${id}"]`)
}
// targetArray is a NodeList, convert it to a real array
// I hope I can use Object.values...
return Object.keys(targetArray).filter(key => key !== 'length').map(key => {
return targetArray[key]
})
}
/**
* 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)
if (target.getAttribute('currentItem') === null) {
target.setAttribute('currentItem', 'false')
}
if (this.isCustomEvent(target)) {
this.customBindListener(target)
return
}
target.removeEventListener('mouseenter', this.showTooltip)
target.addEventListener('mouseenter', ::this.showTooltip, isCaptureMode)
if (this.state.effect === 'float') {
target.removeEventListener('mousemove', this.updateTooltip)
target.addEventListener('mousemove', ::this.updateTooltip, isCaptureMode)
}
target.removeEventListener('mouseleave', this.hideTooltip)
target.addEventListener('mouseleave', ::this.hideTooltip, isCaptureMode)
})
// Global event to hide tooltip
if (globalEventOff) {
window.removeEventListener(globalEventOff, this.hideTooltip)
window.addEventListener(globalEventOff, ::this.hideTooltip, false)
}
}
/**
* Unbind listeners on target elements
*/
unbindListener () {
const {id, globalEventOff} = this.props
const targetArray = this.getTargetArray(id)
targetArray.forEach(target => {
if (this.isCustomEvent(target)) {
this.customUnbindListener(target)
return
}
target.removeEventListener('mouseenter', this.showTooltip)
target.removeEventListener('mousemove', this.updateTooltip)
target.removeEventListener('mouseleave', this.hideTooltip)
})
if (globalEventOff) window.removeEventListener(globalEventOff, this.hideTooltip)
}
/**
* When mouse enter, show the tooltip
*/
showTooltip (e) {
// Get the tooltip content
// calculate in this phrase so that tip width height can be detected
const {children, multiline, getContent} = this.props
const originTooltip = e.currentTarget.getAttribute('data-tip')
const isMultiline = e.currentTarget.getAttribute('data-multiline') || multiline || false
let content
if (children) {
content = children
} else if (getContent) {
content = getContent()
}
const placeholder = getTipContent(originTooltip, content, isMultiline)
this.setState({
placeholder,
place: e.currentTarget.getAttribute('data-place') || this.props.place || 'top',
type: e.currentTarget.getAttribute('data-type') || this.props.type || 'dark',
effect: e.currentTarget.getAttribute('data-effect') || this.props.effect || 'float',
offset: e.currentTarget.getAttribute('data-offset') || this.props.offset || {},
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') === 'true' || this.props.border || false,
extraClass: e.currentTarget.getAttribute('data-class') || this.props.class || ''
}, () => {
this.addScrollListener(e)
this.updateTooltip(e)
})
}
/**
* When mouse hover, updatetooltip
*/
updateTooltip (e) {
const {delayShow, show} = this.state
let {placeholder} = this.state
const delayTime = show ? 0 : parseInt(delayShow, 10)
const eventTarget = e.currentTarget
clearTimeout(this.delayShowLoop)
this.delayShowLoop = setTimeout(() => {
if (typeof placeholder === 'string') placeholder = placeholder.trim()
if (Array.isArray(placeholder) && placeholder.length > 0 || placeholder) {
this.setState({
currentEvent: e,
currentTarget: eventTarget,
show: true
}, () => {
this.updatePosition()
})
}
}, delayTime)
}
/**
* When mouse leave, hide tooltip
*/
hideTooltip () {
const {delayHide} = this.state
if (!this.mount) return
clearTimeout(this.delayShowLoop)
clearTimeout(this.delayHideLoop)
this.delayHideLoop = setTimeout(() => {
this.setState({
show: false
})
this.removeScrollListener()
}, parseInt(delayHide, 10))
}
/**
* Add scroll eventlistener when tooltip show
* automatically hide the tooltip when scrolling
*/
addScrollListener (e) {
const isCaptureMode = this.isCapture(e.currentTarget)
window.addEventListener('scroll', ::this.hideTooltip, isCaptureMode)
}
removeScrollListener () {
window.removeEventListener('scroll', this.hideTooltip)
}
// Calculation the position
updatePosition () {
const {currentEvent, currentTarget, place, effect, offset} = this.state
const node = ReactDOM.findDOMNode(this)
const result = getPosition(currentEvent, currentTarget, node, place, 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 () {
if (!document.getElementsByTagName('head')[0].querySelector('style[id="react-tooltip"]')) {
let tag = document.createElement('style')
tag.id = 'react-tooltip'
tag.innerHTML = cssStyle
document.getElementsByTagName('head')[0].appendChild(tag)
}
}
render () {
const {placeholder, extraClass, html} = this.state
let tooltipClass = classname(
'__react_component_tooltip',
{'show': this.state.show},
{'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'}
)
if (html) {
return (
<div className={`${tooltipClass} ${extraClass}`}
data-id='tooltip'
dangerouslySetInnerHTML={{__html: placeholder}}></div>
)
} else {
return (
<div className={`${tooltipClass} ${extraClass}`}
data-id='tooltip'>{placeholder}</div>
)
}
}
}
/* export default not fit for standalone, it will exports {default:...} */
module.exports = ReactTooltip