telegram-tt/src/hooks/useHorizontalScroll.ts

23 lines
597 B
TypeScript
Raw Normal View History

2021-04-09 12:29:59 +02:00
import { useEffect } from '../lib/teact/teact';
export default (container: HTMLElement | null, isDisabled?: boolean) => {
2021-04-09 12:29:59 +02:00
useEffect(() => {
if (!container) {
return undefined;
}
function handleScroll(e: WheelEvent) {
// Ignore horizontal scroll and let it work natively (e.g. on touchpad)
if (!e.deltaX) {
container!.scrollLeft += e.deltaY / 4;
}
}
container.addEventListener('wheel', handleScroll, { passive: true });
return () => {
container.removeEventListener('wheel', handleScroll);
};
}, [container, isDisabled]);
2021-04-09 12:29:59 +02:00
};