sortColumns

Show guessed words with the most hits

Stan na 07-06-2022. Zobacz najnowsza wersja.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         sortColumns
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Show guessed words with the most hits
// @author       gauss256
// @match        https://www.redactle.com/
// @icon         https://www.google.com/s2/favicons?sz=64&domain=redactle.com
// @grant        none
// @license      MIT
// ==/UserScript==

/* jshint esversion:6 */

// The lovely code to do the sorting comes from:
// https://stackoverflow.com/a/50127768/80309

(function () {
    'use strict';

    function hash(node) {
        return parseInt(node.querySelector('td:nth-child(1)').innerHTML);
    }

    function guess(node) {
        return node.querySelector('td:nth-child(2)').innerHTML;
    }

    function hits(node) {
        return parseInt(node.querySelector('td:nth-child(3)').innerHTML);
    }

    function sortByHash() {
        const guessLogBody = document.getElementById('guessLogBody');
        [...guessLogBody.children]
            .sort((a, b) => hash(b) - hash(a))
            .forEach(node => guessLogBody.appendChild(node));
    }

    function sortByGuess() {
        const guessLogBody = document.getElementById('guessLogBody');
        [...guessLogBody.children]
            .sort((a, b) => guess(a) > guess(b))
            .forEach(node => guessLogBody.appendChild(node));
    }

    function sortByHits() {
        const guessLogBody = document.getElementById('guessLogBody');
        [...guessLogBody.children]
            .sort((a, b) => hits(b) - hits(a))
            .forEach(node => guessLogBody.appendChild(node));
    }

    // Set up click events on the column headers
    const columnHeads = document
        .getElementById('tableHolder')
        .querySelectorAll('th');
    let hashBtn;
    let guessBtn;
    let hitsBtn;
    for (let i = 0; i < columnHeads.length; i++) {
        let headElem = columnHeads[i];
        let headLabel = headElem.innerHTML;
        switch(headLabel) {
            case '#':
                hashBtn = headElem;
                break;
            case 'Guess':
                guessBtn = headElem;
                break;
            default:
                hitsBtn = headElem;
        }
    }
    hashBtn.style = 'cursor: pointer';
    guessBtn.style = 'cursor: pointer';
    hitsBtn.style = 'cursor: pointer';

    // Set up event handlers
    hashBtn.onclick = function () {
        sortByHash();
    };
    guessBtn.onclick = function () {
        sortByGuess();
    };
    hitsBtn.onclick = function () {
        sortByHits();
    };

})();