Lessons touchpad swipe navigation

Navigate your lessons with swipe gesture ("wheel" event)

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name         Lessons touchpad swipe navigation
// @namespace    wanikani
// @version      0.1
// @description  Navigate your lessons with swipe gesture ("wheel" event)
// @author       mrowqa
// @match        https://www.wanikani.com/lesson/session
// @grant        none
// ==/UserScript==

$(document).ready(function() {
    'use strict';

    function touchpadScrollHandler(event) {
        //console.log("X: " + event.deltaX + ", " + event.deltaY + ", " + event.deltaZ);
        if (touchpadScrollHandler.locked === true) {
            return;
        }
        //console.log("next");

        var threshold = 3;  // for mouse event deltaX value, 10-20 slow swipe, >100 fast swipes
        var cooldown = 2000; // in miliseconds
        var leftKeyCode = 37;
        var rightKeyCode = 39;

        var scroll = function (keyCode) {
            $("body").trigger(
                $.Event("keyup", {keyCode: keyCode, which: keyCode})
            );
            touchpadScrollHandler.locked = true;
            setTimeout(function() {
                touchpadScrollHandler.locked = false;
            }, cooldown);
        };

        if (event.deltaX < -threshold) {
            scroll(leftKeyCode);
        }
        if (event.deltaX > threshold) {
            scroll(rightKeyCode);
        }
    }

    touchpadScrollHandler.locked = false;
    document.addEventListener("wheel", touchpadScrollHandler, {passive: true});
});