thelounge/client/js/helpers/isChannelCollapsed.js
2019-11-25 20:13:14 +02:00

16 lines
303 B
JavaScript

"use strict";
import store from "../store";
export default (network, channel) => {
if (!network.isCollapsed || channel.highlight || channel.type === "lobby") {
return false;
}
if (store.state.activeChannel && channel === store.state.activeChannel.channel) {
return false;
}
return true;
};