hardlounge/client/components/ChannelWrapper.vue

77 lines
1.8 KiB
Vue
Raw Normal View History

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