2019-04-29 09:11:57 +09:00
|
|
|
<template>
|
2021-11-18 23:32:43 +09:00
|
|
|
<!-- eslint-disable vue/no-mutating-props -->
|
2021-11-19 19:36:12 +09:00
|
|
|
<XContainer :draggable="true" @remove="() => $emit('remove')">
|
2021-04-20 23:22:59 +09:00
|
|
|
<template #header><i class="fas fa-sticky-note"></i> {{ value.title }}</template>
|
2019-04-29 09:11:57 +09:00
|
|
|
<template #func>
|
2021-11-19 19:36:12 +09:00
|
|
|
<button class="_button" @click="rename()">
|
2021-04-20 23:22:59 +09:00
|
|
|
<i class="fas fa-pencil-alt"></i>
|
2019-04-29 09:11:57 +09:00
|
|
|
</button>
|
2021-11-19 19:36:12 +09:00
|
|
|
<button class="_button" @click="add()">
|
2021-04-20 23:22:59 +09:00
|
|
|
<i class="fas fa-plus"></i>
|
2019-04-29 09:11:57 +09:00
|
|
|
</button>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<section class="ilrvjyvi">
|
2021-11-19 19:36:12 +09:00
|
|
|
<XBlocks v-model="value.children" class="children" :hpml="hpml"/>
|
2019-04-29 09:11:57 +09:00
|
|
|
</section>
|
2020-10-17 20:12:00 +09:00
|
|
|
</XContainer>
|
2019-04-29 09:11:57 +09:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2021-11-18 23:32:43 +09:00
|
|
|
/* eslint-disable vue/no-mutating-props */
|
2020-10-19 09:30:21 +09:00
|
|
|
import { defineComponent, defineAsyncComponent } from 'vue';
|
2019-08-18 12:42:58 +09:00
|
|
|
import { v4 as uuid } from 'uuid';
|
2019-04-30 06:40:02 +09:00
|
|
|
import XContainer from '../page-editor.container.vue';
|
2021-11-12 02:02:25 +09:00
|
|
|
import * as os from '@/os';
|
2019-04-29 09:11:57 +09:00
|
|
|
|
2020-10-17 20:12:00 +09:00
|
|
|
export default defineComponent({
|
2019-04-29 09:11:57 +09:00
|
|
|
components: {
|
2020-10-19 09:30:21 +09:00
|
|
|
XContainer,
|
|
|
|
XBlocks: defineAsyncComponent(() => import('../page-editor.blocks.vue')),
|
2019-04-29 09:11:57 +09:00
|
|
|
},
|
|
|
|
|
2019-04-30 06:40:02 +09:00
|
|
|
inject: ['getPageBlockList'],
|
|
|
|
|
2019-04-29 09:11:57 +09:00
|
|
|
props: {
|
|
|
|
value: {
|
|
|
|
required: true
|
|
|
|
},
|
2020-04-20 21:35:27 +09:00
|
|
|
hpml: {
|
2019-04-30 06:40:02 +09:00
|
|
|
required: true,
|
|
|
|
},
|
2019-04-29 09:11:57 +09:00
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
created() {
|
2020-10-17 20:12:00 +09:00
|
|
|
if (this.value.title == null) this.value.title = null;
|
|
|
|
if (this.value.children == null) this.value.children = [];
|
2019-04-29 09:11:57 +09:00
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
|
|
|
if (this.value.title == null) {
|
|
|
|
this.rename();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
async rename() {
|
2021-11-18 18:45:58 +09:00
|
|
|
const { canceled, result: title } = await os.inputText({
|
2019-04-29 09:11:57 +09:00
|
|
|
title: 'Enter title',
|
2021-11-18 18:45:58 +09:00
|
|
|
default: this.value.title
|
2019-04-29 09:11:57 +09:00
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
this.value.title = title;
|
|
|
|
},
|
|
|
|
|
|
|
|
async add() {
|
2021-11-18 18:45:58 +09:00
|
|
|
const { canceled, result: type } = await os.select({
|
2020-12-26 10:47:36 +09:00
|
|
|
title: this.$ts._pages.chooseBlock,
|
2021-11-18 18:45:58 +09:00
|
|
|
groupedItems: this.getPageBlockList()
|
2019-04-29 09:11:57 +09:00
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
|
2019-08-18 12:42:58 +09:00
|
|
|
const id = uuid();
|
2019-04-29 09:11:57 +09:00
|
|
|
this.value.children.push({ id, type });
|
|
|
|
},
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2020-01-30 04:37:25 +09:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
.ilrvjyvi {
|
|
|
|
> .children {
|
|
|
|
padding: 16px;
|
|
|
|
}
|
|
|
|
}
|
2019-04-29 09:11:57 +09:00
|
|
|
</style>
|