2020-02-18 22:16:49 +01:00
|
|
|
<template>
|
2022-06-20 10:38:49 +02:00
|
|
|
<MkStickyContainer>
|
2022-08-28 00:49:10 +02:00
|
|
|
<template #header>
|
|
|
|
<MkPageHeader
|
|
|
|
v-model:tab="tab"
|
|
|
|
:actions="headerActions"
|
|
|
|
:tabs="headerTabs"
|
|
|
|
:display-my-avatar="true"
|
|
|
|
/>
|
|
|
|
</template>
|
2022-06-20 10:38:49 +02:00
|
|
|
<MkSpacer :content-max="800">
|
2022-09-08 00:49:07 +02:00
|
|
|
<swiper
|
|
|
|
:modules="[Virtual]"
|
|
|
|
:space-between="20"
|
|
|
|
:virtual="true"
|
|
|
|
@swiper="setSwiperRef"
|
|
|
|
>
|
|
|
|
<swiper-slide>
|
|
|
|
<XNotifications class="notifications" :include-types="includeTypes" :unread-only="false"/>
|
|
|
|
</swiper-slide>
|
|
|
|
<swiper-slide>
|
|
|
|
<XNotifications class="notifications" :include-types="includeTypes" :unread-only="true"/>
|
|
|
|
</swiper-slide>
|
|
|
|
<swiper-slide>
|
|
|
|
<XNotes :pagination="mentionsPagination"/>
|
|
|
|
</swiper-slide>
|
|
|
|
<swiper-slide>
|
|
|
|
<XNotes :pagination="directNotesPagination"/>
|
|
|
|
</swiper-slide>
|
|
|
|
</swiper>
|
2022-06-20 10:38:49 +02:00
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
2020-02-18 22:16:49 +01:00
|
|
|
</template>
|
|
|
|
|
2022-01-14 15:23:08 +01:00
|
|
|
<script lang="ts" setup>
|
2022-08-20 09:02:15 +02:00
|
|
|
import { computed, ref } from 'vue';
|
2022-06-20 10:38:49 +02:00
|
|
|
import { notificationTypes } from 'misskey-js';
|
2022-09-08 00:49:07 +02:00
|
|
|
import { Virtual } from 'swiper';
|
|
|
|
import { Swiper, SwiperSlide } from 'swiper/vue';
|
2022-08-30 17:24:33 +02:00
|
|
|
import XNotifications from '@/components/MkNotifications.vue';
|
|
|
|
import XNotes from '@/components/MkNotes.vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import * as os from '@/os';
|
2022-01-14 15:23:08 +01:00
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 10:38:49 +02:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2022-08-20 09:02:15 +02:00
|
|
|
import { deviceKind } from '@/scripts/device-kind';
|
2022-09-08 00:49:07 +02:00
|
|
|
import 'swiper/scss';
|
|
|
|
import 'swiper/scss/virtual';
|
2022-01-14 15:23:08 +01:00
|
|
|
let includeTypes = $ref<string[] | null>(null);
|
2022-06-29 04:13:32 +02:00
|
|
|
let unreadOnly = $computed(() => tab === 'unread');
|
2022-08-16 09:10:47 +02:00
|
|
|
os.api('notifications/mark-all-as-read');
|
2022-06-29 04:13:32 +02:00
|
|
|
|
2022-09-08 01:11:00 +02:00
|
|
|
const tab = $computed({
|
|
|
|
get: () => 'all',
|
|
|
|
set: (x) => {
|
|
|
|
syncSlide(['all', 'unread', 'mentions', 'directNotes'].indexOf(x));
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2022-08-20 09:02:15 +02:00
|
|
|
const MOBILE_THRESHOLD = 500;
|
|
|
|
const isMobile = ref(
|
2022-09-08 00:49:07 +02:00
|
|
|
deviceKind === 'smartphone' || window.innerWidth <= MOBILE_THRESHOLD,
|
2022-08-20 09:02:15 +02:00
|
|
|
);
|
|
|
|
window.addEventListener('resize', () => {
|
|
|
|
isMobile.value =
|
|
|
|
deviceKind === 'smartphone' || window.innerWidth <= MOBILE_THRESHOLD;
|
|
|
|
});
|
|
|
|
|
2022-06-29 04:13:32 +02:00
|
|
|
const mentionsPagination = {
|
|
|
|
endpoint: 'notes/mentions' as const,
|
|
|
|
limit: 10,
|
|
|
|
};
|
|
|
|
|
|
|
|
const directNotesPagination = {
|
|
|
|
endpoint: 'notes/mentions' as const,
|
|
|
|
limit: 10,
|
|
|
|
params: {
|
|
|
|
visibility: 'specified',
|
|
|
|
},
|
|
|
|
};
|
2020-02-18 22:16:49 +01:00
|
|
|
|
2022-01-14 15:23:08 +01:00
|
|
|
function setFilter(ev) {
|
|
|
|
const typeItems = notificationTypes.map(t => ({
|
|
|
|
text: i18n.t(`_notification._types.${t}`),
|
|
|
|
active: includeTypes && includeTypes.includes(t),
|
|
|
|
action: () => {
|
|
|
|
includeTypes = [t];
|
2022-06-20 10:38:49 +02:00
|
|
|
},
|
2022-01-14 15:23:08 +01:00
|
|
|
}));
|
|
|
|
const items = includeTypes != null ? [{
|
|
|
|
icon: 'fas fa-times',
|
2022-01-28 03:39:49 +01:00
|
|
|
text: i18n.ts.clear,
|
2022-01-14 15:23:08 +01:00
|
|
|
action: () => {
|
|
|
|
includeTypes = null;
|
2022-06-20 10:38:49 +02:00
|
|
|
},
|
2022-01-14 15:23:08 +01:00
|
|
|
}, null, ...typeItems] : typeItems;
|
2022-01-28 03:53:12 +01:00
|
|
|
os.popupMenu(items, ev.currentTarget ?? ev.target);
|
2022-01-14 15:23:08 +01:00
|
|
|
}
|
|
|
|
|
2022-06-29 04:13:32 +02:00
|
|
|
const headerActions = $computed(() => [tab === 'all' ? {
|
2022-06-20 10:38:49 +02:00
|
|
|
text: i18n.ts.filter,
|
|
|
|
icon: 'fas fa-filter',
|
|
|
|
highlighted: includeTypes != null,
|
|
|
|
handler: setFilter,
|
2022-06-29 04:13:32 +02:00
|
|
|
} : undefined, tab === 'all' ? {
|
2022-06-20 10:38:49 +02:00
|
|
|
text: i18n.ts.markAllAsRead,
|
|
|
|
icon: 'fas fa-check',
|
|
|
|
handler: () => {
|
|
|
|
os.apiWithDialog('notifications/mark-all-as-read');
|
|
|
|
},
|
2022-06-29 04:13:32 +02:00
|
|
|
} : undefined].filter(x => x !== undefined));
|
2022-06-20 10:38:49 +02:00
|
|
|
|
|
|
|
const headerTabs = $computed(() => [{
|
2022-06-22 09:29:21 +02:00
|
|
|
key: 'all',
|
2022-06-20 10:38:49 +02:00
|
|
|
title: i18n.ts.all,
|
2022-09-08 00:09:23 +02:00
|
|
|
icon: 'fas fa-bell',
|
|
|
|
iconOnly: true,
|
2022-06-20 10:38:49 +02:00
|
|
|
}, {
|
2022-06-22 09:29:21 +02:00
|
|
|
key: 'unread',
|
2022-06-20 10:38:49 +02:00
|
|
|
title: i18n.ts.unread,
|
2022-09-08 00:09:23 +02:00
|
|
|
icon: 'fas fa-exclamation',
|
|
|
|
iconOnly: true,
|
2022-06-29 04:13:32 +02:00
|
|
|
}, {
|
|
|
|
key: 'mentions',
|
|
|
|
title: i18n.ts.mentions,
|
|
|
|
icon: 'fas fa-at',
|
2022-09-08 00:09:23 +02:00
|
|
|
iconOnly: true,
|
2022-06-29 04:13:32 +02:00
|
|
|
}, {
|
|
|
|
key: 'directNotes',
|
|
|
|
title: i18n.ts.directNotes,
|
|
|
|
icon: 'fas fa-envelope',
|
2022-09-08 00:09:23 +02:00
|
|
|
iconOnly: true,
|
2022-06-20 10:38:49 +02:00
|
|
|
}]);
|
|
|
|
|
2022-09-08 00:49:07 +02:00
|
|
|
let swiperRef = null;
|
|
|
|
|
|
|
|
function setSwiperRef(swiper) {
|
|
|
|
swiperRef = swiper;
|
|
|
|
}
|
|
|
|
|
|
|
|
function syncSlide(index) {
|
|
|
|
swiperRef.slideTo(index);
|
|
|
|
}
|
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
definePageMetadata(computed(() => ({
|
|
|
|
title: i18n.ts.notifications,
|
|
|
|
icon: 'fas fa-bell',
|
|
|
|
})));
|
2020-02-18 22:16:49 +01:00
|
|
|
</script>
|