2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2020-08-09 08:51:02 +02:00
|
|
|
<div class="qglefbjs" :class="notification.type" v-size="{ max: [500, 600] }">
|
2020-01-29 20:37:25 +01:00
|
|
|
<div class="head">
|
2020-10-17 13:12:00 +02:00
|
|
|
<MkAvatar v-if="notification.user" class="icon" :user="notification.user"/>
|
|
|
|
<img v-else-if="notification.icon" class="icon" :src="notification.icon" alt=""/>
|
2020-03-28 10:07:41 +01:00
|
|
|
<div class="sub-icon" :class="notification.type">
|
2021-04-20 16:22:59 +02:00
|
|
|
<i v-if="notification.type === 'follow'" class="fas fa-plus"></i>
|
|
|
|
<i v-else-if="notification.type === 'receiveFollowRequest'" class="fas fa-clock"></i>
|
|
|
|
<i v-else-if="notification.type === 'followRequestAccepted'" class="fas fa-check"></i>
|
|
|
|
<i v-else-if="notification.type === 'groupInvited'" class="fas fa-id-card-alt"></i>
|
|
|
|
<i v-else-if="notification.type === 'renote'" class="fas fa-retweet"></i>
|
|
|
|
<i v-else-if="notification.type === 'reply'" class="fas fa-reply"></i>
|
|
|
|
<i v-else-if="notification.type === 'mention'" class="fas fa-at"></i>
|
|
|
|
<i v-else-if="notification.type === 'quote'" class="fas fa-quote-left"></i>
|
|
|
|
<i v-else-if="notification.type === 'pollVote'" class="fas fa-poll-h"></i>
|
2020-10-17 13:12:00 +02:00
|
|
|
<XReactionIcon v-else-if="notification.type === 'reaction'" :reaction="notification.reaction" :custom-emojis="notification.note.emojis" :no-style="true"/>
|
2020-01-29 20:37:25 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="tail">
|
|
|
|
<header>
|
2020-10-24 18:21:41 +02:00
|
|
|
<MkA v-if="notification.user" class="name" :to="userPage(notification.user)" v-user-preview="notification.user.id"><MkUserName :user="notification.user"/></MkA>
|
2020-03-28 10:07:41 +01:00
|
|
|
<span v-else>{{ notification.header }}</span>
|
2020-10-27 10:11:41 +01:00
|
|
|
<MkTime :time="notification.createdAt" v-if="withTime" class="time"/>
|
2020-01-29 20:37:25 +01:00
|
|
|
</header>
|
2020-10-24 18:21:41 +02:00
|
|
|
<MkA v-if="notification.type === 'reaction'" class="text" :to="notePage(notification.note)" :title="getNoteSummary(notification.note)">
|
2021-04-20 16:22:59 +02:00
|
|
|
<i class="fas fa-quote-left"></i>
|
2020-10-17 13:12:00 +02:00
|
|
|
<Mfm :text="getNoteSummary(notification.note)" :plain="true" :nowrap="!full" :custom-emojis="notification.note.emojis"/>
|
2021-04-20 16:22:59 +02:00
|
|
|
<i class="fas fa-quote-right"></i>
|
2020-10-24 18:21:41 +02:00
|
|
|
</MkA>
|
|
|
|
<MkA v-if="notification.type === 'renote'" class="text" :to="notePage(notification.note)" :title="getNoteSummary(notification.note.renote)">
|
2021-04-20 16:22:59 +02:00
|
|
|
<i class="fas fa-quote-left"></i>
|
2020-10-17 13:12:00 +02:00
|
|
|
<Mfm :text="getNoteSummary(notification.note.renote)" :plain="true" :nowrap="!full" :custom-emojis="notification.note.renote.emojis"/>
|
2021-04-20 16:22:59 +02:00
|
|
|
<i class="fas fa-quote-right"></i>
|
2020-10-24 18:21:41 +02:00
|
|
|
</MkA>
|
|
|
|
<MkA v-if="notification.type === 'reply'" class="text" :to="notePage(notification.note)" :title="getNoteSummary(notification.note)">
|
2020-10-17 13:12:00 +02:00
|
|
|
<Mfm :text="getNoteSummary(notification.note)" :plain="true" :nowrap="!full" :custom-emojis="notification.note.emojis"/>
|
2020-10-24 18:21:41 +02:00
|
|
|
</MkA>
|
|
|
|
<MkA v-if="notification.type === 'mention'" class="text" :to="notePage(notification.note)" :title="getNoteSummary(notification.note)">
|
2020-10-17 13:12:00 +02:00
|
|
|
<Mfm :text="getNoteSummary(notification.note)" :plain="true" :nowrap="!full" :custom-emojis="notification.note.emojis"/>
|
2020-10-24 18:21:41 +02:00
|
|
|
</MkA>
|
|
|
|
<MkA v-if="notification.type === 'quote'" class="text" :to="notePage(notification.note)" :title="getNoteSummary(notification.note)">
|
2020-10-17 13:12:00 +02:00
|
|
|
<Mfm :text="getNoteSummary(notification.note)" :plain="true" :nowrap="!full" :custom-emojis="notification.note.emojis"/>
|
2020-10-24 18:21:41 +02:00
|
|
|
</MkA>
|
|
|
|
<MkA v-if="notification.type === 'pollVote'" class="text" :to="notePage(notification.note)" :title="getNoteSummary(notification.note)">
|
2021-04-20 16:22:59 +02:00
|
|
|
<i class="fas fa-quote-left"></i>
|
2020-10-17 13:12:00 +02:00
|
|
|
<Mfm :text="getNoteSummary(notification.note)" :plain="true" :nowrap="!full" :custom-emojis="notification.note.emojis"/>
|
2021-04-20 16:22:59 +02:00
|
|
|
<i class="fas fa-quote-right"></i>
|
2020-10-24 18:21:41 +02:00
|
|
|
</MkA>
|
2020-12-26 02:47:36 +01:00
|
|
|
<span v-if="notification.type === 'follow'" class="text" style="opacity: 0.6;">{{ $ts.youGotNewFollower }}<div v-if="full"><MkFollowButton :user="notification.user" :full="true"/></div></span>
|
|
|
|
<span v-if="notification.type === 'followRequestAccepted'" class="text" style="opacity: 0.6;">{{ $ts.followRequestAccepted }}</span>
|
|
|
|
<span v-if="notification.type === 'receiveFollowRequest'" class="text" style="opacity: 0.6;">{{ $ts.receiveFollowRequest }}<div v-if="full && !followRequestDone"><button class="_textButton" @click="acceptFollowRequest()">{{ $ts.accept }}</button> | <button class="_textButton" @click="rejectFollowRequest()">{{ $ts.reject }}</button></div></span>
|
|
|
|
<span v-if="notification.type === 'groupInvited'" class="text" style="opacity: 0.6;">{{ $ts.groupInvited }}: <b>{{ notification.invitation.group.name }}</b><div v-if="full && !groupInviteDone"><button class="_textButton" @click="acceptGroupInvitation()">{{ $ts.accept }}</button> | <button class="_textButton" @click="rejectGroupInvitation()">{{ $ts.reject }}</button></div></span>
|
2020-03-28 10:07:41 +01:00
|
|
|
<span v-if="notification.type === 'app'" class="text">
|
2020-10-17 13:12:00 +02:00
|
|
|
<Mfm :text="notification.body" :nowrap="!full"/>
|
2020-03-28 10:07:41 +01:00
|
|
|
</span>
|
2020-01-29 20:37:25 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2021-07-26 04:12:06 +02:00
|
|
|
import { defineComponent, markRaw } from 'vue';
|
2021-03-23 09:43:07 +01:00
|
|
|
import { getNoteSummary } from '@/misc/get-note-summary';
|
2020-01-29 20:37:25 +01:00
|
|
|
import XReactionIcon from './reaction-icon.vue';
|
2020-01-31 03:35:18 +01:00
|
|
|
import MkFollowButton from './follow-button.vue';
|
2021-08-05 09:34:18 +02:00
|
|
|
import notePage from '@client/filters/note';
|
|
|
|
import { userPage } from '@client/filters/user';
|
2021-03-23 09:30:14 +01:00
|
|
|
import { i18n } from '@client/i18n';
|
|
|
|
import * as os from '@client/os';
|
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: {
|
2020-01-31 03:35:18 +01:00
|
|
|
XReactionIcon, MkFollowButton
|
2020-01-29 20:37:25 +01:00
|
|
|
},
|
|
|
|
props: {
|
|
|
|
notification: {
|
|
|
|
type: Object,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
withTime: {
|
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
|
|
|
default: false,
|
|
|
|
},
|
2020-01-31 03:38:52 +01:00
|
|
|
full: {
|
2020-01-29 20:37:25 +01:00
|
|
|
type: Boolean,
|
|
|
|
required: false,
|
2020-01-31 03:38:52 +01:00
|
|
|
default: false,
|
2020-01-29 20:37:25 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
2020-12-28 15:05:30 +01:00
|
|
|
getNoteSummary: (text: string) => getNoteSummary(text, i18n.locale),
|
2020-01-29 20:37:25 +01:00
|
|
|
followRequestDone: false,
|
2020-02-12 18:17:54 +01:00
|
|
|
groupInviteDone: false,
|
2020-05-26 08:00:15 +02:00
|
|
|
connection: null,
|
2020-05-31 07:57:22 +02:00
|
|
|
readObserver: null,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
2020-06-03 06:42:26 +02:00
|
|
|
if (!this.notification.isRead) {
|
2020-05-31 07:57:22 +02:00
|
|
|
this.readObserver = new IntersectionObserver((entries, observer) => {
|
2020-05-26 07:34:49 +02:00
|
|
|
if (!entries.some(entry => entry.isIntersecting)) return;
|
2020-10-17 13:12:00 +02:00
|
|
|
os.stream.send('readNotification', {
|
2020-05-26 07:34:49 +02:00
|
|
|
id: this.notification.id
|
|
|
|
});
|
|
|
|
entries.map(({ target }) => observer.unobserve(target));
|
2020-06-03 06:42:32 +02:00
|
|
|
});
|
2020-05-26 07:34:49 +02:00
|
|
|
|
2020-05-26 08:00:15 +02:00
|
|
|
this.readObserver.observe(this.$el);
|
2020-05-31 07:57:22 +02:00
|
|
|
|
2021-07-26 04:12:06 +02:00
|
|
|
this.connection = markRaw(os.stream.useChannel('main'));
|
2020-05-26 08:00:15 +02:00
|
|
|
this.connection.on('readAllNotifications', () => this.readObserver.unobserve(this.$el));
|
|
|
|
}
|
2020-05-26 07:34:49 +02:00
|
|
|
},
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
beforeUnmount() {
|
2020-05-26 08:04:44 +02:00
|
|
|
if (!this.notification.isRead) {
|
|
|
|
this.readObserver.unobserve(this.$el);
|
|
|
|
this.connection.dispose();
|
|
|
|
}
|
2020-05-26 07:34:49 +02:00
|
|
|
},
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
methods: {
|
|
|
|
acceptFollowRequest() {
|
|
|
|
this.followRequestDone = true;
|
2020-10-17 13:12:00 +02:00
|
|
|
os.api('following/requests/accept', { userId: this.notification.user.id });
|
2020-01-29 20:37:25 +01:00
|
|
|
},
|
|
|
|
rejectFollowRequest() {
|
|
|
|
this.followRequestDone = true;
|
2020-10-17 13:12:00 +02:00
|
|
|
os.api('following/requests/reject', { userId: this.notification.user.id });
|
2020-01-29 20:37:25 +01:00
|
|
|
},
|
2020-02-12 18:17:54 +01:00
|
|
|
acceptGroupInvitation() {
|
|
|
|
this.groupInviteDone = true;
|
2020-10-17 13:12:00 +02:00
|
|
|
os.apiWithDialog('users/groups/invitations/accept', { invitationId: this.notification.invitation.id });
|
2020-02-12 18:17:54 +01:00
|
|
|
},
|
|
|
|
rejectGroupInvitation() {
|
|
|
|
this.groupInviteDone = true;
|
2020-10-17 13:12:00 +02:00
|
|
|
os.api('users/groups/invitations/reject', { invitationId: this.notification.invitation.id });
|
2020-02-12 18:17:54 +01:00
|
|
|
},
|
2020-10-17 13:12:00 +02:00
|
|
|
notePage,
|
|
|
|
userPage
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2020-05-10 10:12:19 +02:00
|
|
|
.qglefbjs {
|
2020-01-29 20:37:25 +01:00
|
|
|
position: relative;
|
|
|
|
box-sizing: border-box;
|
2020-02-18 23:00:44 +01:00
|
|
|
padding: 24px 32px;
|
2020-01-29 20:37:25 +01:00
|
|
|
font-size: 0.9em;
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
display: flex;
|
2020-10-17 13:12:00 +02:00
|
|
|
contain: content;
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2020-02-18 22:41:30 +01:00
|
|
|
&.max-width_600px {
|
|
|
|
padding: 16px;
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.max-width_500px {
|
2020-01-29 20:37:25 +01:00
|
|
|
padding: 12px;
|
|
|
|
font-size: 0.8em;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .head {
|
|
|
|
position: sticky;
|
|
|
|
top: 0;
|
|
|
|
flex-shrink: 0;
|
|
|
|
width: 42px;
|
|
|
|
height: 42px;
|
|
|
|
margin-right: 8px;
|
|
|
|
|
2020-03-28 10:07:41 +01:00
|
|
|
> .icon {
|
2020-01-29 20:37:25 +01:00
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
border-radius: 6px;
|
|
|
|
}
|
|
|
|
|
2020-03-28 10:07:41 +01:00
|
|
|
> .sub-icon {
|
2020-01-29 20:37:25 +01:00
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
bottom: -2px;
|
|
|
|
right: -2px;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
border-radius: 100%;
|
|
|
|
background: var(--panel);
|
|
|
|
box-shadow: 0 0 0 3px var(--panel);
|
|
|
|
font-size: 12px;
|
|
|
|
pointer-events: none;
|
|
|
|
|
2020-03-28 10:07:41 +01:00
|
|
|
&:empty {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
> * {
|
|
|
|
color: #fff;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2020-02-12 18:17:54 +01:00
|
|
|
&.follow, &.followRequestAccepted, &.receiveFollowRequest, &.groupInvited {
|
2020-01-29 20:37:25 +01:00
|
|
|
padding: 3px;
|
|
|
|
background: #36aed2;
|
|
|
|
}
|
|
|
|
|
2020-02-16 12:21:05 +01:00
|
|
|
&.renote {
|
2020-01-29 20:37:25 +01:00
|
|
|
padding: 3px;
|
|
|
|
background: #36d298;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.quote {
|
|
|
|
padding: 3px;
|
|
|
|
background: #36d298;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.reply {
|
|
|
|
padding: 3px;
|
|
|
|
background: #007aff;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.mention {
|
|
|
|
padding: 3px;
|
|
|
|
background: #88a6b7;
|
|
|
|
}
|
2020-05-10 10:19:41 +02:00
|
|
|
|
|
|
|
&.pollVote {
|
|
|
|
padding: 3px;
|
|
|
|
background: #88a6b7;
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .tail {
|
|
|
|
flex: 1;
|
|
|
|
min-width: 0;
|
|
|
|
|
|
|
|
> header {
|
|
|
|
display: flex;
|
|
|
|
align-items: baseline;
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
> .name {
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
min-width: 0;
|
2021-03-02 14:57:16 +01:00
|
|
|
overflow: hidden;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
|
2020-10-27 10:11:41 +01:00
|
|
|
> .time {
|
2020-01-29 20:37:25 +01:00
|
|
|
margin-left: auto;
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .text {
|
|
|
|
white-space: nowrap;
|
2021-03-02 14:57:16 +01:00
|
|
|
overflow: hidden;
|
2020-01-29 20:37:25 +01:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
2021-04-20 16:22:59 +02:00
|
|
|
> i {
|
2020-01-29 20:37:25 +01:00
|
|
|
vertical-align: super;
|
|
|
|
font-size: 50%;
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
2021-04-20 16:22:59 +02:00
|
|
|
> i:first-child {
|
2020-01-29 20:37:25 +01:00
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
|
2021-04-20 16:22:59 +02:00
|
|
|
> i:last-child {
|
2020-01-29 20:37:25 +01:00
|
|
|
margin-left: 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|