thelounge/client/js/socket-events/users.js
Pavel Djundik 2f635069e0 Move vuex state to a separate file and reorganize some code
Co-Authored-By: Tim Miller-Williams <timmw@users.noreply.github.com>
2019-11-25 20:12:54 +02:00

20 lines
430 B
JavaScript

"use strict";
const socket = require("../socket");
const {findChannel} = require("../vue");
const store = require("../store").default;
socket.on("users", function(data) {
if (store.state.activeChannel && store.state.activeChannel.channel.id === data.chan) {
return socket.emit("names", {
target: data.chan,
});
}
const channel = findChannel(data.chan);
if (channel) {
channel.channel.usersOutdated = true;
}
});