Goodreads - Sort lists by rating or votes

Sort lists

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name        Goodreads - Sort lists by rating or votes
// @namespace   goodreads
// @description Sort lists
// @include     https://www.goodreads.com/list/show/*
// @version     1.1
// @grant       none
// ==/UserScript==

function isNumeric(num){
    return !isNaN(num)
}

function parseNumber(str) {
    var out = "";
    for(var i = 0; i < str.length; ++i) {
        if(isNumeric(str[i])) {
            out += str[i];
        }
    }
    return parseInt(out);
}

var App = {
    order: "desc",
    loadPage: 2,
    sort: function(cmp) {
        var elems = jQuery(".tableList").find("tr").get();
        elems.sort(cmp);
        if(App.order === "asc") {
            App.order = "desc";
        }
        else {
            App.order = "asc";
            elems.reverse();
        }
        for(var i = 0; i < elems.length; ++i) {
            elems[i].parentNode.appendChild(elems[i]);
        }
    },
    init: function() {
        $sortByRating = jQuery("<a></a>").attr("id", "sortByRating")
                                         .attr("href", "#")
                                         .text("sort by rating")
                                         .addClass("tab");
        $sortByVotes = jQuery("<a></a>").attr("id", "sortByVotes")
                                        .attr("href", "#")
                                        .text("sort by votes")
                                        .addClass("tab");
                                        
        jQuery(".bigTabs > div:nth-child(1)", ".leftContainer").append($sortByRating)
                                                               .append($sortByVotes);
                                                          
        jQuery("#sortByRating").on("click", function(){
            App.sort(function(lhs, rhs){
                var lhsRating = jQuery(lhs).find(".minirating").text().match(/[0-9]{1}\.[0-9]{2}/)[0];
                var rhsRating = jQuery(rhs).find(".minirating").text().match(/[0-9]{1}\.[0-9]{2}/)[0];
                return parseFloat(lhsRating) - parseFloat(rhsRating); 
            });
        });
        
        jQuery("#sortByVotes").on("click", function(){
            App.sort(function(lhs, rhs){
                var lhsVotes = parseNumber(jQuery(lhs).find(".minirating").text().match(/\d{1,3}(?:[,]\d{3})* rating/)[0]);
                var rhsVotes = parseNumber(jQuery(rhs).find(".minirating").text().match(/\d{1,3}(?:[,]\d{3})* rating/)[0]);
                if(lhsVotes < rhsVotes) { return -1; }
                if(lhsVotes > rhsVotes) { return 1; }
                return 0; 
            });
        });
        
        var hasPages = jQuery("#all_votes > .pagination").length > 0;
        if(hasPages) {
            $pagination = jQuery("#all_votes > .pagination > a");
            var numPages = parseInt($pagination.get(-2).innerHTML);
            $loadPage = jQuery("<a></a>").attr("id", "loadNextPage")
                                       .attr("href", "#")
                                       .text("load page #2")
                                       .addClass("tab");
            jQuery(".bigTabs > div:nth-child(1)", ".leftContainer").append($loadPage);
            
            var nextPageUrl = "https://www.goodreads.com" + $pagination.last().attr("href");
            jQuery("#loadNextPage").on("click", function(){
                jQuery("#loadNextPage").text("loading page #" + App.loadPage);
                jQuery.get(nextPageUrl, function(data){
                    $html = jQuery(data);
                    $html.find(".tableList tr").appendTo(jQuery(".tableList tbody"));
                    nextPageUrl = "https://www.goodreads.com" + $html.find(".pagination a").last().attr("href");
                    App.loadPage++;
                    if(App.loadPage > numPages) {
                        // Remove load link if loaded last page
                        jQuery("#loadNextPage").remove();
                    }
                    else {                
                        jQuery("#loadNextPage").text("load page #" + App.loadPage);
                    }
                });            
            });
        }
    }    
};

jQuery(document).ready(App.init);