2021-02-16 07:17:13 -06:00
|
|
|
<template>
|
|
|
|
<div class="vjoppmmu">
|
|
|
|
<template v-if="edit">
|
|
|
|
<header>
|
2022-05-28 00:28:12 -05:00
|
|
|
<MkSelect v-model="widgetAdderSelected" style="margin-bottom: var(--margin)" class="mk-widget-select">
|
2021-02-16 07:17:13 -06:00
|
|
|
<template #label>{{ $ts.selectWidget }}</template>
|
2021-11-19 04:36:12 -06:00
|
|
|
<option v-for="widget in widgetDefs" :key="widget" :value="widget">{{ $t(`_widgets.${widget}`) }}</option>
|
2021-02-16 07:17:13 -06:00
|
|
|
</MkSelect>
|
2022-05-28 00:28:12 -05:00
|
|
|
<MkButton inline primary class="mk-widget-add" @click="addWidget"><i class="fas fa-plus"></i> {{ $ts.add }}</MkButton>
|
2021-02-16 07:17:13 -06:00
|
|
|
<MkButton inline @click="$emit('exit')">{{ $ts.close }}</MkButton>
|
|
|
|
</header>
|
|
|
|
<XDraggable
|
2022-01-08 05:30:01 -06:00
|
|
|
v-model="widgets_"
|
2021-02-16 07:17:13 -06:00
|
|
|
item-key="id"
|
2022-02-20 01:07:29 -06:00
|
|
|
handle=".handle"
|
2021-02-16 07:17:13 -06:00
|
|
|
animation="150"
|
|
|
|
>
|
|
|
|
<template #item="{element}">
|
|
|
|
<div class="customize-container">
|
2021-04-20 09:22:59 -05:00
|
|
|
<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>
|
2022-05-26 08:53:09 -05:00
|
|
|
<component :is="`mkw-${element.name}`" :ref="el => widgetRefs[element.id] = el" class="handle" :widget="element" @updateProps="updateWidget(element.id, $event)"/>
|
2021-02-16 07:17:13 -06:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</XDraggable>
|
|
|
|
</template>
|
2021-11-19 04:36:12 -06:00
|
|
|
<component :is="`mkw-${widget.name}`" v-for="widget in widgets" v-else :key="widget.id" class="widget" :widget="widget" @updateProps="updateWidget(widget.id, $event)"/>
|
2021-02-16 07:17:13 -06:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2022-01-08 05:30:01 -06:00
|
|
|
import { defineComponent, defineAsyncComponent, reactive, ref, computed } from 'vue';
|
2021-02-16 07:17:13 -06:00
|
|
|
import { v4 as uuid } from 'uuid';
|
2021-11-11 11:02:25 -06:00
|
|
|
import MkSelect from '@/components/form/select.vue';
|
|
|
|
import MkButton from '@/components/ui/button.vue';
|
|
|
|
import { widgets as widgetDefs } from '@/widgets';
|
2021-02-16 07:17:13 -06:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
2022-05-01 08:51:07 -05:00
|
|
|
XDraggable: defineAsyncComponent(() => import('vuedraggable')),
|
2021-02-16 07:17:13 -06:00
|
|
|
MkSelect,
|
|
|
|
MkButton,
|
|
|
|
},
|
|
|
|
|
|
|
|
props: {
|
|
|
|
widgets: {
|
2021-07-18 21:36:35 -05:00
|
|
|
type: Array,
|
2021-02-16 07:17:13 -06:00
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
edit: {
|
|
|
|
type: Boolean,
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
emits: ['updateWidgets', 'addWidget', 'removeWidget', 'updateWidget', 'exit'],
|
|
|
|
|
2022-01-08 05:30:01 -06:00
|
|
|
setup(props, context) {
|
|
|
|
const widgetRefs = reactive({});
|
|
|
|
const configWidget = (id: string) => {
|
|
|
|
widgetRefs[id].configure();
|
2021-02-16 07:17:13 -06:00
|
|
|
};
|
2022-01-08 05:30:01 -06:00
|
|
|
const widgetAdderSelected = ref(null);
|
|
|
|
const addWidget = () => {
|
|
|
|
if (widgetAdderSelected.value == null) return;
|
2021-02-16 07:17:13 -06:00
|
|
|
|
2022-01-08 05:30:01 -06:00
|
|
|
context.emit('addWidget', {
|
|
|
|
name: widgetAdderSelected.value,
|
2021-02-16 07:17:13 -06:00
|
|
|
id: uuid(),
|
2022-01-08 05:30:01 -06:00
|
|
|
data: {},
|
2021-02-16 07:17:13 -06:00
|
|
|
});
|
|
|
|
|
2022-01-08 05:30:01 -06:00
|
|
|
widgetAdderSelected.value = null;
|
|
|
|
};
|
|
|
|
const removeWidget = (widget) => {
|
|
|
|
context.emit('removeWidget', widget);
|
|
|
|
};
|
|
|
|
const updateWidget = (id, data) => {
|
|
|
|
context.emit('updateWidget', { id, data });
|
|
|
|
};
|
|
|
|
const widgets_ = computed({
|
|
|
|
get: () => props.widgets,
|
|
|
|
set: (value) => {
|
|
|
|
context.emit('updateWidgets', value);
|
|
|
|
},
|
|
|
|
});
|
2021-02-16 07:17:13 -06:00
|
|
|
|
2022-01-08 05:30:01 -06:00
|
|
|
return {
|
|
|
|
widgetRefs,
|
|
|
|
configWidget,
|
|
|
|
widgetAdderSelected,
|
|
|
|
widgetDefs,
|
|
|
|
addWidget,
|
|
|
|
removeWidget,
|
|
|
|
updateWidget,
|
|
|
|
widgets_,
|
|
|
|
};
|
|
|
|
},
|
2021-02-16 07:17:13 -06:00
|
|
|
});
|
|
|
|
</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;
|
|
|
|
|
|
|
|
> .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>
|