2020-07-11 04:13:11 +03:00
|
|
|
<template>
|
2022-03-20 20:11:14 +02:00
|
|
|
<XColumn :column="column" :is-stacked="isStacked" :func="{ handler: func, title: $ts.notificationSetting }" @parent-focus="$event => emit('parent-focus', $event)">
|
2021-04-20 17:22:59 +03:00
|
|
|
<template #header><i class="fas fa-bell" style="margin-right: 8px;"></i>{{ column.name }}</template>
|
2020-07-11 04:13:11 +03:00
|
|
|
|
2020-10-17 14:12:00 +03:00
|
|
|
<XNotifications :include-types="column.includingTypes"/>
|
|
|
|
</XColumn>
|
2020-07-11 04:13:11 +03:00
|
|
|
</template>
|
|
|
|
|
2022-03-20 20:11:14 +02:00
|
|
|
<script lang="ts" setup>
|
2022-05-01 16:51:07 +03:00
|
|
|
import { defineAsyncComponent } from 'vue';
|
2020-07-11 04:13:11 +03:00
|
|
|
import XColumn from './column.vue';
|
2021-11-11 19:02:25 +02:00
|
|
|
import XNotifications from '@/components/notifications.vue';
|
|
|
|
import * as os from '@/os';
|
2020-12-19 03:55:52 +02:00
|
|
|
import { updateColumn } from './deck-store';
|
2022-03-20 20:11:14 +02:00
|
|
|
import { Column } from './deck-store';
|
2020-07-11 04:13:11 +03:00
|
|
|
|
2022-03-20 20:11:14 +02:00
|
|
|
const props = defineProps<{
|
|
|
|
column: Column;
|
|
|
|
isStacked: boolean;
|
|
|
|
}>();
|
2020-07-11 04:13:11 +03:00
|
|
|
|
2022-03-20 20:11:14 +02:00
|
|
|
const emit = defineEmits<{
|
2022-05-19 11:35:43 +03:00
|
|
|
(ev: 'parent-focus', direction: 'up' | 'down' | 'left' | 'right'): void;
|
2022-03-20 20:11:14 +02:00
|
|
|
}>();
|
2020-07-11 04:13:11 +03:00
|
|
|
|
2022-03-20 20:11:14 +02:00
|
|
|
function func() {
|
2022-05-01 16:51:07 +03:00
|
|
|
os.popup(defineAsyncComponent(() => import('@/components/notification-setting-window.vue')), {
|
2022-03-20 20:11:14 +02:00
|
|
|
includingTypes: props.column.includingTypes,
|
|
|
|
}, {
|
|
|
|
done: async (res) => {
|
|
|
|
const { includingTypes } = res;
|
|
|
|
updateColumn(props.column.id, {
|
|
|
|
includingTypes: includingTypes
|
|
|
|
});
|
|
|
|
},
|
|
|
|
}, 'closed');
|
|
|
|
}
|
2020-07-11 04:13:11 +03:00
|
|
|
</script>
|