egirlskey/packages/frontend/src/pages/notifications.vue

99 lines
2.6 KiB
Vue
Raw Normal View History

<!--
SPDX-FileCopyrightText: syuilo and other misskey contributors
SPDX-License-Identifier: AGPL-3.0-only
-->
2020-02-18 21:16:49 +00:00
<template>
<MkStickyContainer>
<template #header><MkPageHeader v-model:tab="tab" :actions="headerActions" :tabs="headerTabs"/></template>
2023-05-19 07:20:53 +00:00
<MkSpacer :contentMax="800">
<div v-if="tab === 'all'">
2023-09-29 02:29:54 +00:00
<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>
2020-02-18 21:16:49 +00:00
</template>
<script lang="ts" setup>
import { computed } from 'vue';
import XNotifications from '@/components/MkNotifications.vue';
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
let tab = $ref('all');
let includeTypes = $ref<string[] | null>(null);
2023-09-29 02:29:54 +00:00
const excludeTypes = $computed(() => includeTypes ? notificationTypes.filter(t => !includeTypes.includes(t)) : null);
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
function setFilter(ev) {
const typeItems = notificationTypes.map(t => ({
text: i18n.t(`_notification._types.${t}`),
active: includeTypes && includeTypes.includes(t),
action: () => {
includeTypes = [t];
},
}));
const items = includeTypes != null ? [{
2023-09-30 19:53:52 +00:00
icon: 'ph-x ph-bold ph-lg',
text: i18n.ts.clear,
action: () => {
includeTypes = null;
},
}, null, ...typeItems] : typeItems;
2022-01-28 02:53:12 +00:00
os.popupMenu(items, ev.currentTarget ?? ev.target);
}
const headerActions = $computed(() => [tab === 'all' ? {
text: i18n.ts.filter,
2023-09-30 22:46:42 +00:00
icon: 'ph-funnel ph-bold ph-lg',
highlighted: includeTypes != null,
handler: setFilter,
} : undefined, tab === 'all' ? {
text: i18n.ts.markAllAsRead,
2023-09-30 19:53:52 +00:00
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,
2023-09-30 19:53:52 +00:00
icon: 'ph-at ph-bold ph-lg',
}, {
key: 'directNotes',
title: i18n.ts.directNotes,
2023-09-30 19:53:52 +00:00
icon: 'ph-envelope ph-bold ph-lg',
}]);
definePageMetadata(computed(() => ({
title: i18n.ts.notifications,
icon: 'ph-bell ph-bold ph-lg',
})));
2020-02-18 21:16:49 +00:00
</script>