2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
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>
|
2023-05-19 07:20:53 +00:00
|
|
|
<MkSpacer :contentMax="800">
|
2023-04-04 05:06:57 +00:00
|
|
|
<div v-if="tab === 'all'">
|
2023-09-29 02:29:54 +00:00
|
|
|
<XNotifications class="notifications" :excludeTypes="excludeTypes"/>
|
2022-06-29 02:13:32 +00:00
|
|
|
</div>
|
|
|
|
<div v-else-if="tab === 'mentions'">
|
2023-02-22 02:00:34 +00:00
|
|
|
<MkNotes :pagination="mentionsPagination"/>
|
2022-06-29 02:13:32 +00:00
|
|
|
</div>
|
|
|
|
<div v-else-if="tab === 'directNotes'">
|
2023-02-22 02:00:34 +00:00
|
|
|
<MkNotes :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>
|
2023-12-07 05:42:09 +00:00
|
|
|
import { computed, ref } from 'vue';
|
2022-08-30 15:24:33 +00:00
|
|
|
import XNotifications from '@/components/MkNotifications.vue';
|
2023-02-22 02:00:34 +00:00
|
|
|
import MkNotes from '@/components/MkNotes.vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import * as os from '@/os.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
2023-09-29 02:29:54 +00:00
|
|
|
import { notificationTypes } from '@/const.js';
|
2020-02-18 21:16:49 +00:00
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const tab = ref('all');
|
|
|
|
const includeTypes = ref<string[] | null>(null);
|
|
|
|
const excludeTypes = computed(() => includeTypes.value ? notificationTypes.filter(t => !includeTypes.value.includes(t)) : null);
|
2022-06-29 02:13:32 +00: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 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}`),
|
2023-12-07 05:42:09 +00:00
|
|
|
active: includeTypes.value && includeTypes.value.includes(t),
|
2022-01-14 14:23:08 +00:00
|
|
|
action: () => {
|
2023-12-07 05:42:09 +00:00
|
|
|
includeTypes.value = [t];
|
2022-06-20 08:38:49 +00:00
|
|
|
},
|
2022-01-14 14:23:08 +00:00
|
|
|
}));
|
2023-12-07 05:42:09 +00:00
|
|
|
const items = includeTypes.value != null ? [{
|
2023-09-30 19:53:52 +00:00
|
|
|
icon: 'ph-x ph-bold ph-lg',
|
2022-01-28 02:39:49 +00:00
|
|
|
text: i18n.ts.clear,
|
2022-01-14 14:23:08 +00:00
|
|
|
action: () => {
|
2023-12-07 05:42:09 +00:00
|
|
|
includeTypes.value = null;
|
2022-06-20 08:38:49 +00:00
|
|
|
},
|
2023-12-12 01:26:37 +00:00
|
|
|
}, { type: 'divider' }, ...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
|
|
|
}
|
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const headerActions = computed(() => [tab.value === 'all' ? {
|
2022-06-20 08:38:49 +00:00
|
|
|
text: i18n.ts.filter,
|
2023-09-30 22:46:42 +00:00
|
|
|
icon: 'ph-funnel ph-bold ph-lg',
|
2023-12-07 05:42:09 +00:00
|
|
|
highlighted: includeTypes.value != null,
|
2022-06-20 08:38:49 +00:00
|
|
|
handler: setFilter,
|
2023-12-07 05:42:09 +00:00
|
|
|
} : undefined, tab.value === 'all' ? {
|
2022-06-20 08:38:49 +00:00
|
|
|
text: i18n.ts.markAllAsRead,
|
2023-09-30 19:53:52 +00:00
|
|
|
icon: 'ph-check ph-bold ph-lg',
|
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
|
|
|
|
2023-12-07 05:42:09 +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,
|
2023-11-03 22:20:53 +00:00
|
|
|
icon: 'ph-circle ph-bold ph-lg',
|
2022-06-29 02:13:32 +00:00
|
|
|
}, {
|
|
|
|
key: 'mentions',
|
|
|
|
title: i18n.ts.mentions,
|
2023-09-30 19:53:52 +00:00
|
|
|
icon: 'ph-at ph-bold ph-lg',
|
2022-06-29 02:13:32 +00:00
|
|
|
}, {
|
|
|
|
key: 'directNotes',
|
|
|
|
title: i18n.ts.directNotes,
|
2023-09-30 19:53:52 +00:00
|
|
|
icon: 'ph-envelope ph-bold ph-lg',
|
2022-06-20 08:38:49 +00:00
|
|
|
}]);
|
|
|
|
|
|
|
|
definePageMetadata(computed(() => ({
|
|
|
|
title: i18n.ts.notifications,
|
2023-11-03 22:20:53 +00:00
|
|
|
icon: 'ph-bell ph-bold ph-lg',
|
2022-06-20 08:38:49 +00:00
|
|
|
})));
|
2020-02-18 21:16:49 +00:00
|
|
|
</script>
|