thelounge/src/plugins/irc-events/kick.js
Jérémie Astori caa46042bf Enforce strict mode across all JS files with ESLint
Several ES6 additions are only available in strict mode. Example:
> SyntaxError: Block-scoped declarations (let, const, function, class) not yet supported outside strict mode

Strict mode was also enabled in a few of our files already, and it is a good thing to have anyway.
2016-10-09 15:14:02 -04:00

37 lines
783 B
JavaScript

"use strict";
var _ = require("lodash");
var Msg = require("../../models/msg");
module.exports = function(irc, network) {
var client = this;
irc.on("kick", function(data) {
var chan = network.getChannel(data.channel);
if (typeof chan === "undefined") {
return;
}
if (data.kicked === irc.user.nick) {
chan.users = [];
} else {
chan.users = _.without(chan.users, _.find(chan.users, {name: data.kicked}));
}
client.emit("users", {
chan: chan.id
});
var msg = new Msg({
type: Msg.Type.KICK,
time: data.time,
mode: chan.getMode(data.nick),
from: data.nick,
target: data.kicked,
text: data.message || "",
highlight: data.kicked === irc.user.nick,
self: data.nick === irc.user.nick
});
chan.pushMessage(client, msg);
});
};