Merge issues and PR tabs

Merge the issues and PRs tabs of the repositories in a single one

24.05.2023 itibariyledir. En son verisyonu görün.

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey 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 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          Merge issues and PR tabs
// @description   Merge the issues and PRs tabs of the repositories in a single one
// @author        Deuchnord
// @version       1.0.3
// @namespace     https://deuchnord.fr/userscipts#github.com/merge-prs-issues-tabs
// @match         https://github.com/*/*
// @icon          https://github.githubassets.com/favicons/favicon.svg
// @license       AGPL-3.0
// @grant         none
// ==/UserScript==

(function () {

  function parseMultiplier(nAsStr) {
    switch (true) {
      case nAsStr.endsWith("k"):
        return Number(nAsStr.slice(0, -1)) * 1000;

      case nAsStr.endsWith("M"):
        return Number(nAsStr.slice(0, -1)) * 1000000;

      case nAsStr.endsWith("G"):
        return Number(nAsStr.slice(0, -1)) * 1000000000;
    }

    return Number(nAsStr);
  }

  let sumIssPrs = null;

  setInterval(function () {

    let issuesTab = document.getElementById("issues-tab");
    let prsTab = document.getElementById("pull-requests-tab");

    let nIssues = parseMultiplier(issuesTab.children[2].innerText);
    let nPrs = parseMultiplier(prsTab.children[2].innerText);

    if (sumIssPrs == nIssues) {
      return;
    }

    sumIssPrs = nIssues + nPrs;
    let multiplier = 1;

    let displayedNum = sumIssPrs;

    while (displayedNum >= 1000) {
      displayedNum /= 1000;
      multiplier *= 1000;
    }

    switch (multiplier) {
      case 1:
        multiplier = "";
        break;
      case 1000:
        multiplier = "k";
        break;
      case 1000000:
        multiplier = "M";
        break;
      case 1000000000:
        multiplier = "G";
        break;
    }

    let href = new URL(issuesTab.href);

    issuesTab.href = `${href.pathname}?q=is:open`;
    issuesTab.children[1].innerText = "Issues & pull requests";
    issuesTab.children[2].innerText = `${displayedNum}${multiplier}`;
    issuesTab.children[2].removeAttribute("hidden");

    prsTab.style.display = "none";

  }, 250);

})();