remove old scroll engine for notifs

This commit is contained in:
ThatOneCalculator 2022-08-22 23:51:15 -07:00
parent 9adce79471
commit 533c5066c1
1 changed files with 0 additions and 52 deletions

View File

@ -103,56 +103,4 @@ definePageMetadata(computed(() => ({
title: i18n.ts.notifications,
icon: 'fas fa-bell',
})));
if (isMobile.value) {
document.addEventListener('touchstart', handleTouchStart, false);
document.addEventListener('touchmove', handleTouchMove, false);
let xDown = null;
let yDown = null;
function getTouches(evt) {
return (
evt.touches || evt.originalEvent.touches
);
}
function handleTouchStart(evt) {
const firstTouch = getTouches(evt)[0];
xDown = firstTouch.clientX;
yDown = firstTouch.clientY;
}
function handleTouchMove(evt) {
if (!xDown || !yDown) {
return;
}
let xUp = evt.touches[0].clientX;
let yUp = evt.touches[0].clientY;
let xDiff = xDown - xUp;
let yDiff = yDown - yUp;
let next = 'home';
let tabs = ['all', 'unread', 'mentions', 'directNotes'];
if (Math.abs(xDiff) > Math.abs(yDiff)) {
if (xDiff < 0) {
if (tab === 'all') {
next = 'directNotes';
}
else {
next = tabs[(tabs.indexOf(tab) - 1) % tabs.length];
}
} else {
next = tabs[(tabs.indexOf(tab) + 1) % tabs.length];
}
tab = next;
}
xDown = null;
yDown = null;
return;
}
}
</script>