PSO2SA shortcut

wikiwiki シンボルアートの展覧室と保管庫をショートカットで移動できるようにする

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το 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         PSO2SA shortcut
// @namespace    http://tampermonkey.net/
// @version      1.1
// @match        https://wikiwiki.jp/pso2sa/*
// @grant        none
// @description wikiwiki シンボルアートの展覧室と保管庫をショートカットで移動できるようにする
// ==/UserScript==

(function() {
    const MAX_TN = 999;
    const MIN_TN = 1;
    const MAX_SA = 999;
    const MIN_SA = 1;

    const path = location.pathname;
    const tnMatch = path.match(/tn(\d+)/i);
    const saMatch = path.match(/sa(\d+)/i);

    let mode = null;
    let cur = null;
    let max = null;
    let min = null;

    if (tnMatch) {
        mode = "tn";
        cur = parseInt(tnMatch[1], 10);
        max = MAX_TN;
        min = MIN_TN;
    } else if (saMatch) {
        mode = "sa";
        cur = parseInt(saMatch[1], 10);
        max = MAX_SA;
        min = MIN_SA;
    } else {
        return;
    }

    window.addEventListener("keydown", (e) => {
        if (["INPUT", "TEXTAREA"].includes(document.activeElement.tagName)) return;

        if (e.key === "ArrowLeft" && cur > min) {
            const to = cur - 1;
            location.href = path.replace(new RegExp(mode + "\\d+", "i"), mode + to);
        }

        if (e.key === "ArrowRight" && cur < max) {
            const to = cur + 1;
            location.href = path.replace(new RegExp(mode + "\\d+", "i"), mode + to);
        }
    });
})();