2020-02-18 22:16:49 +01:00
|
|
|
<template>
|
2021-10-23 21:03:07 +02:00
|
|
|
<MkSpacer :content-max="800">
|
|
|
|
<div class="clupoqwt">
|
2021-12-25 05:38:53 +01:00
|
|
|
<XNotifications class="notifications" :include-types="includeTypes" :unread-only="tab === 'unread'"/>
|
2021-10-23 21:03:07 +02:00
|
|
|
</div>
|
|
|
|
</MkSpacer>
|
2020-02-18 22:16:49 +01:00
|
|
|
</template>
|
|
|
|
|
2022-01-14 15:23:08 +01:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { computed } from 'vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import XNotifications from '@/components/notifications.vue';
|
|
|
|
import * as os from '@/os';
|
|
|
|
import * as symbols from '@/symbols';
|
|
|
|
import { notificationTypes } from 'misskey-js';
|
2022-01-14 15:23:08 +01:00
|
|
|
import { i18n } from '@/i18n';
|
2020-02-18 22:16:49 +01:00
|
|
|
|
2022-01-14 15:23:08 +01:00
|
|
|
let tab = $ref('all');
|
|
|
|
let includeTypes = $ref<string[] | null>(null);
|
2020-02-18 22:16:49 +01:00
|
|
|
|
2022-01-14 15:23:08 +01: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 ? [{
|
|
|
|
icon: 'fas fa-times',
|
2022-01-28 03:39:49 +01:00
|
|
|
text: i18n.ts.clear,
|
2022-01-14 15:23:08 +01:00
|
|
|
action: () => {
|
|
|
|
includeTypes = null;
|
2020-02-18 22:16:49 +01:00
|
|
|
}
|
2022-01-14 15:23:08 +01:00
|
|
|
}, null, ...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
|
|
|
}
|
|
|
|
|
|
|
|
defineExpose({
|
|
|
|
[symbols.PAGE_INFO]: computed(() => ({
|
2022-01-28 03:39:49 +01:00
|
|
|
title: i18n.ts.notifications,
|
2022-01-14 15:23:08 +01:00
|
|
|
icon: 'fas fa-bell',
|
|
|
|
bg: 'var(--bg)',
|
|
|
|
actions: [{
|
2022-01-28 03:39:49 +01:00
|
|
|
text: i18n.ts.filter,
|
2022-01-14 15:23:08 +01:00
|
|
|
icon: 'fas fa-filter',
|
|
|
|
highlighted: includeTypes != null,
|
|
|
|
handler: setFilter,
|
|
|
|
}, {
|
2022-01-28 03:39:49 +01:00
|
|
|
text: i18n.ts.markAllAsRead,
|
2022-01-14 15:23:08 +01:00
|
|
|
icon: 'fas fa-check',
|
|
|
|
handler: () => {
|
|
|
|
os.apiWithDialog('notifications/mark-all-as-read');
|
|
|
|
},
|
|
|
|
}],
|
|
|
|
tabs: [{
|
|
|
|
active: tab === 'all',
|
2022-01-28 03:39:49 +01:00
|
|
|
title: i18n.ts.all,
|
2022-01-14 15:23:08 +01:00
|
|
|
onClick: () => { tab = 'all'; },
|
|
|
|
}, {
|
|
|
|
active: tab === 'unread',
|
2022-01-28 03:39:49 +01:00
|
|
|
title: i18n.ts.unread,
|
2022-01-14 15:23:08 +01:00
|
|
|
onClick: () => { tab = 'unread'; },
|
|
|
|
},]
|
|
|
|
})),
|
2020-02-18 22:16:49 +01:00
|
|
|
});
|
|
|
|
</script>
|
2021-08-21 10:40:15 +02:00
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.clupoqwt {
|
|
|
|
}
|
|
|
|
</style>
|