thelounge/client/components/Chat.vue

117 lines
2.7 KiB
Vue
Raw Normal View History

<template>
2018-07-08 15:42:54 +02:00
<div
id="chat-container"
class="window">
<div
id="chat"
2018-07-09 12:44:12 +02:00
:data-id="channel.id"
:class="{
'hide-motd': !this.$root.settings.motd,
'colored-nicks': this.$root.settings.coloredNicks,
'show-seconds': this.$root.settings.showSeconds,
2018-07-29 19:57:14 +02:00
}">
<div
:id="'chan-' + channel.id"
:class="[channel.type, 'chan', 'active']"
:data-id="channel.id"
:data-type="channel.type"
:aria-label="channel.name"
2018-07-29 19:57:14 +02:00
role="tabpanel">
<div class="header">
<button
class="lt"
2018-07-29 19:57:14 +02:00
aria-label="Toggle channel list" />
<span class="title">{{ channel.name }}</span>
<span
:title="channel.topic"
2018-07-12 10:41:40 +02:00
class="topic"><ParsedMessage
v-if="channel.topic"
2018-07-19 19:44:24 +02:00
:network="network"
2018-07-29 19:57:14 +02:00
:text="channel.topic" /></span>
<button
class="menu"
2018-07-29 19:57:14 +02:00
aria-label="Open the context menu" />
<span
v-if="channel.type === 'channel'"
class="rt-tooltip tooltipped tooltipped-w"
aria-label="Toggle user list">
<button
class="rt"
2018-07-29 19:57:14 +02:00
aria-label="Toggle user list" />
</span>
</div>
2018-07-10 11:16:24 +02:00
<div
v-if="channel.type === 'special'"
class="chat-content">
<div class="chat">
<div class="messages">
<div class="msg">
<component
:is="specialComponent"
2018-07-19 19:44:24 +02:00
:network="network"
2018-07-29 19:57:14 +02:00
:channel="channel" />
</div>
</div>
</div>
2018-07-10 11:16:24 +02:00
</div>
<div
v-else
class="chat-content">
<MessageList
2018-07-19 19:44:24 +02:00
:network="network"
:channel="channel" />
<ChatUserList
v-if="channel.type === 'channel'"
2018-07-29 19:57:14 +02:00
:channel="channel" />
</div>
</div>
</div>
2018-08-31 12:43:21 +02:00
<div
2018-09-09 15:09:19 +02:00
v-if="this.$root.currentUserVisibleError"
2018-09-03 09:58:33 +02:00
id="connection-error"
@click="hideUserVisibleError">{{ this.$root.currentUserVisibleError }}</div>
2018-09-03 09:58:33 +02:00
<span id="upload-progressbar" />
2018-07-08 15:42:54 +02:00
<ChatInput
:network="network"
2018-07-29 19:57:14 +02:00
:channel="channel" />
</div>
</template>
<script>
2018-07-12 10:41:40 +02:00
import ParsedMessage from "./ParsedMessage.vue";
import MessageList from "./MessageList.vue";
2018-07-08 15:42:54 +02:00
import ChatInput from "./ChatInput.vue";
import ChatUserList from "./ChatUserList.vue";
2018-07-10 11:16:24 +02:00
import ListBans from "./Special/ListBans.vue";
2018-07-10 11:37:48 +02:00
import ListChannels from "./Special/ListChannels.vue";
2018-07-11 09:54:32 +02:00
import ListIgnored from "./Special/ListIgnored.vue";
export default {
name: "Chat",
components: {
2018-07-12 10:41:40 +02:00
ParsedMessage,
MessageList,
2018-07-08 15:42:54 +02:00
ChatInput,
ChatUserList,
},
props: {
network: Object,
channel: Object,
},
2018-07-10 11:16:24 +02:00
computed: {
specialComponent() {
2018-07-10 11:37:48 +02:00
switch (this.channel.special) {
case "list_bans": return ListBans;
case "list_channels": return ListChannels;
2018-07-11 09:54:32 +02:00
case "list_ignored": return ListIgnored;
2018-07-10 11:16:24 +02:00
}
},
},
methods: {
hideUserVisibleError() {
this.$root.currentUserVisibleError = null;
}
},
};
</script>