Compare commits

..

No commits in common. "3b70b5b37c878a65e2cb7144ac482f36394675a9" and "f5388abeb073173b123e41483fe2a82bf9afb50f" have entirely different histories.

9 changed files with 32 additions and 67 deletions

View File

@ -28,7 +28,7 @@ input{
color: #fff; color: #fff;
background-color: #1d1d1d; background-color: #1d1d1d;
border-radius: 1.25rem; border-radius: 1.25rem;
border: 0.1rem solid #fff; border: 1px solid #fff;
text-align: center; text-align: center;
font-size: 1.1rem; font-size: 1.1rem;
margin: 0.5rem; margin: 0.5rem;

View File

@ -18,15 +18,15 @@
<p v-if="members.length>20">and {{members.length-20}} other members</p> <p v-if="members.length>20">and {{members.length-20}} other members</p>
</div> </div>
</div> </div>
<icon class="closeBtn" @click.native="closeChatInfo()" ic="./sym/ic_close_white.svg" /> <icon class="closeBtn" @click.native="closeChatInfo()" ic="./sym/ic_close_white_24px.svg" />
</div> </div>
</template> </template>
<script> <script>
import icon from './icon.vue'; import icon from './icon.vue';
import {matrix} from "@/main";
import UserListElement from "@/components/userListElement"; import UserListElement from "@/components/userListElement";
import avatar from "@/components/avatar"; import avatar from "@/components/avatar";
import {getMxcFromRoom} from "@/lib/getMxc"; import {getMxcFromRoom} from "@/lib/getMxc";
import {getUser} from "@/lib/matrixUtils";
export default { export default {
name: "chatInformation", name: "chatInformation",
@ -40,10 +40,12 @@ export default {
closeChatInfo: Function closeChatInfo: Function
}, },
methods: { methods: {
getUser(userId){
return matrix.client.getUser(userId);
},
getMembers(){ getMembers(){
return Object.keys(this.room.currentState.members) return Object.keys(this.room.currentState.members)
}, },
getUser,
getMxcFromRoom getMxcFromRoom
}, },
data(){ data(){

View File

@ -1,8 +1,8 @@
<template> <template>
<div :class="type==='send'?'messageSend':'messageReceive'" class="message"> <div :class="type==='send'?'messageSend':'messageReceive'" class="message">
<div v-if="replyEvent" class="reply"> <div v-if="replyEvent" class="reply">
<span class="username">{{calcUserName(replyEvent.sender)}}</span><br> {{replyEvent.sender}}<br>
<span v-html="replyEvent.type==='m.room.message'?parseMessage(replyEvent.content.body):'unkown event'"></span> {{replyEvent.type==='m.room.message'?replyEvent.content.body:'unkown event'}}
</div> </div>
<div v-html="parseMessage(msg)"></div> <div v-html="parseMessage(msg)"></div>
<div class="time">{{time}}</div> <div class="time">{{time}}</div>
@ -11,7 +11,6 @@
<script> <script>
import {matrix} from "@/main"; import {matrix} from "@/main";
import {calcUserName} from "@/lib/matrixUtils";
export default { export default {
name: "message", name: "message",
@ -52,8 +51,7 @@ export default {
.replace(/</g, '&lt') .replace(/</g, '&lt')
.replace(/>/g, '&gt') .replace(/>/g, '&gt')
); );
}, }
calcUserName
}, },
data(){ data(){
return{ return{
@ -101,7 +99,4 @@ export default {
padding-left: 0.5rem; padding-left: 0.5rem;
margin-bottom: 0.5rem; margin-bottom: 0.5rem;
} }
.username{
font-weight: bold;
}
</style> </style>

View File

@ -17,7 +17,7 @@
import avatar from "@/components/avatar"; import avatar from "@/components/avatar";
import {getMxcFromRoom} from "@/lib/getMxc"; import {getMxcFromRoom} from "@/lib/getMxc";
import {getTime} from "@/lib/getTimeStrings"; import {getTime} from "@/lib/getTimeStrings";
import {calcUserName} from "@/lib/matrixUtils"; import {matrix} from "@/main";
export default { export default {
name: "userListElement", name: "userListElement",
@ -37,7 +37,10 @@ export default {
if (!room.timeline[room.timeline.length-1]) return undefined; if (!room.timeline[room.timeline.length-1]) return undefined;
return room.timeline[room.timeline.length-1].event; return room.timeline[room.timeline.length-1].event;
}, },
calcUserName, calcUserName(userId) {
if (matrix.user === userId) return 'you';
return matrix.client.getUser(userId).displayName || userId;
},
getMxcFromRoom getMxcFromRoom
} }
} }

View File

@ -22,7 +22,7 @@
:class="groupTimeline?'indent username':'username'" :class="groupTimeline?'indent username':'username'"
v-if="group[0].sender !== user && groupTimeline" v-if="group[0].sender !== user && groupTimeline"
> >
{{calcUserName(group[0].sender)}} {{getUser(group[0].sender).displayName || group[0].sender}}
</div> </div>
<div <div
:class="groupTimeline?'indent event':'event'" :class="groupTimeline?'indent event':'event'"
@ -37,10 +37,6 @@
:content="event.content" :content="event.content"
:roomId="roomId" :roomId="roomId"
/> />
<div v-else-if="event.content.msgtype==='m.notice'" class="notice">
{{event.content.body}}
<span class="time">{{getTime(event.origin_server_ts)}}</span>
</div>
<div v-else-if="event.type==='m.room.member'" class="info"> <div v-else-if="event.type==='m.room.member'" class="info">
{{membershipEvents[event.content.membership]}} {{membershipEvents[event.content.membership]}}
<span class="time">{{getTime(event.origin_server_ts)}}</span> <span class="time">{{getTime(event.origin_server_ts)}}</span>
@ -56,10 +52,9 @@
<script> <script>
import message from "@/components/message"; import message from "@/components/message";
import avatar from "@/components/avatar"; import avatar from "@/components/avatar";
import {matrix} from "@/main";
import splitArray from "@/lib/splitArray"; import splitArray from "@/lib/splitArray";
import {getDate, getTime} from "@/lib/getTimeStrings"; import {getDate, getTime} from "@/lib/getTimeStrings";
import {getUser, calcUserName} from "@/lib/matrixUtils";
export default { export default {
name: 'eventGroup', name: 'eventGroup',
components: { components: {
@ -73,8 +68,9 @@ export default {
roomId: String roomId: String
}, },
methods: { methods: {
getUser, getUser(userId) {
calcUserName, return matrix.client.getUser(userId);
},
splitArray, splitArray,
getDate, getDate,
getTime getTime
@ -136,18 +132,11 @@ export default {
font-weight: bold; font-weight: bold;
} }
.event{ .event{
.info { .info{
font-style: italic; font-style: italic;
margin-top: 0.5rem; margin-top: 0.5rem;
margin-bottom: 0.5rem; margin-bottom: 0.5rem;
margin-left: 0.5rem; margin-left: 0.5rem;
.time {
font-size: 0.7rem;
}
}
.notice{
margin-top: 0.5rem;
margin-bottom: 0.5rem;
.time{ .time{
font-size: 0.7rem; font-size: 0.7rem;
} }

View File

@ -1,7 +1,7 @@
<template> <template>
<div class="topBanner"> <div class="topBanner">
<div> <div>
<icon @click.native="closeChat()" class="topIcon" ic="./sym/ic_arrow_back_white.svg" /> <icon @click.native="closeChat()" class="topIcon" ic="./sym/arrow_back-24px.svg" />
<div @click="openChatInfo()" class="container"> <div @click="openChatInfo()" class="container">
<avatar class="topIcon avatar" :mxcURL="getMxcFromRoom(room)" :fallback="room.roomId" :size="3"/> <avatar class="topIcon avatar" :mxcURL="getMxcFromRoom(room)" :fallback="room.roomId" :size="3"/>
<div class="chatName">{{room.name}}</div> <div class="chatName">{{room.name}}</div>

View File

@ -1,12 +0,0 @@
import {matrix} from '@/main';
export function getUser(userId) {
return matrix.client.getUser(userId);
}
export function calcUserName(userId){
if (matrix.user === userId) return 'you';
return matrix.client.getUser(userId).displayName || userId;
}
export function getRoom(roomId){
return matrix.client.getRoom(roomId);
}

View File

@ -52,7 +52,7 @@ export default {
this.loadingStatus = 'loading ...'; this.loadingStatus = 'loading ...';
await matrix.client.paginateEventTimeline(this.room.getLiveTimeline(), {backwards: true}) await matrix.client.paginateEventTimeline(this.room.getLiveTimeline(), {backwards: true})
.then(state => this.loadingStatus = state?'load more':false); .then(state => this.loadingStatus = state?'load more':false);
if (this.loadingStatus) this.scroll.setScrollBottom(scrollBottom); this.scroll.setScrollBottom(scrollBottom);
}, },
getUser(userId){ getUser(userId){
return matrix.client.getUser(userId); return matrix.client.getUser(userId);

View File

@ -6,11 +6,7 @@
<div id="roomList" class="roomList"> <div id="roomList" class="roomList">
<h1 class="wideElement">[chat]</h1><h1 class="smallElement">[c]</h1> <h1 class="wideElement">[chat]</h1><h1 class="smallElement">[c]</h1>
<input v-model="search" class="input wideElement" type="text" maxlength="50" placeholder="search"> <input v-model="search" class="input wideElement" type="text" maxlength="50" placeholder="search">
<div <div v-for="room in matrix.rooms" :key="room.roomId" @click="openChat(room)" >
v-for="room in Object.assign([], matrix.rooms)
.sort(obj => obj.timeline[obj.timeline.length-1].event.origin_server_ts)"
:key="room.roomId" @click="openChat(room)"
>
<room-list-element <room-list-element
v-if="!search || room.name.toLowerCase().includes(search.toLowerCase().trim())" v-if="!search || room.name.toLowerCase().includes(search.toLowerCase().trim())"
:room="room" :room="room"
@ -20,14 +16,14 @@
</div> </div>
<chat <chat
class="chat" class="chat"
v-if="showRoom && getCurrentRoom()" v-if="currentRoom"
:room="getCurrentRoom()" :room="currentRoom"
:user="matrix.user" :user="matrix.user"
:close-chat="closeChat" :close-chat="()=>currentRoom=undefined"
:open-chat-info="()=>showChatInfo=true" :open-chat-info="()=>showChatInfo=true"
/> />
<div class="noRoomSelected" v-else>Please select a room to be displayed.</div> <div class="noRoomSelected" v-else>Please select a room to be displayed.</div>
<chatInformation v-if="showRoom && showChatInfo" :room="getCurrentRoom()" :close-chat-info="()=>showChatInfo=false"/> <chatInformation v-if="currentRoom && showChatInfo" :room="currentRoom" :close-chat-info="()=>showChatInfo=false"/>
</div> </div>
</template> </template>
@ -38,7 +34,6 @@ import {matrix} from "@/main";
import ThrobberOverlay from "@/components/throbberOverlay"; import ThrobberOverlay from "@/components/throbberOverlay";
import {getMxcFromRoom} from "@/lib/getMxc"; import {getMxcFromRoom} from "@/lib/getMxc";
import roomListElement from "@/components/roomListElement"; import roomListElement from "@/components/roomListElement";
import {getRoom} from "@/lib/matrixUtils";
export default { export default {
name: "rooms", name: "rooms",
@ -51,25 +46,18 @@ export default {
methods:{ methods:{
openChat(room){ openChat(room){
this.showChatInfo = false; this.showChatInfo = false;
this.showRoom = false; this.currentRoom = undefined
this.$nextTick(() => this.currentRoom = room);
this.$router.push(`/rooms/${room.roomId}`); this.$router.push(`/rooms/${room.roomId}`);
this.$nextTick(() => this.showRoom = true);
this.search = ''; this.search = '';
}, },
getMxcFromRoom, getMxcFromRoom
getRoom,
getCurrentRoom(){
return getRoom(this.$route.path.split('/')[2]);
},
closeChat(){
this.$router.push('/rooms');
}
}, },
data(){ data(){
return { return {
matrix, matrix,
currentRoom: undefined,
showChatInfo: false, showChatInfo: false,
showRoom: true,
search: '' search: ''
} }
}, },
@ -114,7 +102,7 @@ export default {
text-align: center; text-align: center;
} }
input{ input{
width: calc(100% - 5.2rem); width: calc(100% - 5rem);
} }
.wideElement{ .wideElement{
display: block; display: block;