2020-02-18 23:16:49 +02:00
|
|
|
<template>
|
2022-06-20 11:38:49 +03:00
|
|
|
<MkStickyContainer>
|
|
|
|
<template #header><MkPageHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
|
|
|
<MkSpacer :content-max="800">
|
|
|
|
<div class="clupoqwt">
|
|
|
|
<XNotifications class="notifications" :include-types="includeTypes" :unread-only="tab === 'unread'"/>
|
|
|
|
</div>
|
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
2020-02-18 23:16:49 +02:00
|
|
|
</template>
|
|
|
|
|
2022-01-14 16:23:08 +02:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { computed } from 'vue';
|
2022-06-20 11:38:49 +03:00
|
|
|
import { notificationTypes } from 'misskey-js';
|
2021-11-11 19:02:25 +02:00
|
|
|
import XNotifications from '@/components/notifications.vue';
|
|
|
|
import * as os from '@/os';
|
2022-01-14 16:23:08 +02:00
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 11:38:49 +03:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2020-02-18 23:16:49 +02:00
|
|
|
|
2022-01-14 16:23:08 +02:00
|
|
|
let tab = $ref('all');
|
|
|
|
let includeTypes = $ref<string[] | null>(null);
|
2020-02-18 23:16:49 +02:00
|
|
|
|
2022-01-14 16:23:08 +02:00
|
|
|
function setFilter(ev) {
|
|
|
|
const typeItems = notificationTypes.map(t => ({
|
|
|
|
text: i18n.t(`_notification._types.${t}`),
|
|
|
|
active: includeTypes && includeTypes.includes(t),
|
|
|
|
action: () => {
|
|
|
|
includeTypes = [t];
|
2022-06-20 11:38:49 +03:00
|
|
|
},
|
2022-01-14 16:23:08 +02:00
|
|
|
}));
|
|
|
|
const items = includeTypes != null ? [{
|
|
|
|
icon: 'fas fa-times',
|
2022-01-28 04:39:49 +02:00
|
|
|
text: i18n.ts.clear,
|
2022-01-14 16:23:08 +02:00
|
|
|
action: () => {
|
|
|
|
includeTypes = null;
|
2022-06-20 11:38:49 +03:00
|
|
|
},
|
2022-01-14 16:23:08 +02:00
|
|
|
}, null, ...typeItems] : typeItems;
|
2022-01-28 04:53:12 +02:00
|
|
|
os.popupMenu(items, ev.currentTarget ?? ev.target);
|
2022-01-14 16:23:08 +02:00
|
|
|
}
|
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
const headerActions = $computed(() => [{
|
|
|
|
text: i18n.ts.filter,
|
|
|
|
icon: 'fas fa-filter',
|
|
|
|
highlighted: includeTypes != null,
|
|
|
|
handler: setFilter,
|
|
|
|
}, {
|
|
|
|
text: i18n.ts.markAllAsRead,
|
|
|
|
icon: 'fas fa-check',
|
|
|
|
handler: () => {
|
|
|
|
os.apiWithDialog('notifications/mark-all-as-read');
|
|
|
|
},
|
|
|
|
}]);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => [{
|
|
|
|
active: tab === 'all',
|
|
|
|
title: i18n.ts.all,
|
|
|
|
onClick: () => { tab = 'all'; },
|
|
|
|
}, {
|
|
|
|
active: tab === 'unread',
|
|
|
|
title: i18n.ts.unread,
|
|
|
|
onClick: () => { tab = 'unread'; },
|
|
|
|
}]);
|
|
|
|
|
|
|
|
definePageMetadata(computed(() => ({
|
|
|
|
title: i18n.ts.notifications,
|
|
|
|
icon: 'fas fa-bell',
|
|
|
|
bg: 'var(--bg)',
|
|
|
|
})));
|
2020-02-18 23:16:49 +02:00
|
|
|
</script>
|
2021-08-21 11:40:15 +03:00
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.clupoqwt {
|
|
|
|
}
|
|
|
|
</style>
|