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

refactor: memoize children ref to prevent recreating virtual elements every update

parent 9c40e341
No related branches found
No related tags found
1 merge request!163feat: redesign tooltips for schema and nodelink
This commit is part of merge request !158. Comments created here will be created in the context of that merge request.
......@@ -106,14 +106,13 @@ export const TooltipTrigger = React.forwardRef<HTMLElement, React.HTMLProps<HTML
propRef,
) {
const context = useTooltipContext();
let childrenRef;
if (children == null) {
const element = React.createElement('div');
childrenRef = element.ref;
} else {
childrenRef = (children as React.ReactElement).ref;
}
const childrenRef = React.useMemo(() => {
if (children == null) {
return React.createElement('div').ref;
} else {
return (children as React.ReactElement).ref;
}
}, [children]);
const ref = useMergeRefs([context.data.refs.setReference, propRef, childrenRef]);
......
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