fade6a8d2e
This documents what we actually want and allows us to shift the logic to the network
53 lines
1.1 KiB
TypeScript
53 lines
1.1 KiB
TypeScript
import {IrcEventHandler} from "../../client";
|
|
|
|
import Msg, {MessageType} from "../../models/msg";
|
|
|
|
export default <IrcEventHandler>function (irc, network) {
|
|
const client = this;
|
|
|
|
irc.on("nick", function (data) {
|
|
const self = data.nick === irc.user.nick;
|
|
|
|
if (self) {
|
|
network.setNick(data.new_nick);
|
|
|
|
const lobby = network.getLobby();
|
|
const msg = new Msg({
|
|
// eslint-disable-next-line @typescript-eslint/restrict-template-expressions
|
|
text: `You're now known as ${data.new_nick}`,
|
|
});
|
|
lobby.pushMessage(client, msg, true);
|
|
|
|
client.save();
|
|
client.emit("nick", {
|
|
network: network.uuid,
|
|
nick: data.new_nick,
|
|
});
|
|
}
|
|
|
|
network.channels.forEach((chan) => {
|
|
const user = chan.findUser(data.nick);
|
|
|
|
if (typeof user === "undefined") {
|
|
return;
|
|
}
|
|
|
|
const msg = new Msg({
|
|
time: data.time,
|
|
from: user,
|
|
type: MessageType.NICK,
|
|
new_nick: data.new_nick,
|
|
});
|
|
chan.pushMessage(client, msg);
|
|
|
|
chan.removeUser(user);
|
|
user.nick = data.new_nick;
|
|
chan.setUser(user);
|
|
|
|
client.emit("users", {
|
|
chan: chan.id,
|
|
});
|
|
});
|
|
});
|
|
};
|