thelounge/client/js/socket-events/mute_changed.ts
Max Leiter dd05ee3a65
TypeScript and Vue 3 (#4559)
Co-authored-by: Eric Nemchik <eric@nemchik.com>
Co-authored-by: Pavel Djundik <xPaw@users.noreply.github.com>
2022-06-18 17:25:21 -07:00

19 lines
420 B
TypeScript

import socket from "../socket";
import {store} from "../store";
socket.on("mute:changed", (response) => {
const {target, status} = response;
const netChan = store.getters.findChannel(target);
if (netChan?.channel.type === "lobby") {
for (const chan of netChan.network.channels) {
if (chan.type !== "special") {
chan.muted = status;
}
}
} else if (netChan) {
netChan.channel.muted = status;
}
});