Skip to content
Snippets Groups Projects
Commit 25b2286d authored by Dennis Collaris's avatar Dennis Collaris
Browse files

perf: instead of transforming a virtual element, override bounding client rect instead

parent 379e68fd
No related branches found
No related tags found
1 merge request!163feat: redesign tooltips for schema and nodelink
Pipeline #137438 passed
......@@ -133,7 +133,7 @@ export const TooltipTrigger = React.forwardRef<HTMLElement, React.HTMLProps<HTML
const context = useTooltipContext();
const childrenRef = React.useMemo(() => {
if (children == null) {
return React.createElement('div').ref;
return null;
} else {
return (children as any).ref;
}
......@@ -142,11 +142,22 @@ export const TooltipTrigger = React.forwardRef<HTMLElement, React.HTMLProps<HTML
const ref = useMergeRefs([context.data.refs.setReference, propRef, childrenRef]);
React.useEffect(() => {
if (x == null) return;
if (x && y && context.data.refs.reference.current != null) {
const element = context.data.refs.reference.current as HTMLElement;
element.style.position = 'absolute';
element.style.transform = `translate(${x}px, ${y}px)`;
const {x: offsetX, y: offsetY} = element.getBoundingClientRect();
element.getBoundingClientRect = () => {
return {
width: 0,
height: 0,
x: offsetX,
y: offsetY,
top: y + offsetY,
left: x + offsetX,
right: x + offsetX,
bottom: y + offsetY,
} as DOMRect
}
context.data.update();
}
}, [x, y]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment