mirror of
https://codeberg.org/emersion/gamja.git
synced 2024-11-14 10:55:06 -05:00
change sorting of channels in the sidebar
This commit is contained in:
parent
b67cd10c64
commit
3ba0bfe3e6
1 changed files with 26 additions and 3 deletions
29
state.js
29
state.js
|
@ -139,6 +139,20 @@ function isServerBuffer(buf) {
|
|||
return buf.type === BufferType.SERVER;
|
||||
}
|
||||
|
||||
function isChannelBuffer(buf) {
|
||||
return buf.type === BufferType.CHANNEL;
|
||||
}
|
||||
|
||||
function trimStartCharacter(s, c) {
|
||||
let i = 0;
|
||||
for (; i < s.length; ++i) {
|
||||
if (s[i] !== c) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
return s.substring(i);
|
||||
}
|
||||
|
||||
/* Returns 1 if a should appear after b, -1 if a should appear before b, or
|
||||
* 0 otherwise. */
|
||||
function compareBuffers(a, b) {
|
||||
|
@ -148,10 +162,19 @@ function compareBuffers(a, b) {
|
|||
if (isServerBuffer(a) !== isServerBuffer(b)) {
|
||||
return isServerBuffer(b) ? 1 : -1;
|
||||
}
|
||||
if (a.name !== b.name) {
|
||||
return a.name.localeCompare(b.name);
|
||||
|
||||
if (isChannelBuffer(a) && isChannelBuffer(b)) {
|
||||
const strippedA = trimStartCharacter(a.name, a.name[0]);
|
||||
const strippedB = trimStartCharacter(b.name, b.name[0]);
|
||||
const cmp = strippedA.localeCompare(strippedB);
|
||||
|
||||
if (cmp !== 0) {
|
||||
return cmp;
|
||||
}
|
||||
return 0;
|
||||
// if they are the same when stripped, fallthough to default logic
|
||||
}
|
||||
|
||||
return a.name.localeCompare(b.name);
|
||||
}
|
||||
|
||||
function updateMembership(membership, letter, add, client) {
|
||||
|
|
Loading…
Reference in a new issue