2020-02-18 21:16:49 +00:00
|
|
|
<template>
|
2022-06-20 08:38:49 +00:00
|
|
|
<MkStickyContainer>
|
2022-06-22 07:29:21 +00:00
|
|
|
<template #header><MkPageHeader v-model:tab="tab" :actions="headerActions" :tabs="headerTabs"/></template>
|
2022-06-20 08:38:49 +00:00
|
|
|
<MkSpacer :content-max="800">
|
2022-06-29 02:13:32 +00:00
|
|
|
<div v-if="tab === 'all' || tab === 'unread'">
|
|
|
|
<XNotifications class="notifications" :include-types="includeTypes" :unread-only="unreadOnly"/>
|
|
|
|
</div>
|
|
|
|
<div v-else-if="tab === 'mentions'">
|
|
|
|
<XNotes :pagination="mentionsPagination"/>
|
|
|
|
</div>
|
|
|
|
<div v-else-if="tab === 'directNotes'">
|
|
|
|
<XNotes :pagination="directNotesPagination"/>
|
2022-06-20 08:38:49 +00:00
|
|
|
</div>
|
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
2020-02-18 21:16:49 +00:00
|
|
|
</template>
|
|
|
|
|
2022-01-14 14:23:08 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { computed } from 'vue';
|
2022-06-20 08:38:49 +00:00
|
|
|
import { notificationTypes } from 'misskey-js';
|
2022-08-30 15:24:33 +00:00
|
|
|
import XNotifications from '@/components/MkNotifications.vue';
|
|
|
|
import XNotes from '@/components/MkNotes.vue';
|
2021-11-11 17:02:25 +00:00
|
|
|
import * as os from '@/os';
|
2022-01-14 14:23:08 +00:00
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 08:38:49 +00:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2020-02-18 21:16:49 +00:00
|
|
|
|
2022-01-14 14:23:08 +00:00
|
|
|
let tab = $ref('all');
|
|
|
|
let includeTypes = $ref<string[] | null>(null);
|
2022-06-29 02:13:32 +00:00
|
|
|
let unreadOnly = $computed(() => tab === 'unread');
|
|
|
|
|
|
|
|
const mentionsPagination = {
|
|
|
|
endpoint: 'notes/mentions' as const,
|
|
|
|
limit: 10,
|
|
|
|
};
|
|
|
|
|
|
|
|
const directNotesPagination = {
|
|
|
|
endpoint: 'notes/mentions' as const,
|
|
|
|
limit: 10,
|
|
|
|
params: {
|
|
|
|
visibility: 'specified',
|
|
|
|
},
|
|
|
|
};
|
2020-02-18 21:16:49 +00:00
|
|
|
|
2022-01-14 14:23:08 +00: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 08:38:49 +00:00
|
|
|
},
|
2022-01-14 14:23:08 +00:00
|
|
|
}));
|
|
|
|
const items = includeTypes != null ? [{
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-x',
|
2022-01-28 02:39:49 +00:00
|
|
|
text: i18n.ts.clear,
|
2022-01-14 14:23:08 +00:00
|
|
|
action: () => {
|
|
|
|
includeTypes = null;
|
2022-06-20 08:38:49 +00:00
|
|
|
},
|
2022-01-14 14:23:08 +00:00
|
|
|
}, null, ...typeItems] : typeItems;
|
2022-01-28 02:53:12 +00:00
|
|
|
os.popupMenu(items, ev.currentTarget ?? ev.target);
|
2022-01-14 14:23:08 +00:00
|
|
|
}
|
|
|
|
|
2022-06-29 02:13:32 +00:00
|
|
|
const headerActions = $computed(() => [tab === 'all' ? {
|
2022-06-20 08:38:49 +00:00
|
|
|
text: i18n.ts.filter,
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-filter',
|
2022-06-20 08:38:49 +00:00
|
|
|
highlighted: includeTypes != null,
|
|
|
|
handler: setFilter,
|
2022-06-29 02:13:32 +00:00
|
|
|
} : undefined, tab === 'all' ? {
|
2022-06-20 08:38:49 +00:00
|
|
|
text: i18n.ts.markAllAsRead,
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-check',
|
2022-06-20 08:38:49 +00:00
|
|
|
handler: () => {
|
|
|
|
os.apiWithDialog('notifications/mark-all-as-read');
|
|
|
|
},
|
2022-06-29 02:13:32 +00:00
|
|
|
} : undefined].filter(x => x !== undefined));
|
2022-06-20 08:38:49 +00:00
|
|
|
|
|
|
|
const headerTabs = $computed(() => [{
|
2022-06-22 07:29:21 +00:00
|
|
|
key: 'all',
|
2022-06-20 08:38:49 +00:00
|
|
|
title: i18n.ts.all,
|
|
|
|
}, {
|
2022-06-22 07:29:21 +00:00
|
|
|
key: 'unread',
|
2022-06-20 08:38:49 +00:00
|
|
|
title: i18n.ts.unread,
|
2022-06-29 02:13:32 +00:00
|
|
|
}, {
|
|
|
|
key: 'mentions',
|
|
|
|
title: i18n.ts.mentions,
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-at',
|
2022-06-29 02:13:32 +00:00
|
|
|
}, {
|
|
|
|
key: 'directNotes',
|
|
|
|
title: i18n.ts.directNotes,
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-mail',
|
2022-06-20 08:38:49 +00:00
|
|
|
}]);
|
|
|
|
|
|
|
|
definePageMetadata(computed(() => ({
|
|
|
|
title: i18n.ts.notifications,
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-bell',
|
2022-06-20 08:38:49 +00:00
|
|
|
})));
|
2020-02-18 21:16:49 +00:00
|
|
|
</script>
|