You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
matrix-chat/src/views/rooms.vue

213 lines
4.2 KiB
Vue

<template>
3 years ago
<div v-if="matrix.loading">
<throbber-overlay text="loading"/>
3 years ago
</div>
<div v-else>
<div id="roomList" class="roomList">
3 years ago
<h1>[chat]</h1>
<input v-model="search" class="input" type="text" maxlength="50" placeholder="search"><br>
<div v-for="room in matrix.rooms" :key="room.roomId" @click="openChat(room)" >
<room-list-element
v-if="!search || room.name.toLowerCase().includes(search.toLowerCase().trim())"
:room="room"
class="roomListElement"
/>
</div>
</div>
<chat
class="chat"
v-if="currentRoom"
:room="currentRoom"
:user="matrix.user"
:close-chat="()=>currentRoom=undefined"
:open-chat-info="()=>showChatInfo=true"
/>
<div class="noRoomSelected" v-else>Please select a room to be displayed.</div>
<chatInformation v-if="currentRoom && showChatInfo" :room="currentRoom" :close-chat-info="()=>showChatInfo=false"/>
</div>
</template>
<script>
4 years ago
import chat from '@/views/chat.vue';
import chatInformation from "@/components/chatInformation";
3 years ago
import {matrix} from "@/main";
import ThrobberOverlay from "@/components/throbberOverlay";
import {getMxcFromRoom} from "@/lib/getMxc";
import roomListElement from "@/components/roomListElement";
export default {
name: "rooms",
components:{
ThrobberOverlay,
4 years ago
chat,
chatInformation,
roomListElement
},
methods:{
openChat(room){
3 years ago
this.currentRoom = undefined
this.$nextTick(() => this.currentRoom = room);
this.showChatInfo = false;
3 years ago
this.currentRoom = room;
this.$router.push(`/rooms/${room.roomId}`);
3 years ago
this.search = '';
},
getMxcFromRoom
},
data(){
return {
3 years ago
matrix,
currentRoom: undefined,
showChatInfo: false,
search: ''
}
3 years ago
},
mounted() {
if (matrix.client === undefined) this.$router.push('/login');
}
}
</script>
<style scoped>
.roomList{
position: absolute;
left: 0;
top: 0;
width: 18rem;
height: 100%;
background-color: #222;
text-align: center;
overflow-y: auto;
}
.chat{
position: absolute;
right: 0;
top: 0;
width: calc(100% - 18rem);
height: 100%;
background-color: #313131;
}
.roomListElement{
position: relative;
height: 3rem;
4 years ago
margin: 0.5rem 0 0.5rem 0;
font-size: 1.2rem;
cursor: pointer;
background-color: #222;
}
.roomListName{
position: absolute;
left: 4rem;
top: 0.25rem;
3 years ago
text-overflow: ellipsis;
white-space: nowrap;
width: calc(100% - 5rem);
text-align: left;
}
.preview{
position: absolute;
top: 1.5rem;
left: 4rem;
font-size: 0.8rem;
text-align: left;
3 years ago
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
width: calc(100% - 4.5rem);
}
.roomListSmall{
position: absolute;
left: 0;
top: 0;
width: 4rem;
height: 100%;
background-color: #222;
text-align: center;
display: none;
overflow-y: auto;
4 years ago
overflow-x: hidden;
animation: ease;
animation-duration: 0.2s;
scrollbar-width: none;
3 years ago
z-index: 20;
}
.roomListSmall:hover{
width: 18rem;
scrollbar-width: thin;
box-shadow: 0 0 20px #111;
}
.roomListSmall::-webkit-scrollbar {
width: 0;
}
.roomListSmall:hover::-webkit-scrollbar {
width: 0.5rem;
}
.noRoomSelected{
position: absolute;
width: calc(100% - 20rem);
top: 5rem;
left: 20rem;
text-align: center;
}
.roomImg{
position: absolute;
left: 0.5rem;
height: 3rem;
width: 3rem;
4 years ago
}
.roomImg.small{
4 years ago
margin-left: calc(50% - 2rem);
}
input{
padding: 0 2rem 0 2rem;
height: 2.5rem;
width: calc(100% - 6rem);
left: 1rem;
color: #fff;
background-color: #1d1d1d;
border-radius: 1.25rem;
border: 1px solid #fff;
text-align: center;
font-size: 1.1rem;
margin: 0.5rem;
appearance: none;
outline: none;
}
@media (max-width: 48rem) {
.roomList{
display: none;
}
.chat{
width: calc(100% - 4rem);
}
.roomListSmall{
display: block;
}
.roomImgPlaceholder{
left: 0.5rem;
}
.noRoomSelected{
left: 4rem;
width: calc(100% - 4rem);
}
}
@media (max-width: 30rem) {
.roomList{
width: 100%;
}
.chat{
width: 100%;
}
.noRoomSelected{
display: none;
}
.roomListSmall{
display: none;
}
.roomList{
display: block;
}
}
</style>