IRCSort

Sort IRCCloud channel lists

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        IRCSort
// @namespace   KWIERSO
// @description Sort IRCCloud channel lists
// @include     https://irccloud.mozilla.com/*
// @version     1
// @grant       GM_registerMenuCommand
// ==/UserScript==


var channelPriorities = {
  "#developers": 0,
  "#jetpack": 1,
  "#ateam": 2,
  "#releng": 3,
  "#buildduty": 4,
  "#taskcluster": 5,
  "#treeherder": 6,
  "#vcs": 7,
  "#b2g": 8,
  "#gaia": 9,
  "#devtools": 10,
  "#jsapi": 11,
  "#fx-team": 12,
  "#media": 13,
  "#mobile": 14,
  "#it": 15,
  "#moc": 16
};

var getChannelPriority = function(channelName) {
  var thispriority = channelPriorities[channelName];
  if(thispriority === undefined) {
    thispriority = 5555;
  }
  return thispriority;
};

var sortChannelFunction = function(a,b) {
  return a[1] - b[1];
};

var sortChannels = function() {
  var bufferList = document.querySelector("#bufferList").firstElementChild.querySelector(".buffers");
  var bufferListChildren = bufferList.querySelectorAll("li.buffer");
  var channelList = [];
  var newChannelList = [];

  for(var i=0; i < bufferListChildren.length; i++) {
    var thisEl = bufferList.firstElementChild;
    channelList.push([bufferList.removeChild(thisEl), getChannelPriority(thisEl.textContent.replace("☂",""))]);
  }


  channelList = channelList.sort(function(a,b) {
    return a[1] - b[1];
  });

  for(var j=0; j < channelList.length; j++) {
    bufferList.appendChild(channelList[j][0]);
  }
};



GM_registerMenuCommand("Sort channel list", sortChannels);