2019-05-02 08:55:59 +00:00
|
|
|
<template>
|
2022-12-24 02:57:06 +00:00
|
|
|
<Sortable :model-value="modelValue" tag="div" item-key="id" handle=".drag-handle" :group="{ name: 'blocks' }" :animation="150" :swap-threshold="0.5" @update:model-value="v => $emit('update:modelValue', v)">
|
2020-12-05 03:50:09 +00:00
|
|
|
<template #item="{element}">
|
2022-12-24 02:57:06 +00:00
|
|
|
<div :class="$style.item">
|
|
|
|
<!-- divが無いとエラーになる https://github.com/SortableJS/vue.draggable.next/issues/189 -->
|
|
|
|
<component :is="'x-' + element.type" :model-value="element" @update:model-value="updateItem" @remove="() => removeItem(element)"/>
|
|
|
|
</div>
|
2020-12-05 03:50:09 +00:00
|
|
|
</template>
|
2022-12-21 02:04:49 +00:00
|
|
|
</Sortable>
|
2019-05-02 08:55:59 +00:00
|
|
|
</template>
|
|
|
|
|
2023-05-14 02:43:56 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { defineAsyncComponent } from 'vue';
|
2019-05-02 08:55:59 +00:00
|
|
|
import XSection from './els/page-editor.el.section.vue';
|
|
|
|
import XText from './els/page-editor.el.text.vue';
|
|
|
|
import XImage from './els/page-editor.el.image.vue';
|
2020-11-15 04:42:04 +00:00
|
|
|
import XNote from './els/page-editor.el.note.vue';
|
2019-05-02 08:55:59 +00:00
|
|
|
|
2023-05-14 02:43:56 +00:00
|
|
|
const Sortable = defineAsyncComponent(() => import('vuedraggable').then(x => x.default));
|
2019-05-02 08:55:59 +00:00
|
|
|
|
2023-05-14 02:43:56 +00:00
|
|
|
const props = defineProps<{
|
|
|
|
modelValue: any[];
|
|
|
|
}>();
|
2019-05-02 08:55:59 +00:00
|
|
|
|
2023-05-14 02:43:56 +00:00
|
|
|
const emit = defineEmits<{
|
|
|
|
(ev: 'update:modelValue', value: any[]): void;
|
|
|
|
}>();
|
2020-12-05 03:50:09 +00:00
|
|
|
|
2023-05-14 02:43:56 +00:00
|
|
|
function updateItem(v) {
|
|
|
|
const i = props.modelValue.findIndex(x => x.id === v.id);
|
|
|
|
const newValue = [
|
|
|
|
...props.modelValue.slice(0, i),
|
|
|
|
v,
|
|
|
|
...props.modelValue.slice(i + 1),
|
|
|
|
];
|
|
|
|
emit('update:modelValue', newValue);
|
|
|
|
}
|
2019-05-02 08:55:59 +00:00
|
|
|
|
2023-05-14 02:43:56 +00:00
|
|
|
function removeItem(el) {
|
|
|
|
const i = props.modelValue.findIndex(x => x.id === el.id);
|
|
|
|
const newValue = [
|
|
|
|
...props.modelValue.slice(0, i),
|
|
|
|
...props.modelValue.slice(i + 1),
|
|
|
|
];
|
|
|
|
emit('update:modelValue', newValue);
|
|
|
|
}
|
2019-05-02 08:55:59 +00:00
|
|
|
</script>
|
2022-12-24 02:57:06 +00:00
|
|
|
|
|
|
|
<style lang="scss" module>
|
|
|
|
.item {
|
|
|
|
& + .item {
|
|
|
|
margin-top: 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|