2019-05-02 03:55:59 -05:00
|
|
|
<template>
|
2021-11-19 04:36:12 -06:00
|
|
|
<XDraggable v-model="blocks" tag="div" item-key="id" handle=".drag-handle" :group="{ name: 'blocks' }" animation="150" swap-threshold="0.5">
|
2020-12-04 21:50:09 -06:00
|
|
|
<template #item="{element}">
|
2021-11-19 04:36:12 -06:00
|
|
|
<component :is="'x-' + element.type" :value="element" :hpml="hpml" @update:value="updateItem" @remove="() => removeItem(element)"/>
|
2020-12-04 21:50:09 -06:00
|
|
|
</template>
|
2020-10-17 06:12:00 -05:00
|
|
|
</XDraggable>
|
2019-05-02 03:55:59 -05:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 06:12:00 -05:00
|
|
|
import { defineComponent, defineAsyncComponent } from 'vue';
|
2019-05-02 03:55:59 -05:00
|
|
|
import XSection from './els/page-editor.el.section.vue';
|
|
|
|
import XText from './els/page-editor.el.text.vue';
|
|
|
|
import XTextarea from './els/page-editor.el.textarea.vue';
|
|
|
|
import XImage from './els/page-editor.el.image.vue';
|
|
|
|
import XButton from './els/page-editor.el.button.vue';
|
|
|
|
import XTextInput from './els/page-editor.el.text-input.vue';
|
|
|
|
import XTextareaInput from './els/page-editor.el.textarea-input.vue';
|
2019-05-05 01:12:25 -05:00
|
|
|
import XNumberInput from './els/page-editor.el.number-input.vue';
|
2019-05-02 03:55:59 -05:00
|
|
|
import XSwitch from './els/page-editor.el.switch.vue';
|
|
|
|
import XIf from './els/page-editor.el.if.vue';
|
|
|
|
import XPost from './els/page-editor.el.post.vue';
|
|
|
|
import XCounter from './els/page-editor.el.counter.vue';
|
2019-07-10 04:30:51 -05:00
|
|
|
import XRadioButton from './els/page-editor.el.radio-button.vue';
|
2020-04-15 10:39:21 -05:00
|
|
|
import XCanvas from './els/page-editor.el.canvas.vue';
|
2020-11-14 22:42:04 -06:00
|
|
|
import XNote from './els/page-editor.el.note.vue';
|
2021-11-11 11:02:25 -06:00
|
|
|
import * as os from '@/os';
|
2019-05-02 03:55:59 -05:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
export default defineComponent({
|
2019-05-02 03:55:59 -05:00
|
|
|
components: {
|
2020-12-04 21:50:09 -06:00
|
|
|
XDraggable: defineAsyncComponent(() => import('vuedraggable').then(x => x.default)),
|
2020-11-14 22:42:04 -06:00
|
|
|
XSection, XText, XImage, XButton, XTextarea, XTextInput, XTextareaInput, XNumberInput, XSwitch, XIf, XPost, XCounter, XRadioButton, XCanvas, XNote
|
2019-05-02 03:55:59 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
props: {
|
2021-09-29 10:50:45 -05:00
|
|
|
modelValue: {
|
2019-05-02 03:55:59 -05:00
|
|
|
type: Array,
|
|
|
|
required: true
|
|
|
|
},
|
2020-04-20 07:35:27 -05:00
|
|
|
hpml: {
|
2019-05-02 03:55:59 -05:00
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2021-09-29 10:50:45 -05:00
|
|
|
emits: ['update:modelValue'],
|
2020-12-04 21:50:09 -06:00
|
|
|
|
2019-05-02 03:55:59 -05:00
|
|
|
computed: {
|
2020-12-04 21:50:09 -06:00
|
|
|
blocks: {
|
|
|
|
get() {
|
2021-09-29 10:50:45 -05:00
|
|
|
return this.modelValue;
|
2020-12-04 21:50:09 -06:00
|
|
|
},
|
|
|
|
set(value) {
|
2021-09-29 10:50:45 -05:00
|
|
|
this.$emit('update:modelValue', value);
|
2020-12-04 21:50:09 -06:00
|
|
|
}
|
2019-05-02 03:55:59 -05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
updateItem(v) {
|
|
|
|
const i = this.blocks.findIndex(x => x.id === v.id);
|
|
|
|
const newValue = [
|
|
|
|
...this.blocks.slice(0, i),
|
|
|
|
v,
|
|
|
|
...this.blocks.slice(i + 1)
|
|
|
|
];
|
2021-09-29 10:50:45 -05:00
|
|
|
this.$emit('update:modelValue', newValue);
|
2019-05-02 03:55:59 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
removeItem(el) {
|
|
|
|
const i = this.blocks.findIndex(x => x.id === el.id);
|
|
|
|
const newValue = [
|
|
|
|
...this.blocks.slice(0, i),
|
|
|
|
...this.blocks.slice(i + 1)
|
|
|
|
];
|
2021-09-29 10:50:45 -05:00
|
|
|
this.$emit('update:modelValue', newValue);
|
2019-05-02 03:55:59 -05:00
|
|
|
},
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|