sortColumns

Sort Redactle guessed-words table by a column

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @name         sortColumns
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Sort Redactle guessed-words table by a column
// @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();
    };

})();