hardlounge/client/components/ChannelWrapper.vue

89 lines
2.0 KiB
Vue
Raw Normal View History

<template>
<!-- TODO: move closed style to it's own class -->
<div
v-if="isChannelVisible"
2019-08-03 19:03:45 +00:00
ref="element"
2019-02-07 07:24:53 +00:00
:class="[
2019-12-04 06:58:23 +00:00
'channel-list-item',
2019-11-26 20:50:40 +00:00
{active: active},
2019-07-17 09:33:59 +00:00
{'parted-channel': channel.type === 'channel' && channel.state === 0},
{'has-draft': channel.pendingMessage},
2021-05-06 01:51:35 +00:00
{'has-unread': channel.unread},
{'has-highlight': channel.highlight},
2019-12-19 13:22:04 +00:00
{
'not-secure':
channel.type === 'lobby' && network.status.connected && !network.status.secure,
},
{'not-connected': channel.type === 'lobby' && !network.status.connected},
2019-02-07 07:24:53 +00:00
]"
:aria-label="getAriaLabel()"
:title="getAriaLabel()"
2019-01-02 12:09:50 +00:00
:data-name="channel.name"
2019-12-04 06:58:23 +00:00
:data-type="channel.type"
:aria-controls="'#chan-' + channel.id"
2019-11-26 20:50:40 +00:00
:aria-selected="active"
2019-11-23 16:44:23 +00:00
:style="channel.closed ? {transition: 'none', opacity: 0.4} : null"
role="tab"
2019-10-17 16:56:44 +00:00
@click="click"
2019-11-09 22:21:34 +00:00
@contextmenu.prevent="openContextMenu"
>
2019-07-17 09:33:59 +00:00
<slot :network="network" :channel="channel" :activeChannel="activeChannel" />
</div>
</template>
<script>
2020-03-16 17:58:40 +00:00
import eventbus from "../js/eventbus";
import isChannelCollapsed from "../js/helpers/isChannelCollapsed";
2019-03-03 19:43:57 +00:00
export default {
name: "ChannelWrapper",
props: {
network: Object,
channel: Object,
2019-11-26 20:50:40 +00:00
active: Boolean,
isFiltering: Boolean,
},
computed: {
activeChannel() {
return this.$store.state.activeChannel;
},
isChannelVisible() {
2019-11-26 20:50:40 +00:00
return this.isFiltering || !isChannelCollapsed(this.network, this.channel);
},
},
methods: {
getAriaLabel() {
const extra = [];
if (this.channel.unread > 0) {
extra.push(`${this.channel.unread} unread`);
}
if (this.channel.highlight > 0) {
extra.push(`${this.channel.highlight} mention`);
}
if (extra.length > 0) {
return `${this.channel.name} (${extra.join(", ")})`;
}
return this.channel.name;
},
2019-10-17 16:56:44 +00:00
click() {
if (this.isFiltering) {
return;
}
2019-10-25 21:37:40 +00:00
this.$root.switchToChannel(this.channel);
2019-10-17 16:56:44 +00:00
},
2019-11-09 22:21:34 +00:00
openContextMenu(event) {
2020-03-16 17:58:40 +00:00
eventbus.emit("contextmenu:channel", {
2019-11-23 14:26:20 +00:00
event: event,
channel: this.channel,
network: this.network,
});
2019-11-09 22:21:34 +00:00
},
},
};
</script>