2018-07-12 19:24:35 +00:00
|
|
|
<template>
|
2019-04-13 20:44:04 +00:00
|
|
|
<!-- TODO: move closed style to it's own class -->
|
2018-07-12 19:24:35 +00:00
|
|
|
<div
|
2019-07-17 09:33:59 +00:00
|
|
|
v-if="
|
|
|
|
!network.isCollapsed ||
|
|
|
|
channel.highlight ||
|
|
|
|
channel.type === 'lobby' ||
|
|
|
|
(activeChannel && channel === activeChannel.channel)
|
|
|
|
"
|
2019-08-03 19:03:45 +00:00
|
|
|
ref="element"
|
2019-02-07 07:24:53 +00:00
|
|
|
:class="[
|
2019-03-19 13:11:44 +00:00
|
|
|
'chan',
|
2019-02-07 07:24:53 +00:00
|
|
|
channel.type,
|
2019-07-17 09:33:59 +00:00
|
|
|
{active: activeChannel && channel === activeChannel.channel},
|
|
|
|
{'parted-channel': channel.type === 'channel' && channel.state === 0},
|
2019-02-07 07:24:53 +00:00
|
|
|
]"
|
2018-10-05 09:14:30 +00:00
|
|
|
:aria-label="getAriaLabel()"
|
|
|
|
:title="getAriaLabel()"
|
2018-07-12 19:24:35 +00:00
|
|
|
:data-id="channel.id"
|
|
|
|
:data-target="'#chan-' + channel.id"
|
2019-01-02 12:09:50 +00:00
|
|
|
:data-name="channel.name"
|
2018-07-12 19:24:35 +00:00
|
|
|
:aria-controls="'#chan-' + channel.id"
|
|
|
|
:aria-selected="activeChannel && channel === activeChannel.channel"
|
2019-03-03 19:43:57 +00:00
|
|
|
:style="closed ? {transition: 'none', opacity: 0.4} : null"
|
2019-02-25 05:38:13 +00:00
|
|
|
role="tab"
|
2019-10-17 16:56:44 +00:00
|
|
|
@click="click"
|
2019-11-09 22:21:34 +00:00
|
|
|
@contextmenu.prevent="openContextMenu"
|
2019-02-25 05:38:13 +00:00
|
|
|
>
|
2019-07-17 09:33:59 +00:00
|
|
|
<slot :network="network" :channel="channel" :activeChannel="activeChannel" />
|
2018-07-12 19:24:35 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2019-03-03 19:43:57 +00:00
|
|
|
import socket from "../js/socket";
|
2019-11-09 22:21:34 +00:00
|
|
|
import {generateChannelContextMenu} from "../js/helpers/contextMenu.js";
|
2019-03-03 19:43:57 +00:00
|
|
|
|
2018-07-12 19:24:35 +00:00
|
|
|
export default {
|
|
|
|
name: "ChannelWrapper",
|
|
|
|
props: {
|
|
|
|
network: Object,
|
|
|
|
channel: Object,
|
|
|
|
},
|
2019-03-03 19:43:57 +00:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
closed: false,
|
|
|
|
};
|
|
|
|
},
|
2019-11-02 19:40:59 +00:00
|
|
|
computed: {
|
|
|
|
activeChannel() {
|
|
|
|
return this.$store.state.activeChannel;
|
|
|
|
},
|
|
|
|
},
|
2018-10-05 09:14:30 +00:00
|
|
|
methods: {
|
2019-03-03 19:43:57 +00:00
|
|
|
close() {
|
|
|
|
this.closed = true;
|
|
|
|
|
|
|
|
socket.emit("input", {
|
|
|
|
target: Number(this.channel.id),
|
2019-11-02 19:06:34 +00:00
|
|
|
text: "/close",
|
2019-03-03 19:43:57 +00:00
|
|
|
});
|
|
|
|
},
|
2018-10-05 09:14:30 +00:00
|
|
|
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() {
|
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) {
|
|
|
|
const items = generateChannelContextMenu(this.$root, this.channel, this.network);
|
|
|
|
this.$root.$refs.app.openContextMenu(event, items);
|
|
|
|
},
|
2018-10-05 09:14:30 +00:00
|
|
|
},
|
2018-07-12 19:24:35 +00:00
|
|
|
};
|
|
|
|
</script>
|