152 lines
3.2 KiB
Vue
152 lines
3.2 KiB
Vue
<template>
|
|
<div class="vjoppmmu">
|
|
<template v-if="edit">
|
|
<header>
|
|
<MkSelect v-model="widgetAdderSelected" style="margin-bottom: var(--margin)">
|
|
<template #label>{{ $ts.selectWidget }}</template>
|
|
<option v-for="widget in widgetDefs" :value="widget" :key="widget">{{ $t(`_widgets.${widget}`) }}</option>
|
|
</MkSelect>
|
|
<MkButton inline @click="addWidget" primary><i class="fas fa-plus"></i> {{ $ts.add }}</MkButton>
|
|
<MkButton inline @click="$emit('exit')">{{ $ts.close }}</MkButton>
|
|
</header>
|
|
<XDraggable
|
|
v-model="_widgets"
|
|
item-key="id"
|
|
animation="150"
|
|
>
|
|
<template #item="{element}">
|
|
<div class="customize-container">
|
|
<button class="config _button" @click.prevent.stop="configWidget(element.id)"><i class="fas fa-cog"></i></button>
|
|
<button class="remove _button" @click.prevent.stop="removeWidget(element)"><i class="fas fa-times"></i></button>
|
|
<component :is="`mkw-${element.name}`" :widget="element" :setting-callback="setting => settings[element.id] = setting" :column="column" @updateProps="updateWidget(element.id, $event)"/>
|
|
</div>
|
|
</template>
|
|
</XDraggable>
|
|
</template>
|
|
<component v-else class="widget" v-for="widget in widgets" :is="`mkw-${widget.name}`" :key="widget.id" :widget="widget" :column="column" @updateProps="updateWidget(widget.id, $event)"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent, defineAsyncComponent } from 'vue';
|
|
import { v4 as uuid } from 'uuid';
|
|
import MkSelect from '@client/components/ui/select.vue';
|
|
import MkButton from '@client/components/ui/button.vue';
|
|
import { widgets as widgetDefs } from '@client/widgets';
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
XDraggable: defineAsyncComponent(() => import('vuedraggable').then(x => x.default)),
|
|
MkSelect,
|
|
MkButton,
|
|
},
|
|
|
|
props: {
|
|
widgets: {
|
|
type: Array,
|
|
required: true,
|
|
},
|
|
edit: {
|
|
type: Boolean,
|
|
required: true,
|
|
},
|
|
},
|
|
|
|
emits: ['updateWidgets', 'addWidget', 'removeWidget', 'updateWidget', 'exit'],
|
|
|
|
data() {
|
|
return {
|
|
widgetAdderSelected: null,
|
|
widgetDefs,
|
|
settings: {},
|
|
};
|
|
},
|
|
|
|
computed: {
|
|
_widgets: {
|
|
get() {
|
|
return this.widgets;
|
|
},
|
|
set(value) {
|
|
this.$emit('updateWidgets', value);
|
|
}
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
configWidget(id) {
|
|
this.settings[id]();
|
|
},
|
|
|
|
addWidget() {
|
|
if (this.widgetAdderSelected == null) return;
|
|
|
|
this.$emit('addWidget', {
|
|
name: this.widgetAdderSelected,
|
|
id: uuid(),
|
|
data: {}
|
|
});
|
|
|
|
this.widgetAdderSelected = null;
|
|
},
|
|
|
|
removeWidget(widget) {
|
|
this.$emit('removeWidget', widget);
|
|
},
|
|
|
|
updateWidget(id, data) {
|
|
this.$emit('updateWidget', { id, data });
|
|
},
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.vjoppmmu {
|
|
> header {
|
|
margin: 16px 0;
|
|
|
|
> * {
|
|
width: 100%;
|
|
padding: 4px;
|
|
}
|
|
}
|
|
|
|
> .widget, .customize-container {
|
|
margin: var(--margin) 0;
|
|
|
|
&:first-of-type {
|
|
margin-top: 0;
|
|
}
|
|
}
|
|
|
|
.customize-container {
|
|
position: relative;
|
|
cursor: move;
|
|
|
|
> *:not(.remove):not(.config) {
|
|
pointer-events: none;
|
|
}
|
|
|
|
> .config,
|
|
> .remove {
|
|
position: absolute;
|
|
z-index: 10000;
|
|
top: 8px;
|
|
width: 32px;
|
|
height: 32px;
|
|
color: #fff;
|
|
background: rgba(#000, 0.7);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
> .config {
|
|
right: 8px + 8px + 32px;
|
|
}
|
|
|
|
> .remove {
|
|
right: 8px;
|
|
}
|
|
}
|
|
}
|
|
</style>
|