GitHub Branches Sorter

Allows sorting the branches list of a repository in ways additional to the default, modification time ordering

2024-03-09 या दिनांकाला. सर्वात नवीन आवृत्ती पाहा.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey, Greasemonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्क्रिप्ट व्यवस्थापक एक्स्टेंशन इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्क्रिप्ट व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्टाईल व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

// ==UserScript==
// @name        GitHub Branches Sorter
// @namespace   Violentmonkey Scripts
// @match       https://github.com/*/*
// @grant       none
// @version     1.0.1
// @license     ISC
// @author      OctoSpacc
// @description Allows sorting the branches list of a repository in ways additional to the default, modification time ordering
// ==/UserScript==

var lastpath = window.location.pathname;

function onBranchesPage(){
  var pathElems = window.location.pathname.split('/').slice(3);
  return (pathElems[0] === 'branches' && pathElems[1]);
}

function main(){
  lastpath = window.location.pathname;
  var tableQuery = 'table.Table__StyledTable-sc-jofqvq-0.gsRldM.Table';

  var orderButtonElem = document.createElement('button');
  orderButtonElem.innerHTML = 'Sort Branches';
  orderButtonElem.onclick = function(){
    var tableElems = document.querySelectorAll(`${tableQuery} > tbody`);
    tableElems[0].style.display = (tableElems[0].style.display ? '' : 'none');
    tableElems[1].style.display = (tableElems[1].style.display ? '' : 'none');
  };

  var tableAlphabElem = document.querySelector(`${tableQuery} > tbody`).cloneNode(false);
  tableAlphabElem.style.display = 'none';

  var alphabRowElems = {};
  for (var branchRowElem of document.querySelectorAll(tableQuery + '> tbody > tr')) {
    var branchName = branchRowElem.querySelector('td > div > a').textContent;
    var branchRowElemNew = branchRowElem.cloneNode(true);
    alphabRowElems[branchName] = branchRowElemNew;
  }

  alphabRowElems = Object.keys(alphabRowElems).sort().reduce(
    function(obj, key) {
      obj[key] = alphabRowElems[key];
      return obj;
    },
  {});

  for (var branchRowElem of Object.values(alphabRowElems)) {
    tableAlphabElem.appendChild(branchRowElem);
  }

  document.querySelector('.Box-sc-g0xbh4-0.lhFvfi').appendChild(orderButtonElem);
  document.querySelector(tableQuery).appendChild(tableAlphabElem);
}

setInterval(function(){
  if (window.location.pathname !== lastpath && onBranchesPage()) {
    window.location.reload();
  }
}, 1000);

if (onBranchesPage()) {
  main();
}