2023-07-26 22:31:52 -07:00
|
|
|
<!--
|
2024-02-13 07:50:11 -08:00
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
2023-07-26 22:31:52 -07:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-02-18 13:16:49 -08:00
|
|
|
<template>
|
2022-06-20 01:38:49 -07:00
|
|
|
<MkStickyContainer>
|
2022-06-22 00:29:21 -07:00
|
|
|
<template #header><MkPageHeader v-model:tab="tab" :actions="headerActions" :tabs="headerTabs"/></template>
|
2023-05-19 00:20:53 -07:00
|
|
|
<MkSpacer :contentMax="800">
|
2024-01-18 01:21:33 -08: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 01:38:49 -07:00
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
2020-02-18 13:16:49 -08:00
|
|
|
</template>
|
|
|
|
|
2022-01-14 06:23:08 -08:00
|
|
|
<script lang="ts" setup>
|
2023-12-06 21:42:09 -08:00
|
|
|
import { computed, ref } from 'vue';
|
2022-08-30 08:24:33 -07:00
|
|
|
import XNotifications from '@/components/MkNotifications.vue';
|
2023-02-21 18:00:34 -08:00
|
|
|
import MkNotes from '@/components/MkNotes.vue';
|
2024-01-18 01:21:33 -08:00
|
|
|
import MkHorizontalSwipe from '@/components/MkHorizontalSwipe.vue';
|
2023-09-19 00:37:43 -07:00
|
|
|
import * as os from '@/os.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
2023-09-28 19:29:54 -07:00
|
|
|
import { notificationTypes } from '@/const.js';
|
2020-02-18 13:16:49 -08:00
|
|
|
|
2023-12-06 21:42:09 -08: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-28 19:13:32 -07: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 13:16:49 -08:00
|
|
|
|
2022-01-14 06:23:08 -08:00
|
|
|
function setFilter(ev) {
|
|
|
|
const typeItems = notificationTypes.map(t => ({
|
2024-01-19 15:11:59 -08:00
|
|
|
text: i18n.ts._notification._types[t],
|
2023-12-06 21:42:09 -08:00
|
|
|
active: includeTypes.value && includeTypes.value.includes(t),
|
2022-01-14 06:23:08 -08:00
|
|
|
action: () => {
|
2023-12-06 21:42:09 -08:00
|
|
|
includeTypes.value = [t];
|
2022-06-20 01:38:49 -07:00
|
|
|
},
|
2022-01-14 06:23:08 -08:00
|
|
|
}));
|
2023-12-06 21:42:09 -08:00
|
|
|
const items = includeTypes.value != null ? [{
|
2022-12-19 02:01:30 -08:00
|
|
|
icon: 'ti ti-x',
|
2022-01-27 18:39:49 -08:00
|
|
|
text: i18n.ts.clear,
|
2022-01-14 06:23:08 -08:00
|
|
|
action: () => {
|
2023-12-06 21:42:09 -08:00
|
|
|
includeTypes.value = null;
|
2022-06-20 01:38:49 -07:00
|
|
|
},
|
2023-12-11 17:26:37 -08:00
|
|
|
}, { type: 'divider' }, ...typeItems] : typeItems;
|
2022-01-27 18:53:12 -08:00
|
|
|
os.popupMenu(items, ev.currentTarget ?? ev.target);
|
2022-01-14 06:23:08 -08:00
|
|
|
}
|
|
|
|
|
2023-12-06 21:42:09 -08:00
|
|
|
const headerActions = computed(() => [tab.value === 'all' ? {
|
2022-06-20 01:38:49 -07:00
|
|
|
text: i18n.ts.filter,
|
2022-12-19 02:01:30 -08:00
|
|
|
icon: 'ti ti-filter',
|
2023-12-06 21:42:09 -08:00
|
|
|
highlighted: includeTypes.value != null,
|
2022-06-20 01:38:49 -07:00
|
|
|
handler: setFilter,
|
2023-12-06 21:42:09 -08:00
|
|
|
} : undefined, tab.value === 'all' ? {
|
2022-06-20 01:38:49 -07:00
|
|
|
text: i18n.ts.markAllAsRead,
|
2022-12-19 02:01:30 -08:00
|
|
|
icon: 'ti ti-check',
|
2022-06-20 01:38:49 -07:00
|
|
|
handler: () => {
|
|
|
|
os.apiWithDialog('notifications/mark-all-as-read');
|
|
|
|
},
|
2022-06-28 19:13:32 -07:00
|
|
|
} : undefined].filter(x => x !== undefined));
|
2022-06-20 01:38:49 -07:00
|
|
|
|
2023-12-06 21:42:09 -08:00
|
|
|
const headerTabs = computed(() => [{
|
2022-06-22 00:29:21 -07:00
|
|
|
key: 'all',
|
2022-06-20 01:38:49 -07:00
|
|
|
title: i18n.ts.all,
|
2023-03-15 19:56:20 -07:00
|
|
|
icon: 'ti ti-point',
|
2022-06-28 19:13:32 -07:00
|
|
|
}, {
|
|
|
|
key: 'mentions',
|
|
|
|
title: i18n.ts.mentions,
|
2022-12-19 02:01:30 -08:00
|
|
|
icon: 'ti ti-at',
|
2022-06-28 19:13:32 -07:00
|
|
|
}, {
|
|
|
|
key: 'directNotes',
|
|
|
|
title: i18n.ts.directNotes,
|
2022-12-19 02:01:30 -08:00
|
|
|
icon: 'ti ti-mail',
|
2022-06-20 01:38:49 -07:00
|
|
|
}]);
|
|
|
|
|
|
|
|
definePageMetadata(computed(() => ({
|
|
|
|
title: i18n.ts.notifications,
|
2022-12-19 02:01:30 -08:00
|
|
|
icon: 'ti ti-bell',
|
2022-06-20 01:38:49 -07:00
|
|
|
})));
|
2020-02-18 13:16:49 -08:00
|
|
|
</script>
|
2024-01-18 01:21:33 -08:00
|
|
|
|
|
|
|
<style module lang="scss">
|
|
|
|
.notifications {
|
|
|
|
border-radius: var(--radius);
|
|
|
|
overflow: clip;
|
|
|
|
}
|
|
|
|
</style>
|