forked from mirror/misskey
![mattyatea](/assets/img/avatar_default.png)
# Conflicts: # README.md # locales/en-US.yml # locales/index.d.ts # locales/ja-JP.yml # package.json # packages/backend/src/core/CustomEmojiService.ts # packages/backend/src/core/NoteCreateService.ts # packages/backend/src/core/RoleService.ts # packages/backend/src/core/activitypub/models/ApNoteService.ts # packages/backend/src/core/activitypub/models/ApPersonService.ts # packages/backend/src/server/api/endpoints/admin/emoji/update.ts # packages/frontend/src/components/MkDialog.vue # packages/frontend/src/components/MkEmojiPicker.section.vue # packages/frontend/src/components/MkEmojiPicker.vue # packages/frontend/src/components/global/MkCustomEmoji.vue # packages/frontend/src/const.ts # packages/frontend/src/os.ts # packages/frontend/src/pages/admin/roles.editor.vue # packages/frontend/src/pages/admin/roles.vue # packages/frontend/src/pages/admin/security.vue # pnpm-lock.yaml
107 lines
2.8 KiB
Vue
107 lines
2.8 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<MkStickyContainer>
|
|
<template #header><MkPageHeader v-model:tab="tab" :tabs="headerTabs" :hide="true" :actions="headerActions"/></template>
|
|
<MkSpacer :contentMax="800">
|
|
<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>
|
|
</MkSpacer>
|
|
</MkStickyContainer>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { computed, onMounted, ref } from 'vue';
|
|
import XNotifications from '@/components/MkNotifications.vue';
|
|
import MkNotes from '@/components/MkNotes.vue';
|
|
import MkHorizontalSwipe from '@/components/MkHorizontalSwipe.vue';
|
|
import * as os from '@/os.js';
|
|
import { i18n } from '@/i18n.js';
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
|
import { notificationTypes } from '@/const.js';
|
|
import { misskeyApi } from '@/scripts/misskey-api.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.ts._notification._types[t],
|
|
active: (includeTypes.value && includeTypes.value.includes(t)) ?? false,
|
|
action: () => {
|
|
includeTypes.value = [t];
|
|
},
|
|
}));
|
|
const items = includeTypes.value != null ? [{
|
|
icon: 'ti ti-x',
|
|
text: i18n.ts.clear,
|
|
action: () => {
|
|
includeTypes.value = null;
|
|
},
|
|
}, { type: 'divider' as const }, ...typeItems] : typeItems;
|
|
os.popupMenu(items, ev.currentTarget ?? ev.target);
|
|
}
|
|
|
|
const headerActions = computed(() => [{
|
|
text: i18n.ts.filter,
|
|
icon: 'ti ti-filter',
|
|
highlighted: includeTypes.value != null,
|
|
handler: setFilter,
|
|
}].filter(x => x !== undefined));
|
|
|
|
const headerTabs = computed(() => [{
|
|
key: 'all',
|
|
title: i18n.ts.all,
|
|
icon: 'ti ti-point',
|
|
}, {
|
|
key: 'mentions',
|
|
title: i18n.ts.mentions,
|
|
icon: 'ti ti-at',
|
|
}, {
|
|
key: 'directNotes',
|
|
title: i18n.ts.directNotes,
|
|
icon: 'ti ti-mail',
|
|
}]);
|
|
|
|
definePageMetadata(() => ({
|
|
title: i18n.ts.notifications,
|
|
icon: 'ti ti-bell',
|
|
}));
|
|
onMounted(() => {
|
|
misskeyApi('notifications/mark-all-as-read');
|
|
});
|
|
</script>
|
|
|
|
<style module lang="scss">
|
|
.notifications {
|
|
border-radius: var(--radius);
|
|
overflow: clip;
|
|
}
|
|
</style>
|