16 lines
303 B
JavaScript
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;
|
||
|
};
|