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

240 lines
5.4 KiB
Vue

<template>
<div v-if="matrix.loading">
<throbber-overlay text="loading"/>
</div>
<div v-else>
<div id="roomList" class="roomList">
<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)" >
<div v-if="!search || room.name.toLowerCase().includes(search.toLowerCase())" class="roomListElement">
<userThumbnail
class="roomImg"
:mxcURL="getUrl(room)"
:fallback="room.roomId"
:size="3"
/>
<div class="roomListName">{{room.name}}</div>
<div class="preview">{{getPreviewString(room)}}</div>
</div>
</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>
<div class="roomListSmall">
<h1>[c]</h1>
<div v-for="(room, index) in matrix.rooms" :key="index" @click="openChat(room)" class="roomListElement" :title="room.name">
<userThumbnail
class="roomImg"
:mxcURL="getUrl(room)"
:fallback="room.roomId"
:size="3"
/>
<div class="roomListName">{{room.name}}</div>
</div>
</div>
<chatInformation v-if="currentRoom && showChatInfo" :room="currentRoom" :close-chat-info="()=>showChatInfo=false"/>
</div>
</template>
<script>
import chat from '@/views/chat.vue';
import chatInformation from "@/components/chatInformation";
import userThumbnail from "@/components/userThumbnail";
import {matrix} from "@/main";
import sdk from "matrix-js-sdk";
import {getTime} from "@/lib/getTimeStrings";
import ThrobberOverlay from "@/components/throbberOverlay";
export default {
name: "rooms",
components:{
ThrobberOverlay,
chat,
chatInformation,
userThumbnail
},
methods:{
openChat(room){
this.currentRoom = room;
this.$router.push(`/rooms/${room.roomId}`);
this.$forceUpdate();
//chat.methods.scrollToBottom();
},
getUrl(room){
let avatarState = room.getLiveTimeline().getState(sdk.EventTimeline.FORWARDS).getStateEvents("m.room.avatar");
return avatarState.length>0?avatarState[avatarState.length-1].getContent().url:undefined;
},
getLatestEvent(room){
if (!room.timeline[room.timeline.length-1]) return undefined;
return room.timeline[room.timeline.length-1].event;
},
getPreviewString(room){
let event = this.getLatestEvent(room);
if (!event) return '';
let text = event.content.body
? event.content.body.length>20?event.content.body.substr(0,19)+'…':event.content.body
: 'unknown event';
return `${this.calcUserName(event.sender)}: ${text} ${getTime(event.origin_server_ts)}`;
},
calcUserName(userId) {
if (matrix.user === userId) return 'you';
return matrix.client.getUser(userId).displayName || userId;
}
},
data(){
return {
matrix,
currentRoom: undefined,
showChatInfo: false,
search: ''
}
},
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;
margin: 0.5rem 0 0.5rem 0;
font-size: 1.2rem;
cursor: pointer;
background-color: #222;
}
.roomListName{
position: absolute;
left: 4rem;
top: 0.25rem;
}
.preview{
position: absolute;
top: 1.5rem;
left: 4rem;
font-size: 0.8rem;
text-align: left;
}
.roomListSmall{
position: absolute;
left: 0;
top: 0;
width: 4rem;
height: 100%;
background-color: #222;
text-align: center;
display: none;
overflow-y: auto;
overflow-x: hidden;
animation: ease;
animation-duration: 0.2s;
scrollbar-width: none;
}
.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;
}
.roomImg.small{
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>