2f635069e0
Co-Authored-By: Tim Miller-Williams <timmw@users.noreply.github.com>
83 lines
1.7 KiB
Vue
83 lines
1.7 KiB
Vue
<template>
|
|
<!-- TODO: move closed style to it's own class -->
|
|
<div
|
|
v-if="
|
|
!network.isCollapsed ||
|
|
channel.highlight ||
|
|
channel.type === 'lobby' ||
|
|
(activeChannel && channel === activeChannel.channel)
|
|
"
|
|
ref="element"
|
|
:class="[
|
|
'chan',
|
|
channel.type,
|
|
{active: activeChannel && channel === activeChannel.channel},
|
|
{'parted-channel': channel.type === 'channel' && channel.state === 0},
|
|
]"
|
|
:aria-label="getAriaLabel()"
|
|
:title="getAriaLabel()"
|
|
:data-id="channel.id"
|
|
:data-target="'#chan-' + channel.id"
|
|
:data-name="channel.name"
|
|
:aria-controls="'#chan-' + channel.id"
|
|
:aria-selected="activeChannel && channel === activeChannel.channel"
|
|
:style="closed ? {transition: 'none', opacity: 0.4} : null"
|
|
role="tab"
|
|
@click="click"
|
|
>
|
|
<slot :network="network" :channel="channel" :activeChannel="activeChannel" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import socket from "../js/socket";
|
|
|
|
export default {
|
|
name: "ChannelWrapper",
|
|
props: {
|
|
network: Object,
|
|
channel: Object,
|
|
},
|
|
data() {
|
|
return {
|
|
closed: false,
|
|
};
|
|
},
|
|
computed: {
|
|
activeChannel() {
|
|
return this.$store.state.activeChannel;
|
|
},
|
|
},
|
|
methods: {
|
|
close() {
|
|
this.closed = true;
|
|
|
|
socket.emit("input", {
|
|
target: Number(this.channel.id),
|
|
text: "/close",
|
|
});
|
|
},
|
|
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;
|
|
},
|
|
click() {
|
|
this.$root.switchToChannel(this.channel);
|
|
},
|
|
},
|
|
};
|
|
</script>
|