Lessons touchpad swipe navigation

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

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

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

(I already have a user script manager, let me install it!)

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.

(I already have a user style manager, let me install it!)

// ==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});
});