fix(floatingPanel): lag caused by scrollbar and panel movement #12146 (#12161)

* fix(floatingPanel): Lag caused by scrollbar and panel movement

* fix(floatingPanel): simplify scroll position determination
This commit is contained in:
dh 2023-08-13 08:24:50 +08:00 committed by GitHub
parent e2f041fe0a
commit 392da16c30
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -89,13 +89,15 @@ export default defineComponent({
return moveY;
};
let startY: number;
let startY: number,
maxScroll: number = -1;
const touch = useTouch();
const onTouchstart = (e: TouchEvent) => {
touch.start(e);
dragging.value = true;
startY = -height.value;
maxScroll = -1;
};
const onTouchmove = (e: TouchEvent) => {
@ -103,14 +105,18 @@ export default defineComponent({
const target = e.target as Element;
if (contentRef.value === target || contentRef.value?.contains(target)) {
const { scrollTop } = contentRef.value;
// If maxScroll value more than zero, indicates that panel movement is not triggered from the top
maxScroll = Math.max(maxScroll, scrollTop);
if (!props.contentDraggable) return;
if (-startY < boundary.value.max) {
if (e.cancelable) e.preventDefault();
e.stopPropagation();
} else if (
!(contentRef.value.scrollTop <= 0 && touch.deltaY.value > 0)
) {
} else if (!(scrollTop <= 0 && touch.deltaY.value > 0)) {
return;
} else if (maxScroll > 0) {
return;
}
}
@ -120,6 +126,7 @@ export default defineComponent({
};
const onTouchend = () => {
maxScroll = -1;
dragging.value = false;
height.value = closest(anchors.value, height.value);