mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 02:01:06 +08:00
chore: changed the function name
This commit is contained in:
parent
b467894eea
commit
9ed547bc4f
@ -17,7 +17,7 @@ export const withMeasure = (StoryFn: StoryFunction<Renderer>, context: StoryCont
|
|||||||
const { measureEnabled } = context.globals;
|
const { measureEnabled } = context.globals;
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const onMouseMove = (event: MouseEvent) => {
|
const onPointerMove = (event: MouseEvent) => {
|
||||||
window.requestAnimationFrame(() => {
|
window.requestAnimationFrame(() => {
|
||||||
event.stopPropagation();
|
event.stopPropagation();
|
||||||
pointer.x = event.clientX;
|
pointer.x = event.clientX;
|
||||||
@ -25,15 +25,15 @@ export const withMeasure = (StoryFn: StoryFunction<Renderer>, context: StoryCont
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
document.addEventListener('pointermove', onMouseMove);
|
document.addEventListener('pointermove', onPointerMove);
|
||||||
|
|
||||||
return () => {
|
return () => {
|
||||||
document.removeEventListener('pointermove', onMouseMove);
|
document.removeEventListener('pointermove', onPointerMove);
|
||||||
};
|
};
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const onMouseOver = (event: MouseEvent) => {
|
const onPointerOver = (event: MouseEvent) => {
|
||||||
window.requestAnimationFrame(() => {
|
window.requestAnimationFrame(() => {
|
||||||
event.stopPropagation();
|
event.stopPropagation();
|
||||||
findAndDrawElement(event.clientX, event.clientY);
|
findAndDrawElement(event.clientX, event.clientY);
|
||||||
@ -47,7 +47,7 @@ export const withMeasure = (StoryFn: StoryFunction<Renderer>, context: StoryCont
|
|||||||
};
|
};
|
||||||
|
|
||||||
if (measureEnabled) {
|
if (measureEnabled) {
|
||||||
document.addEventListener('pointerover', onMouseOver);
|
document.addEventListener('pointerover', onPointerOver);
|
||||||
init();
|
init();
|
||||||
window.addEventListener('resize', onResize);
|
window.addEventListener('resize', onResize);
|
||||||
// Draw the element below the pointer when first enabled
|
// Draw the element below the pointer when first enabled
|
||||||
|
Loading…
x
Reference in New Issue
Block a user