98 lines
2.6 KiB
Vue
98 lines
2.6 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<MkStickyContainer>
|
|
<template #header><MkPageHeader v-model:tab="tab" :actions="headerActions" :tabs="headerTabs"/></template>
|
|
<MkSpacer :contentMax="800">
|
|
<div v-if="tab === 'all'">
|
|
<XNotifications class="notifications" :excludeTypes="excludeTypes"/>
|
|
</div>
|
|
<div v-else-if="tab === 'mentions'">
|
|
<MkNotes :pagination="mentionsPagination"/>
|
|
</div>
|
|
<div v-else-if="tab === 'directNotes'">
|
|
<MkNotes :pagination="directNotesPagination"/>
|
|
</div>
|
|
</MkSpacer>
|
|
</MkStickyContainer>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { computed, ref } from 'vue';
|
|
import XNotifications from '@/components/MkNotifications.vue';
|
|
import MkNotes from '@/components/MkNotes.vue';
|
|
import * as os from '@/os.js';
|
|
import { i18n } from '@/i18n.js';
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
|
import { notificationTypes } from '@/const.js';
|
|
|
|
const tab = ref('all');
|
|
const includeTypes = ref<string[] | null>(null);
|
|
const excludeTypes = computed(() => includeTypes.value ? notificationTypes.filter(t => !includeTypes.value.includes(t)) : null);
|
|
|
|
const mentionsPagination = {
|
|
endpoint: 'notes/mentions' as const,
|
|
limit: 10,
|
|
};
|
|
|
|
const directNotesPagination = {
|
|
endpoint: 'notes/mentions' as const,
|
|
limit: 10,
|
|
params: {
|
|
visibility: 'specified',
|
|
},
|
|
};
|
|
|
|
function setFilter(ev) {
|
|
const typeItems = notificationTypes.map(t => ({
|
|
text: i18n.t(`_notification._types.${t}`),
|
|
active: includeTypes.value && includeTypes.value.includes(t),
|
|
action: () => {
|
|
includeTypes.value = [t];
|
|
},
|
|
}));
|
|
const items = includeTypes.value != null ? [{
|
|
icon: 'ph-x ph-bold ph-lg',
|
|
text: i18n.ts.clear,
|
|
action: () => {
|
|
includeTypes.value = null;
|
|
},
|
|
}, { type: 'divider' }, ...typeItems] : typeItems;
|
|
os.popupMenu(items, ev.currentTarget ?? ev.target);
|
|
}
|
|
|
|
const headerActions = computed(() => [tab.value === 'all' ? {
|
|
text: i18n.ts.filter,
|
|
icon: 'ph-funnel ph-bold ph-lg',
|
|
highlighted: includeTypes.value != null,
|
|
handler: setFilter,
|
|
} : undefined, tab.value === 'all' ? {
|
|
text: i18n.ts.markAllAsRead,
|
|
icon: 'ph-check ph-bold ph-lg',
|
|
handler: () => {
|
|
os.apiWithDialog('notifications/mark-all-as-read');
|
|
},
|
|
} : undefined].filter(x => x !== undefined));
|
|
|
|
const headerTabs = computed(() => [{
|
|
key: 'all',
|
|
title: i18n.ts.all,
|
|
icon: 'ph-circle ph-bold ph-lg',
|
|
}, {
|
|
key: 'mentions',
|
|
title: i18n.ts.mentions,
|
|
icon: 'ph-at ph-bold ph-lg',
|
|
}, {
|
|
key: 'directNotes',
|
|
title: i18n.ts.directNotes,
|
|
icon: 'ph-envelope ph-bold ph-lg',
|
|
}]);
|
|
|
|
definePageMetadata(computed(() => ({
|
|
title: i18n.ts.notifications,
|
|
icon: 'ph-bell ph-bold ph-lg',
|
|
})));
|
|
</script>
|