2019-04-29 02:11:57 +02:00
|
|
|
<template>
|
2023-01-13 05:54:33 +01:00
|
|
|
|
2021-11-19 11:36:12 +01:00
|
|
|
<XContainer :draggable="true" @remove="() => $emit('remove')">
|
2022-11-10 23:12:44 +01:00
|
|
|
<template #header><i class="ph-question-bold ph-lg"></i> {{ i18n.ts._pages.blocks.if }}</template>
|
2019-04-29 02:11:57 +02:00
|
|
|
<template #func>
|
2021-11-19 11:36:12 +01:00
|
|
|
<button class="_button" @click="add()">
|
2022-11-07 03:49:47 +01:00
|
|
|
<i class="ph-plus-bold ph-lg"></i>
|
2019-04-29 02:11:57 +02:00
|
|
|
</button>
|
|
|
|
</template>
|
|
|
|
|
2019-04-29 23:40:02 +02:00
|
|
|
<section class="romcojzs">
|
2021-08-06 15:29:19 +02:00
|
|
|
<MkSelect v-model="value.var">
|
2022-11-10 23:12:44 +01:00
|
|
|
<template #label>{{ i18n.ts._pages.blocks._if.variable }}</template>
|
2020-04-20 14:35:27 +02:00
|
|
|
<option v-for="v in hpml.getVarsByType('boolean')" :value="v.name">{{ v.name }}</option>
|
2022-11-10 23:12:44 +01:00
|
|
|
<optgroup :label="i18n.ts._pages.script.pageVariables">
|
2020-04-20 14:35:27 +02:00
|
|
|
<option v-for="v in hpml.getPageVarsByType('boolean')" :value="v">{{ v }}</option>
|
2019-04-29 23:40:02 +02:00
|
|
|
</optgroup>
|
2022-11-10 23:12:44 +01:00
|
|
|
<optgroup :label="i18n.ts._pages.script.enviromentVariables">
|
2020-04-20 14:35:27 +02:00
|
|
|
<option v-for="v in hpml.getEnvVarsByType('boolean')" :value="v">{{ v }}</option>
|
2019-04-29 23:40:02 +02:00
|
|
|
</optgroup>
|
2020-10-17 13:12:00 +02:00
|
|
|
</MkSelect>
|
2019-04-29 23:40:02 +02:00
|
|
|
|
2021-11-19 11:36:12 +01:00
|
|
|
<XBlocks v-model="value.children" class="children" :hpml="hpml"/>
|
2019-04-29 02:11:57 +02:00
|
|
|
</section>
|
2020-10-17 13:12:00 +02:00
|
|
|
</XContainer>
|
2019-04-29 02:11:57 +02:00
|
|
|
</template>
|
|
|
|
|
2022-06-18 11:39:04 +02:00
|
|
|
<script lang="ts" setup>
|
2023-01-13 05:54:33 +01:00
|
|
|
|
2022-06-18 11:39:04 +02:00
|
|
|
import { defineAsyncComponent, inject } from 'vue';
|
2019-08-18 05:42:58 +02:00
|
|
|
import { v4 as uuid } from 'uuid';
|
2019-04-29 23:40:02 +02:00
|
|
|
import XContainer from '../page-editor.container.vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import MkSelect from '@/components/form/select.vue';
|
|
|
|
import * as os from '@/os';
|
2022-06-18 11:39:04 +02:00
|
|
|
import { i18n } from '@/i18n';
|
2019-04-29 02:11:57 +02:00
|
|
|
|
2022-06-18 11:39:04 +02:00
|
|
|
const XBlocks = defineAsyncComponent(() => import('../page-editor.blocks.vue'));
|
2019-04-29 02:11:57 +02:00
|
|
|
|
2022-06-18 11:39:04 +02:00
|
|
|
const props = withDefaults(defineProps<{
|
|
|
|
value: any,
|
|
|
|
hpml: any
|
|
|
|
}>(), {
|
|
|
|
value: {
|
|
|
|
children: [],
|
|
|
|
var: null
|
|
|
|
}
|
|
|
|
});
|
2019-04-29 02:11:57 +02:00
|
|
|
|
2022-06-18 11:39:04 +02:00
|
|
|
const getPageBlockList = inject<(any) => any>('getPageBlockList');
|
2019-04-29 02:11:57 +02:00
|
|
|
|
2022-06-18 11:39:04 +02:00
|
|
|
async function add() {
|
|
|
|
const { canceled, result: type } = await os.select({
|
|
|
|
title: i18n.ts._pages.chooseBlock,
|
|
|
|
groupedItems: getPageBlockList()
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
2019-04-29 02:11:57 +02:00
|
|
|
|
2022-06-18 11:39:04 +02:00
|
|
|
const id = uuid();
|
|
|
|
props.value.children.push({ id, type });
|
|
|
|
}
|
2019-04-29 02:11:57 +02:00
|
|
|
</script>
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
.romcojzs {
|
|
|
|
padding: 0 16px 16px 16px;
|
|
|
|
}
|
2019-04-29 02:11:57 +02:00
|
|
|
</style>
|