2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2021-04-10 05:40:50 +02:00
|
|
|
<div class="yweeujhr _root" v-size="{ max: [400] }">
|
2021-04-20 16:22:59 +02:00
|
|
|
<MkButton @click="start" primary class="start"><i class="fas fa-plus"></i> {{ $ts.startMessaging }}</MkButton>
|
2021-04-10 05:40:50 +02:00
|
|
|
|
|
|
|
<div class="history" v-if="messages.length > 0">
|
|
|
|
<MkA v-for="(message, i) in messages"
|
2021-04-13 05:43:19 +02:00
|
|
|
class="message _block"
|
2021-04-10 05:40:50 +02:00
|
|
|
:class="{ isMe: isMe(message), isRead: message.groupId ? message.reads.includes($i.id) : message.isRead }"
|
|
|
|
:to="message.groupId ? `/my/messaging/group/${message.groupId}` : `/my/messaging/${getAcct(isMe(message) ? message.recipient : message.user)}`"
|
|
|
|
:data-index="i"
|
|
|
|
:key="message.id"
|
|
|
|
v-anim="i"
|
|
|
|
>
|
|
|
|
<div>
|
2021-04-17 16:52:54 +02:00
|
|
|
<MkAvatar class="avatar" :user="message.groupId ? message.user : isMe(message) ? message.recipient : message.user" :show-indicator="true"/>
|
2021-04-10 05:40:50 +02:00
|
|
|
<header v-if="message.groupId">
|
|
|
|
<span class="name">{{ message.group.name }}</span>
|
|
|
|
<MkTime :time="message.createdAt" class="time"/>
|
|
|
|
</header>
|
|
|
|
<header v-else>
|
|
|
|
<span class="name"><MkUserName :user="isMe(message) ? message.recipient : message.user"/></span>
|
|
|
|
<span class="username">@{{ acct(isMe(message) ? message.recipient : message.user) }}</span>
|
|
|
|
<MkTime :time="message.createdAt" class="time"/>
|
|
|
|
</header>
|
|
|
|
<div class="body">
|
|
|
|
<p class="text"><span class="me" v-if="isMe(message)">{{ $ts.you }}:</span>{{ message.text }}</p>
|
2020-01-29 20:37:25 +01:00
|
|
|
</div>
|
2021-04-10 05:40:50 +02:00
|
|
|
</div>
|
|
|
|
</MkA>
|
2020-03-20 16:21:33 +01:00
|
|
|
</div>
|
2021-04-10 05:40:50 +02:00
|
|
|
<div class="_fullinfo" v-if="!fetching && messages.length == 0">
|
|
|
|
<img src="https://xn--931a.moe/assets/info.jpg" class="_ghost"/>
|
|
|
|
<div>{{ $ts.noHistory }}</div>
|
|
|
|
</div>
|
|
|
|
<MkLoading v-if="fetching"/>
|
2020-01-29 20:37:25 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 13:12:00 +02:00
|
|
|
import { defineAsyncComponent, defineComponent } from 'vue';
|
2021-03-23 09:43:07 +01:00
|
|
|
import getAcct from '@/misc/acct/render';
|
2021-03-23 09:30:14 +01:00
|
|
|
import MkButton from '@client/components/ui/button.vue';
|
2020-10-17 13:12:00 +02:00
|
|
|
import { acct } from '../../filters/user';
|
2021-03-23 09:30:14 +01:00
|
|
|
import * as os from '@client/os';
|
2021-04-10 05:54:12 +02:00
|
|
|
import * as symbols from '@client/symbols';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
export default defineComponent({
|
2020-01-29 20:37:25 +01:00
|
|
|
components: {
|
|
|
|
MkButton
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
2021-04-10 05:54:12 +02:00
|
|
|
[symbols.PAGE_INFO]: {
|
2020-12-26 02:47:36 +01:00
|
|
|
title: this.$ts.messaging,
|
2021-04-20 16:22:59 +02:00
|
|
|
icon: 'fas fa-comments'
|
2020-10-17 13:12:00 +02:00
|
|
|
},
|
2020-01-29 20:37:25 +01:00
|
|
|
fetching: true,
|
|
|
|
moreFetching: false,
|
|
|
|
messages: [],
|
|
|
|
connection: null,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
2020-10-17 13:12:00 +02:00
|
|
|
this.connection = os.stream.useSharedConnection('messagingIndex');
|
2020-01-29 20:37:25 +01:00
|
|
|
|
|
|
|
this.connection.on('message', this.onMessage);
|
|
|
|
this.connection.on('read', this.onRead);
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
os.api('messaging/history', { group: false }).then(userMessages => {
|
|
|
|
os.api('messaging/history', { group: true }).then(groupMessages => {
|
2020-01-29 20:37:25 +01:00
|
|
|
const messages = userMessages.concat(groupMessages);
|
|
|
|
messages.sort((a, b) => new Date(b.createdAt).getTime() - new Date(a.createdAt).getTime());
|
|
|
|
this.messages = messages;
|
|
|
|
this.fetching = false;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
beforeUnmount() {
|
2020-01-29 20:37:25 +01:00
|
|
|
this.connection.dispose();
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
getAcct,
|
|
|
|
|
|
|
|
isMe(message) {
|
2020-12-19 02:55:52 +01:00
|
|
|
return message.userId == this.$i.id;
|
2020-01-29 20:37:25 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
onMessage(message) {
|
|
|
|
if (message.recipientId) {
|
|
|
|
this.messages = this.messages.filter(m => !(
|
|
|
|
(m.recipientId == message.recipientId && m.userId == message.userId) ||
|
|
|
|
(m.recipientId == message.userId && m.userId == message.recipientId)));
|
|
|
|
|
|
|
|
this.messages.unshift(message);
|
|
|
|
} else if (message.groupId) {
|
|
|
|
this.messages = this.messages.filter(m => m.groupId !== message.groupId);
|
|
|
|
this.messages.unshift(message);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onRead(ids) {
|
|
|
|
for (const id of ids) {
|
|
|
|
const found = this.messages.find(m => m.id == id);
|
|
|
|
if (found) {
|
|
|
|
if (found.recipientId) {
|
|
|
|
found.isRead = true;
|
|
|
|
} else if (found.groupId) {
|
2020-12-19 02:55:52 +01:00
|
|
|
found.reads.push(this.$i.id);
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
start(ev) {
|
2020-10-17 13:12:00 +02:00
|
|
|
os.modalMenu([{
|
2020-12-26 02:47:36 +01:00
|
|
|
text: this.$ts.messagingWithUser,
|
2021-04-20 16:22:59 +02:00
|
|
|
icon: 'fas fa-user',
|
2020-10-17 13:12:00 +02:00
|
|
|
action: () => { this.startUser() }
|
|
|
|
}, {
|
2020-12-26 02:47:36 +01:00
|
|
|
text: this.$ts.messagingWithGroup,
|
2021-04-20 16:22:59 +02:00
|
|
|
icon: 'fas fa-users',
|
2020-10-17 13:12:00 +02:00
|
|
|
action: () => { this.startGroup() }
|
|
|
|
}], ev.currentTarget || ev.target);
|
2020-01-29 20:37:25 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
async startUser() {
|
2020-10-17 13:12:00 +02:00
|
|
|
os.selectUser().then(user => {
|
2020-01-29 20:37:25 +01:00
|
|
|
this.$router.push(`/my/messaging/${getAcct(user)}`);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
async startGroup() {
|
2020-10-17 13:12:00 +02:00
|
|
|
const groups1 = await os.api('users/groups/owned');
|
|
|
|
const groups2 = await os.api('users/groups/joined');
|
2020-02-13 03:44:58 +01:00
|
|
|
if (groups1.length === 0 && groups2.length === 0) {
|
2020-10-17 13:12:00 +02:00
|
|
|
os.dialog({
|
2020-02-13 03:44:58 +01:00
|
|
|
type: 'warning',
|
2020-12-26 02:47:36 +01:00
|
|
|
title: this.$ts.youHaveNoGroups,
|
|
|
|
text: this.$ts.joinOrCreateGroup,
|
2020-02-13 03:44:58 +01:00
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
2020-10-17 13:12:00 +02:00
|
|
|
const { canceled, result: group } = await os.dialog({
|
2020-01-29 20:37:25 +01:00
|
|
|
type: null,
|
2020-12-26 02:47:36 +01:00
|
|
|
title: this.$ts.group,
|
2020-01-29 20:37:25 +01:00
|
|
|
select: {
|
|
|
|
items: groups1.concat(groups2).map(group => ({
|
|
|
|
value: group, text: group.name
|
|
|
|
}))
|
|
|
|
},
|
|
|
|
showCancelButton: true
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
2020-02-09 11:29:49 +01:00
|
|
|
this.$router.push(`/my/messaging/group/${group.id}`);
|
2020-10-17 13:12:00 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
acct
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2021-04-10 05:40:50 +02:00
|
|
|
.yweeujhr {
|
2020-01-29 20:37:25 +01:00
|
|
|
|
|
|
|
> .start {
|
2021-04-10 05:40:50 +02:00
|
|
|
margin: var(--margin) auto var(--margin) auto;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
> .history {
|
|
|
|
> .message {
|
|
|
|
display: block;
|
|
|
|
text-decoration: none;
|
2020-07-12 09:05:00 +02:00
|
|
|
margin-bottom: var(--margin);
|
2020-01-29 20:37:25 +01:00
|
|
|
|
|
|
|
* {
|
|
|
|
pointer-events: none;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
.avatar {
|
|
|
|
filter: saturate(200%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
}
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
&.isRead,
|
|
|
|
&.isMe {
|
2020-01-29 20:37:25 +01:00
|
|
|
opacity: 0.8;
|
|
|
|
}
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
&:not(.isMe):not(.isRead) {
|
2020-01-29 20:37:25 +01:00
|
|
|
> div {
|
2021-03-07 06:40:57 +01:00
|
|
|
background-image: url("/static-assets/client/unread.svg");
|
2020-01-29 20:37:25 +01:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: 0 center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
|
|
|
> div {
|
|
|
|
padding: 20px 30px;
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
|
|
|
> header {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-bottom: 2px;
|
|
|
|
white-space: nowrap;
|
2021-03-02 14:57:16 +01:00
|
|
|
overflow: hidden;
|
2020-01-29 20:37:25 +01:00
|
|
|
|
|
|
|
> .name {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2021-03-02 14:57:16 +01:00
|
|
|
overflow: hidden;
|
2020-01-29 20:37:25 +01:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
font-size: 1em;
|
|
|
|
font-weight: bold;
|
|
|
|
transition: all 0.1s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .username {
|
|
|
|
margin: 0 8px;
|
|
|
|
}
|
|
|
|
|
2020-10-27 10:11:41 +01:00
|
|
|
> .time {
|
2020-01-29 20:37:25 +01:00
|
|
|
margin: 0 0 0 auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .avatar {
|
|
|
|
float: left;
|
|
|
|
width: 54px;
|
|
|
|
height: 54px;
|
|
|
|
margin: 0 16px 0 0;
|
|
|
|
border-radius: 8px;
|
|
|
|
transition: all 0.1s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .body {
|
|
|
|
|
|
|
|
> .text {
|
|
|
|
display: block;
|
|
|
|
margin: 0 0 0 0;
|
|
|
|
padding: 0;
|
2021-03-02 14:57:16 +01:00
|
|
|
overflow: hidden;
|
2020-01-29 20:37:25 +01:00
|
|
|
overflow-wrap: break-word;
|
|
|
|
font-size: 1.1em;
|
|
|
|
color: var(--faceText);
|
|
|
|
|
|
|
|
.me {
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .image {
|
|
|
|
display: block;
|
|
|
|
max-width: 100%;
|
|
|
|
max-height: 512px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-12 09:05:00 +02:00
|
|
|
&.max-width_400px {
|
2020-01-29 20:37:25 +01:00
|
|
|
> .history {
|
|
|
|
> .message {
|
2020-10-17 13:12:00 +02:00
|
|
|
&:not(.isMe):not(.isRead) {
|
2020-01-29 20:37:25 +01:00
|
|
|
> div {
|
|
|
|
background-image: none;
|
|
|
|
border-left: solid 4px #3aa2dc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> div {
|
|
|
|
padding: 16px;
|
2020-02-14 19:57:43 +01:00
|
|
|
font-size: 0.9em;
|
2020-01-29 20:37:25 +01:00
|
|
|
|
|
|
|
> .avatar {
|
|
|
|
margin: 0 12px 0 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|