Display unhandled numerics on the client

This commit is contained in:
Pavel Djundik 2016-04-24 18:12:54 +03:00
parent 2fedd861d7
commit cada00ab6a
8 changed files with 49 additions and 4 deletions

View file

@ -914,6 +914,10 @@ button {
color: #f00;
}
#chat .unhandled .from {
color: #eee;
}
#chat .msg.toggle .time {
visibility: hidden;
}

View file

@ -220,7 +220,7 @@ $(function() {
}
var chan = chat.find(target);
var msg;
var template = "msg";
if (highlights.some(function(h) {
return data.msg.text.indexOf(h) > -1;
@ -243,11 +243,13 @@ $(function() {
"ctcp",
].indexOf(type) !== -1) {
data.msg.template = "actions/" + type;
msg = $(render("msg_action", data.msg));
} else {
msg = $(render("msg", data.msg));
template = "msg_action";
} else if (type === "unhandled") {
template = "msg_unhandled";
}
var msg = $(render(template, data.msg));
var text = msg.find(".text");
if (text.find("i").size() === 1) {
text = text.find("i");

View file

@ -195,6 +195,10 @@ body {
color: #f92772;
}
#chat .unhandled .from {
color: #99a2b4;
}
#chat .msg.quit .time,
#chat .msg.quit .from button {
color: #d0907d !important;

View file

@ -222,6 +222,10 @@ body {
color: #bc6c4c;
}
#chat .unhandled .from {
color: #aaa;
}
#chat .msg.quit .time,
#chat .msg.quit .from button {
color: #bc6c9c !important;

View file

@ -0,0 +1,11 @@
<div class="msg {{type}}{{#if self}} self{{/if}}{{#if highlight}} highlight{{/if}}">
<span class="time">
{{tz time}}
</span>
<span class="from">[{{command}}]</span>
<span class="text">
{{#each params}}
<span>{{this}}</span>
{{/each}}
</span>
</div>

View file

@ -13,6 +13,7 @@ module.exports = Client;
var id = 0;
var events = [
"connection",
"unhandled",
"ctcp",
"error",
"invite",

View file

@ -1,6 +1,7 @@
var _ = require("lodash");
Msg.Type = {
UNHANDLED: "unhandled",
ACTION: "action",
ERROR: "error",
INVITE: "invite",

View file

@ -0,0 +1,18 @@
var Msg = require("../../models/msg");
module.exports = function(irc, network) {
var client = this;
irc.on("unknown command", function(command) {
// Do not display users own name
if (command.params[0] === network.irc.user.nick) {
command.params.shift();
}
network.channels[0].pushMessage(client, new Msg({
type: Msg.Type.UNHANDLED,
command: command.command,
params: command.params
}));
});
};