mirror of
https://github.com/outline/outline.git
synced 2026-06-13 03:14:59 +03:00
0139b91b5d
* chore: Replace lodash with es-toolkit Migrate all direct lodash imports to es-toolkit/compat for a smaller, faster, lodash-compatible utility library. Transitive lodash usage from other packages remains unchanged. * fix: Restore isPlainObject semantics in CanCan policy The lodash migration aliased `isObject` to `lodash/isPlainObject` and the codemod incorrectly mapped the local name to es-toolkit's `isObject`, which also returns true for arrays and functions. This caused condition objects in policy definitions to be skipped, breaking authorization checks across the codebase. * fix: Restore unicode-aware length counting in validators es-toolkit/compat's size() returns string.length, while lodash's _.size() counts unicode code points. Switch to [...value].length to preserve the previous behavior so multi-byte characters like emoji count as one.
86 lines
2.2 KiB
TypeScript
86 lines
2.2 KiB
TypeScript
import { isNumber } from "es-toolkit/compat";
|
|
import { useRef } from "react";
|
|
|
|
type Props = {
|
|
onSwipeRight: () => void;
|
|
onSwipeLeft: () => void;
|
|
onSwipeUp: () => void;
|
|
onSwipeDown: () => void;
|
|
};
|
|
|
|
export default function useSwipe({
|
|
onSwipeRight,
|
|
onSwipeLeft,
|
|
onSwipeUp,
|
|
onSwipeDown,
|
|
}: Props) {
|
|
const touchXStart = useRef<number>();
|
|
const touchXEnd = useRef<number>();
|
|
const touchYStart = useRef<number>();
|
|
const touchYEnd = useRef<number>();
|
|
|
|
const resetTouchPoints = () => {
|
|
touchXStart.current = undefined;
|
|
touchXEnd.current = undefined;
|
|
touchYStart.current = undefined;
|
|
touchYEnd.current = undefined;
|
|
};
|
|
|
|
const onTouchStartCapture = (e: React.TouchEvent<HTMLImageElement>) => {
|
|
if (e.touches.length === 1) {
|
|
// Stop propagation only for single touch gestures, otherwise it prevents
|
|
// multi-touch gestures like pinch to zoom to take effect
|
|
e.stopPropagation();
|
|
touchXStart.current = e.changedTouches[0].screenX;
|
|
touchYStart.current = e.changedTouches[0].screenY;
|
|
}
|
|
};
|
|
|
|
const onTouchMoveCapture = (e: React.TouchEvent<HTMLImageElement>) => {
|
|
if (
|
|
isNumber(touchXStart.current) &&
|
|
isNumber(touchYStart.current) &&
|
|
e.touches.length === 1
|
|
) {
|
|
touchXEnd.current = e.changedTouches[0].screenX;
|
|
touchYEnd.current = e.changedTouches[0].screenY;
|
|
const dx = touchXEnd.current - touchXStart.current;
|
|
const dy = touchYEnd.current - touchYStart.current;
|
|
|
|
const swipeRight = dx > 0 && Math.abs(dy) < Math.abs(dx);
|
|
if (swipeRight) {
|
|
resetTouchPoints();
|
|
return onSwipeRight();
|
|
}
|
|
|
|
const swipeLeft = dx < 0 && Math.abs(dy) < Math.abs(dx);
|
|
if (swipeLeft) {
|
|
resetTouchPoints();
|
|
return onSwipeLeft();
|
|
}
|
|
|
|
const swipeDown = dy > 0 && Math.abs(dy) > Math.abs(dx);
|
|
if (swipeDown) {
|
|
resetTouchPoints();
|
|
return onSwipeDown();
|
|
}
|
|
|
|
const swipeUp = dy < 0 && Math.abs(dy) > Math.abs(dx);
|
|
if (swipeUp) {
|
|
resetTouchPoints();
|
|
return onSwipeUp();
|
|
}
|
|
}
|
|
};
|
|
|
|
const onTouchCancelCapture = () => {
|
|
resetTouchPoints();
|
|
};
|
|
|
|
return {
|
|
onTouchStartCapture,
|
|
onTouchMoveCapture,
|
|
onTouchCancelCapture,
|
|
};
|
|
}
|