2019-05-02 03:55:59 -05:00
|
|
|
<template>
|
2019-05-03 00:49:22 -05:00
|
|
|
<x-draggable tag="div" :list="blocks" handle=".drag-handle" :group="{ name: 'blocks' }" animation="150" swap-threshold="0.5">
|
2020-04-20 07:35:27 -05:00
|
|
|
<component v-for="block in blocks" :is="'x-' + block.type" :value="block" @input="updateItem" @remove="() => removeItem(block)" :key="block.id" :hpml="hpml"/>
|
2019-05-02 03:55:59 -05:00
|
|
|
</x-draggable>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
import * as XDraggable from 'vuedraggable';
|
|
|
|
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';
|
2019-05-02 03:55:59 -05:00
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
components: {
|
2020-04-15 10:39:21 -05:00
|
|
|
XDraggable, XSection, XText, XImage, XButton, XTextarea, XTextInput, XTextareaInput, XNumberInput, XSwitch, XIf, XPost, XCounter, XRadioButton, XCanvas
|
2019-05-02 03:55:59 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
props: {
|
|
|
|
value: {
|
|
|
|
type: Array,
|
|
|
|
required: true
|
|
|
|
},
|
2020-04-20 07:35:27 -05:00
|
|
|
hpml: {
|
2019-05-02 03:55:59 -05:00
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
|
|
|
blocks() {
|
|
|
|
return this.value;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
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)
|
|
|
|
];
|
|
|
|
this.$emit('input', newValue);
|
|
|
|
},
|
|
|
|
|
|
|
|
removeItem(el) {
|
|
|
|
const i = this.blocks.findIndex(x => x.id === el.id);
|
|
|
|
const newValue = [
|
|
|
|
...this.blocks.slice(0, i),
|
|
|
|
...this.blocks.slice(i + 1)
|
|
|
|
];
|
|
|
|
this.$emit('input', newValue);
|
|
|
|
},
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|