forked from FoundKeyGang/FoundKey
56 lines
1.4 KiB
Vue
56 lines
1.4 KiB
Vue
<template>
|
|
<XColumn :func="{ handler: func, title: $ts.editWidgets }" :naked="true" :column="column" :is-stacked="isStacked" @parent-focus="$event => emit('parent-focus', $event)">
|
|
<template #header><i class="fas fa-window-maximize" style="margin-right: 8px;"></i>{{ column.name }}</template>
|
|
|
|
<div class="wtdtxvec">
|
|
<XWidgets :edit="edit" :widgets="column.widgets" @add-widget="addWidget" @remove-widget="removeWidget" @update-widget="updateWidget" @update-widgets="updateWidgets" @exit="edit = false"/>
|
|
</div>
|
|
</XColumn>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { } from 'vue';
|
|
import XWidgets from '@/components/widgets.vue';
|
|
import XColumn from './column.vue';
|
|
import { addColumnWidget, Column, removeColumnWidget, setColumnWidgets, updateColumnWidget } from './deck-store';
|
|
|
|
const props = defineProps<{
|
|
column: Column;
|
|
isStacked: boolean;
|
|
}>();
|
|
|
|
const emit = defineEmits<{
|
|
(ev: 'parent-focus', direction: 'up' | 'down' | 'left' | 'right'): void;
|
|
}>();
|
|
|
|
let edit = $ref(false);
|
|
|
|
function addWidget(widget) {
|
|
addColumnWidget(props.column.id, widget);
|
|
}
|
|
|
|
function removeWidget(widget) {
|
|
removeColumnWidget(props.column.id, widget);
|
|
}
|
|
|
|
function updateWidget({ id, data }) {
|
|
updateColumnWidget(props.column.id, id, data);
|
|
}
|
|
|
|
function updateWidgets(widgets) {
|
|
setColumnWidgets(props.column.id, widgets);
|
|
}
|
|
|
|
function func() {
|
|
edit = !edit;
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.wtdtxvec {
|
|
--margin: 8px;
|
|
--panelBorder: none;
|
|
|
|
padding: 0 var(--margin);
|
|
}
|
|
</style>
|