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