61 lines
1.3 KiB
Vue
61 lines
1.3 KiB
Vue
<template>
|
|
<XColumn :column="column" :is-stacked="isStacked" :menu="menu">
|
|
<template #header><Fa :icon="faBell" style="margin-right: 8px;"/>{{ column.name }}</template>
|
|
|
|
<XNotifications :include-types="column.includingTypes"/>
|
|
</XColumn>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
import { faCog } from '@fortawesome/free-solid-svg-icons';
|
|
import { faBell } from '@fortawesome/free-regular-svg-icons';
|
|
import XColumn from './column.vue';
|
|
import XNotifications from '@/components/notifications.vue';
|
|
import * as os from '@/os';
|
|
import { updateColumn } from './deck-store';
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
XColumn,
|
|
XNotifications
|
|
},
|
|
|
|
props: {
|
|
column: {
|
|
type: Object,
|
|
required: true
|
|
},
|
|
isStacked: {
|
|
type: Boolean,
|
|
required: true
|
|
}
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
menu: null,
|
|
faBell
|
|
}
|
|
},
|
|
|
|
created() {
|
|
this.menu = [{
|
|
icon: faCog,
|
|
text: this.$ts.notificationSetting,
|
|
action: () => {
|
|
os.popup(import('@/components/notification-setting-window.vue'), {
|
|
includingTypes: this.column.includingTypes,
|
|
}, {
|
|
done: async (res) => {
|
|
const { includingTypes } = res;
|
|
updateColumn(this.column.id, {
|
|
includingTypes: includingTypes
|
|
});
|
|
},
|
|
}, 'closed');
|
|
}
|
|
}];
|
|
},
|
|
});
|
|
</script>
|