mirror of
https://github.com/misskey-dev/misskey
synced 2025-07-08 04:32:52 +02:00
49 lines
1.5 KiB
Vue
49 lines
1.5 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<XColumn :column="column" :isStacked="isStacked" :menu="menu" :refresher="async () => { await notificationsComponent?.reload() }">
|
|
<template #header><i class="ti ti-bell" style="margin-right: 8px;"></i>{{ column.name || i18n.ts._deck._columns.notifications }}</template>
|
|
|
|
<MkStreamingNotificationsTimeline ref="notificationsComponent" :excludeTypes="props.column.excludeTypes"/>
|
|
</XColumn>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { defineAsyncComponent, useTemplateRef } from 'vue';
|
|
import XColumn from './column.vue';
|
|
import type { Column } from '@/deck.js';
|
|
import { updateColumn } from '@/deck.js';
|
|
import MkStreamingNotificationsTimeline from '@/components/MkStreamingNotificationsTimeline.vue';
|
|
import * as os from '@/os.js';
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
const props = defineProps<{
|
|
column: Column;
|
|
isStacked: boolean;
|
|
}>();
|
|
|
|
const notificationsComponent = useTemplateRef('notificationsComponent');
|
|
|
|
async function func() {
|
|
const { dispose } = await os.popupAsyncWithDialog(import('@/components/MkNotificationSelectWindow.vue').then(x => x.default), {
|
|
excludeTypes: props.column.excludeTypes,
|
|
}, {
|
|
done: async (res) => {
|
|
const { excludeTypes } = res;
|
|
updateColumn(props.column.id, {
|
|
excludeTypes: excludeTypes,
|
|
});
|
|
},
|
|
closed: () => dispose(),
|
|
});
|
|
}
|
|
|
|
const menu = [{
|
|
icon: 'ti ti-pencil',
|
|
text: i18n.ts.notificationSetting,
|
|
action: func,
|
|
}];
|
|
</script>
|