thelounge/client/components/ChannelWrapper.vue

87 lines
1.9 KiB
Vue
Raw Normal View History

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