thelounge/client/js/helpers/isChannelCollapsed.js
2022-04-30 23:01:22 -07:00

21 lines
374 B
JavaScript

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