LiveAtlas/src/components/ChatBox.vue

103 lines
2.4 KiB
Vue
Raw Normal View History

2020-12-17 14:50:12 +00:00
<!--
- Copyright 2020 James Lyne
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
-->
<template>
<section class="chat">
<ul class="chat__messages">
2020-12-31 22:29:43 +00:00
<ChatMessage v-for="message in messages" :key="message.timestamp" :message="message"></ChatMessage>
<li v-if="!messages.length" class="message message--skeleton">No chat messages yet...</li>
2020-12-17 14:50:12 +00:00
</ul>
</section>
</template>
<script lang="ts">
import {defineComponent, computed} from "@vue/runtime-core";
import {useStore} from "@/store";
2020-12-31 13:05:54 +00:00
import ChatMessage from "@/components/chat/ChatMessage.vue";
2020-12-17 14:50:12 +00:00
export default defineComponent({
2020-12-31 13:05:54 +00:00
components: {
ChatMessage
},
2020-12-17 14:50:12 +00:00
setup() {
const store = useStore(),
componentSettings = computed(() => store.state.components.chatBox),
messages = computed(() => {
if(componentSettings.value!.messageHistory) {
2021-01-07 22:39:26 +00:00
return store.state.chat.messages.slice(0, componentSettings.value!.messageHistory);
} else {
return store.state.chat.messages;
}
});
2020-12-17 14:50:12 +00:00
return {
2020-12-31 22:29:43 +00:00
messages,
2020-12-17 14:50:12 +00:00
}
}
})
</script>
<style lang="scss">
2020-12-31 13:05:54 +00:00
@import '../scss/variables';
@import '../scss/placeholders';
2020-12-17 14:50:12 +00:00
2020-12-31 13:05:54 +00:00
.chat {
@extend %panel;
position: absolute;
bottom: 7rem;
left: 7rem;
width: 50rem;
max-width: calc(100% - 8rem);
max-height: 20rem;
display: flex;
box-sizing: border-box;
.chat__messages {
display: flex;
flex-direction: column-reverse;
list-style: none;
overflow: auto;
margin: 0;
padding: 0;
.message {
font-size: 1.6rem;
2020-12-31 22:29:43 +00:00
line-height: 1.9rem;
2020-12-31 13:05:54 +00:00
& + .message {
margin-bottom: 0.5rem
}
2020-12-31 22:29:43 +00:00
&.message--skeleton {
font-style: italic;
color: #aaaaaa;
}
2020-12-31 13:05:54 +00:00
}
}
@media (max-width: 25rem), (max-height: 30rem) {
bottom: 6.5rem;
left: 6.5rem;
max-width: calc(100% - 7rem);
}
@media (max-width: 20rem) {
.chat__messages .message + .message {
margin-bottom: 0.7rem;
}
}
}
2020-12-17 14:50:12 +00:00
</style>