ant-design-vue/components/vc-virtual-list/hooks/useMobileTouchMove.ts

75 lines
1.7 KiB
TypeScript
Raw Normal View History

2020-10-01 09:20:10 +00:00
import { watch, Ref } from 'vue';
2020-09-28 11:14:00 +00:00
const SMOOTH_PTG = 14 / 15;
2020-10-01 09:20:10 +00:00
export default function useMobileTouchMove(
inVirtual: Ref<boolean>,
listRef: Ref<Element | undefined>,
callback: (offsetY: number, smoothOffset?: boolean) => boolean,
) {
2020-09-28 11:14:00 +00:00
let touched = false;
let touchY = 0;
2020-10-01 09:20:10 +00:00
let element: HTMLElement | null = null;
2020-09-28 11:14:00 +00:00
// Smooth scroll
2020-10-01 09:20:10 +00:00
let interval: any = null;
2020-09-28 11:14:00 +00:00
2020-10-01 09:20:10 +00:00
const cleanUpEvents = () => {
if (element) {
element.removeEventListener('touchmove', onTouchMove);
element.removeEventListener('touchend', onTouchEnd);
}
};
2020-09-28 11:14:00 +00:00
2020-10-01 09:20:10 +00:00
const onTouchMove = (e: TouchEvent) => {
2020-09-28 11:14:00 +00:00
if (touched) {
const currentY = Math.ceil(e.touches[0].pageY);
let offsetY = touchY - currentY;
touchY = currentY;
if (callback(offsetY)) {
e.preventDefault();
}
// Smooth interval
clearInterval(interval);
interval = setInterval(() => {
offsetY *= SMOOTH_PTG;
if (!callback(offsetY, true) || Math.abs(offsetY) <= 0.1) {
clearInterval(interval);
}
}, 16);
}
};
const onTouchEnd = () => {
touched = false;
cleanUpEvents();
};
2020-10-01 09:20:10 +00:00
const onTouchStart = (e: TouchEvent) => {
2020-09-28 11:14:00 +00:00
cleanUpEvents();
if (e.touches.length === 1 && !touched) {
touched = true;
touchY = Math.ceil(e.touches[0].pageY);
2020-10-01 09:20:10 +00:00
element = e.target as HTMLElement;
element!.addEventListener('touchmove', onTouchMove);
element!.addEventListener('touchend', onTouchEnd);
2020-09-28 11:14:00 +00:00
}
};
watch(inVirtual, val => {
2020-10-01 09:20:10 +00:00
listRef.value.removeEventListener('touchstart', onTouchStart);
2020-09-29 07:16:56 +00:00
cleanUpEvents();
clearInterval(interval);
2020-10-01 09:20:10 +00:00
if (val) {
listRef.value.addEventListener('touchstart', onTouchStart);
2020-09-28 11:14:00 +00:00
}
});
}