thelounge/client/js/condensed.js

74 lines
2 KiB
JavaScript
Raw Normal View History

2017-06-22 22:08:36 +02:00
"use strict";
const _ = require("lodash");
2017-06-22 22:08:36 +02:00
const constants = require("./constants");
const templates = require("../views");
2017-06-22 22:08:36 +02:00
module.exports = {
updateText,
getStoredTypes,
2017-06-22 22:08:36 +02:00
};
function getStoredTypes(condensed) {
const obj = {};
2017-06-22 22:08:36 +02:00
constants.condensedTypes.forEach((type) => {
obj[type] = condensed.data(type) || 0;
});
2017-06-22 22:08:36 +02:00
return obj;
}
function updateText(condensed, addedTypes) {
const obj = getStoredTypes(condensed);
_.forOwn(addedTypes, (count, type) => {
obj[type] += count;
condensed.data(type, obj[type]);
});
2017-06-22 22:08:36 +02:00
const strings = [];
constants.condensedTypes.forEach((type) => {
if (obj[type]) {
switch (type) {
case "away":
strings.push(obj[type] + (obj[type] > 1 ? " users have gone away" : " user has gone away"));
break;
case "back":
strings.push(obj[type] + (obj[type] > 1 ? " users have come back" : " user has come back"));
break;
2017-09-19 17:22:50 +02:00
case "chghost":
strings.push(obj[type] + (obj[type] > 1 ? " users have changed hostname" : " user has changed hostname"));
break;
case "join":
strings.push(obj[type] + (obj[type] > 1 ? " users have joined the channel" : " user has joined the channel"));
break;
case "part":
strings.push(obj[type] + (obj[type] > 1 ? " users have left the channel" : " user has left the channel"));
break;
case "quit":
strings.push(obj[type] + (obj[type] > 1 ? " users have quit" : " user has quit"));
break;
case "nick":
strings.push(obj[type] + (obj[type] > 1 ? " users have changed nick" : " user has changed nick"));
break;
case "kick":
strings.push(obj[type] + (obj[type] > 1 ? " users were kicked" : " user was kicked"));
break;
case "mode":
strings.push(obj[type] + (obj[type] > 1 ? " modes were set" : " mode was set"));
break;
2017-06-22 22:08:36 +02:00
}
}
});
let text = strings.pop();
if (strings.length) {
text = strings.join(", ") + ", and " + text;
2017-06-22 22:08:36 +02:00
}
condensed.find(".condensed-summary .content")
.html(text + templates.msg_condensed_toggle());
2017-06-22 22:08:36 +02:00
}