egirlskey/packages/client/src/pages/notifications.vue

72 lines
1.6 KiB
Vue
Raw Normal View History

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