-
-
Notifications
You must be signed in to change notification settings - Fork 532
/
Copy pathTooltipController.tsx
355 lines (324 loc) · 10.4 KB
/
TooltipController.tsx
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
import React, { useEffect, useRef, useState } from 'react'
import { Tooltip } from 'components/Tooltip'
import type {
EventsType,
PositionStrategy,
PlacesType,
VariantType,
WrapperType,
DataAttribute,
ITooltip,
ChildrenType,
} from 'components/Tooltip/TooltipTypes'
import { useTooltip } from 'components/TooltipProvider'
import { TooltipContent } from 'components/TooltipContent'
import type { ITooltipController } from './TooltipControllerTypes'
const TooltipController = ({
id,
anchorId,
anchorSelect,
content,
html,
render,
className,
classNameArrow,
variant = 'dark',
place = 'top',
offset = 10,
wrapper = 'div',
children = null,
events = ['hover'],
openOnClick = false,
positionStrategy = 'absolute',
middlewares,
delayShow = 0,
delayHide = 0,
float = false,
hidden = false,
noArrow = false,
clickable = false,
closeOnEsc = false,
closeOnScroll = false,
closeOnResize = false,
openEvents,
closeEvents,
globalCloseEvents,
style,
position,
isOpen,
disableStyleInjection = false,
border,
opacity,
arrowColor,
setIsOpen,
afterShow,
afterHide,
}: ITooltipController) => {
const [tooltipContent, setTooltipContent] = useState(content)
const [tooltipHtml, setTooltipHtml] = useState(html)
const [tooltipPlace, setTooltipPlace] = useState(place)
const [tooltipVariant, setTooltipVariant] = useState(variant)
const [tooltipOffset, setTooltipOffset] = useState(offset)
const [tooltipDelayShow, setTooltipDelayShow] = useState(delayShow)
const [tooltipDelayHide, setTooltipDelayHide] = useState(delayHide)
const [tooltipFloat, setTooltipFloat] = useState(float)
const [tooltipHidden, setTooltipHidden] = useState(hidden)
const [tooltipWrapper, setTooltipWrapper] = useState<WrapperType>(wrapper)
const [tooltipEvents, setTooltipEvents] = useState(events)
const [tooltipPositionStrategy, setTooltipPositionStrategy] = useState(positionStrategy)
const [activeAnchor, setActiveAnchor] = useState<HTMLElement | null>(null)
const styleInjectionRef = useRef(disableStyleInjection)
/**
* @todo Remove this in a future version (provider/wrapper method is deprecated)
*/
const { anchorRefs, activeAnchor: providerActiveAnchor } = useTooltip(id)
const getDataAttributesFromAnchorElement = (elementReference: HTMLElement) => {
const dataAttributes = elementReference?.getAttributeNames().reduce((acc, name) => {
if (name.startsWith('data-tooltip-')) {
const parsedAttribute = name.replace(/^data-tooltip-/, '') as DataAttribute
acc[parsedAttribute] = elementReference?.getAttribute(name) ?? null
}
return acc
}, {} as Record<DataAttribute, string | null>)
return dataAttributes
}
const applyAllDataAttributesFromAnchorElement = (
dataAttributes: Record<string, string | null>,
) => {
const handleDataAttributes: Record<DataAttribute, (value: string | null) => void> = {
place: (value) => {
setTooltipPlace((value as PlacesType) ?? place)
},
content: (value) => {
setTooltipContent(value ?? content)
},
html: (value) => {
setTooltipHtml(value ?? html)
},
variant: (value) => {
setTooltipVariant((value as VariantType) ?? variant)
},
offset: (value) => {
setTooltipOffset(value === null ? offset : Number(value))
},
wrapper: (value) => {
setTooltipWrapper((value as WrapperType) ?? wrapper)
},
events: (value) => {
const parsed = value?.split(' ') as EventsType[]
setTooltipEvents(parsed ?? events)
},
'position-strategy': (value) => {
setTooltipPositionStrategy((value as PositionStrategy) ?? positionStrategy)
},
'delay-show': (value) => {
setTooltipDelayShow(value === null ? delayShow : Number(value))
},
'delay-hide': (value) => {
setTooltipDelayHide(value === null ? delayHide : Number(value))
},
float: (value) => {
setTooltipFloat(value === null ? float : value === 'true')
},
hidden: (value) => {
setTooltipHidden(value === null ? hidden : value === 'true')
},
}
// reset unset data attributes to default values
// without this, data attributes from the last active anchor will still be used
Object.values(handleDataAttributes).forEach((handler) => handler(null))
Object.entries(dataAttributes).forEach(([key, value]) => {
handleDataAttributes[key as DataAttribute]?.(value)
})
}
useEffect(() => {
setTooltipContent(content)
}, [content])
useEffect(() => {
setTooltipHtml(html)
}, [html])
useEffect(() => {
setTooltipPlace(place)
}, [place])
useEffect(() => {
setTooltipVariant(variant)
}, [variant])
useEffect(() => {
setTooltipOffset(offset)
}, [offset])
useEffect(() => {
setTooltipDelayShow(delayShow)
}, [delayShow])
useEffect(() => {
setTooltipDelayHide(delayHide)
}, [delayHide])
useEffect(() => {
setTooltipFloat(float)
}, [float])
useEffect(() => {
setTooltipHidden(hidden)
}, [hidden])
useEffect(() => {
setTooltipPositionStrategy(positionStrategy)
}, [positionStrategy])
useEffect(() => {
if (styleInjectionRef.current === disableStyleInjection) {
return
}
if (process.env.NODE_ENV !== 'production') {
// eslint-disable-next-line no-console
console.warn('[react-tooltip] Do not change `disableStyleInjection` dynamically.')
}
}, [disableStyleInjection])
useEffect(() => {
if (typeof window !== 'undefined') {
window.dispatchEvent(
new CustomEvent('react-tooltip-inject-styles', {
detail: {
disableCore: disableStyleInjection === 'core',
disableBase: disableStyleInjection,
},
}),
)
}
}, [])
useEffect(() => {
const elementRefs = new Set(anchorRefs)
let selector = anchorSelect
if (!selector && id) {
selector = `[data-tooltip-id='${id}']`
}
if (selector) {
try {
const anchorsBySelect = document.querySelectorAll<HTMLElement>(selector)
anchorsBySelect.forEach((anchor) => {
elementRefs.add({ current: anchor })
})
} catch {
if (!process.env.NODE_ENV || process.env.NODE_ENV !== 'production') {
// eslint-disable-next-line no-console
console.warn(`[react-tooltip] "${selector}" is not a valid CSS selector`)
}
}
}
const anchorById = document.querySelector<HTMLElement>(`[id='${anchorId}']`)
if (anchorById) {
elementRefs.add({ current: anchorById })
}
if (!elementRefs.size) {
return () => null
}
const anchorElement = activeAnchor ?? anchorById ?? providerActiveAnchor.current
const observerCallback: MutationCallback = (mutationList) => {
mutationList.forEach((mutation) => {
if (
!anchorElement ||
mutation.type !== 'attributes' ||
!mutation.attributeName?.startsWith('data-tooltip-')
) {
return
}
// make sure to get all set attributes, since all unset attributes are reset
const dataAttributes = getDataAttributesFromAnchorElement(anchorElement)
applyAllDataAttributesFromAnchorElement(dataAttributes)
})
}
// Create an observer instance linked to the callback function
const observer = new MutationObserver(observerCallback)
// do not check for subtree and childrens, we only want to know attribute changes
// to stay watching `data-attributes-*` from anchor element
const observerConfig = { attributes: true, childList: false, subtree: false }
if (anchorElement) {
const dataAttributes = getDataAttributesFromAnchorElement(anchorElement)
applyAllDataAttributesFromAnchorElement(dataAttributes)
// Start observing the target node for configured mutations
observer.observe(anchorElement, observerConfig)
}
return () => {
// Remove the observer when the tooltip is destroyed
observer.disconnect()
}
}, [anchorRefs, providerActiveAnchor, activeAnchor, anchorId, anchorSelect])
useEffect(() => {
if (process.env.NODE_ENV === 'production') {
return
}
if (style?.border) {
// eslint-disable-next-line no-console
console.warn('[react-tooltip] Do not set `style.border`. Use `border` prop instead.')
}
if (border && !CSS.supports('border', `${border}`)) {
// eslint-disable-next-line no-console
console.warn(`[react-tooltip] "${border}" is not a valid \`border\`.`)
}
if (style?.opacity) {
// eslint-disable-next-line no-console
console.warn('[react-tooltip] Do not set `style.opacity`. Use `opacity` prop instead.')
}
if (opacity && !CSS.supports('opacity', `${opacity}`)) {
// eslint-disable-next-line no-console
console.warn(`[react-tooltip] "${opacity}" is not a valid \`opacity\`.`)
}
}, [])
/**
* content priority: children < render or content < html
* children should be lower priority so that it can be used as the "default" content
*/
let renderedContent: ChildrenType = children
const contentWrapperRef = useRef<HTMLDivElement>(null)
if (render) {
const rendered = render({ content: tooltipContent ?? null, activeAnchor }) as React.ReactNode
renderedContent = rendered ? (
<div ref={contentWrapperRef} className="react-tooltip-content-wrapper">
{rendered}
</div>
) : null
} else if (tooltipContent) {
renderedContent = tooltipContent
}
if (tooltipHtml) {
renderedContent = <TooltipContent content={tooltipHtml} />
}
const props: ITooltip = {
id,
anchorId,
anchorSelect,
className,
classNameArrow,
content: renderedContent,
contentWrapperRef,
place: tooltipPlace,
variant: tooltipVariant,
offset: tooltipOffset,
wrapper: tooltipWrapper,
events: tooltipEvents,
openOnClick,
positionStrategy: tooltipPositionStrategy,
middlewares,
delayShow: tooltipDelayShow,
delayHide: tooltipDelayHide,
float: tooltipFloat,
hidden: tooltipHidden,
noArrow,
clickable,
closeOnEsc,
closeOnScroll,
closeOnResize,
openEvents,
closeEvents,
globalCloseEvents,
style,
position,
isOpen,
border,
opacity,
arrowColor,
setIsOpen,
afterShow,
afterHide,
activeAnchor,
setActiveAnchor: (anchor: HTMLElement | null) => setActiveAnchor(anchor),
}
return <Tooltip {...props} />
}
export default TooltipController