2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2022-01-09 13:35:35 +01:00
|
|
|
<MkPagination ref="pagingComponent" :pagination="pagination">
|
|
|
|
<template #empty>
|
|
|
|
<div class="_fullinfo">
|
|
|
|
<img src="https://xn--931a.moe/assets/info.jpg" class="_ghost"/>
|
|
|
|
<div>{{ $ts.noNotifications }}</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<template #default="{ items: notifications }">
|
|
|
|
<XList v-slot="{ item: notification }" class="elsfgstc" :items="notifications" :no-gap="true">
|
2022-01-14 02:25:51 +01:00
|
|
|
<XNote v-if="['reply', 'quote', 'mention'].includes(notification.type)" :key="notification.id" :note="notification.note"/>
|
2021-11-19 11:36:12 +01:00
|
|
|
<XNotification v-else :key="notification.id" :notification="notification" :with-time="true" :full="true" class="_panel notification"/>
|
2021-04-16 17:12:50 +02:00
|
|
|
</XList>
|
2022-01-09 13:35:35 +01:00
|
|
|
</template>
|
|
|
|
</MkPagination>
|
2020-01-29 20:37:25 +01:00
|
|
|
</template>
|
|
|
|
|
2022-01-09 13:35:35 +01:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { defineComponent, PropType, markRaw, onUnmounted, onMounted, computed, ref } from 'vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import { notificationTypes } from 'misskey-js';
|
2022-01-09 13:35:35 +01:00
|
|
|
import MkPagination from '@/components/ui/pagination.vue';
|
|
|
|
import { Paging } from '@/components/ui/pagination.vue';
|
|
|
|
import XNotification from '@/components/notification.vue';
|
|
|
|
import XList from '@/components/date-separated-list.vue';
|
|
|
|
import XNote from '@/components/note.vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import * as os from '@/os';
|
2021-12-29 14:13:09 +01:00
|
|
|
import { stream } from '@/stream';
|
2022-01-09 13:35:35 +01:00
|
|
|
import { $i } from '@/account';
|
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
includeTypes?: PropType<typeof notificationTypes[number][]>;
|
|
|
|
unreadOnly?: boolean;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const pagingComponent = ref<InstanceType<typeof MkPagination>>();
|
|
|
|
|
|
|
|
const allIncludeTypes = computed(() => props.includeTypes ?? notificationTypes.filter(x => !$i.mutingNotificationTypes.includes(x)));
|
|
|
|
|
|
|
|
const pagination: Paging = {
|
|
|
|
endpoint: 'i/notifications' as const,
|
|
|
|
limit: 10,
|
|
|
|
params: computed(() => ({
|
|
|
|
includeTypes: allIncludeTypes.value || undefined,
|
|
|
|
unreadOnly: props.unreadOnly,
|
|
|
|
})),
|
|
|
|
};
|
|
|
|
|
|
|
|
const onNotification = (notification) => {
|
|
|
|
const isMuted = !allIncludeTypes.value.includes(notification.type);
|
|
|
|
if (isMuted || document.visibilityState === 'visible') {
|
|
|
|
stream.send('readNotification', {
|
|
|
|
id: notification.id
|
|
|
|
});
|
|
|
|
}
|
2020-07-29 16:03:08 +02:00
|
|
|
|
2022-01-09 13:35:35 +01:00
|
|
|
if (!isMuted) {
|
|
|
|
pagingComponent.value.prepend({
|
|
|
|
...notification,
|
|
|
|
isRead: document.visibilityState === 'visible'
|
|
|
|
});
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
2022-01-09 13:35:35 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
const connection = stream.useChannel('main');
|
|
|
|
connection.on('notification', onNotification);
|
|
|
|
onUnmounted(() => {
|
|
|
|
connection.dispose();
|
|
|
|
});
|
2020-01-29 20:37:25 +01:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2021-08-21 10:40:15 +02:00
|
|
|
.elsfgstc {
|
|
|
|
background: var(--panel);
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
</style>
|