2019-04-29 03:11:57 +03:00
|
|
|
<template>
|
|
|
|
<div>
|
2021-08-06 16:29:19 +03:00
|
|
|
<MkTextarea :model-value="value" @update:modelValue="updateValue($event)">
|
|
|
|
<template #label>{{ hpml.interpolate(block.text) }}</template>
|
|
|
|
</MkTextarea>
|
2019-04-29 03:11:57 +03:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2021-01-30 03:59:05 +02:00
|
|
|
import { computed, defineComponent, PropType } from 'vue';
|
2021-09-29 18:50:45 +03:00
|
|
|
import MkTextarea from '../form/textarea.vue';
|
2021-11-11 19:02:25 +02:00
|
|
|
import * as os from '@/os';
|
|
|
|
import { Hpml } from '@/scripts/hpml/evaluator';
|
|
|
|
import { HpmlTextInput } from '@/scripts/hpml';
|
|
|
|
import { TextInputVarBlock } from '@/scripts/hpml/block';
|
2019-04-29 03:11:57 +03:00
|
|
|
|
2020-10-17 14:12:00 +03:00
|
|
|
export default defineComponent({
|
2020-01-29 21:37:25 +02:00
|
|
|
components: {
|
|
|
|
MkTextarea
|
|
|
|
},
|
2019-04-29 03:11:57 +03:00
|
|
|
props: {
|
2021-01-30 03:59:05 +02:00
|
|
|
block: {
|
|
|
|
type: Object as PropType<TextInputVarBlock>,
|
2019-04-29 03:11:57 +03:00
|
|
|
required: true
|
|
|
|
},
|
2020-04-20 15:35:27 +03:00
|
|
|
hpml: {
|
2021-01-30 03:59:05 +02:00
|
|
|
type: Object as PropType<Hpml>,
|
2019-04-29 03:11:57 +03:00
|
|
|
required: true
|
|
|
|
}
|
|
|
|
},
|
2021-01-30 03:59:05 +02:00
|
|
|
setup(props, ctx) {
|
|
|
|
const value = computed(() => {
|
|
|
|
return props.hpml.vars.value[props.block.name];
|
|
|
|
});
|
|
|
|
|
|
|
|
function updateValue(newValue) {
|
|
|
|
props.hpml.updatePageVar(props.block.name, newValue);
|
|
|
|
props.hpml.eval();
|
|
|
|
}
|
|
|
|
|
2019-04-29 03:11:57 +03:00
|
|
|
return {
|
2021-01-30 03:59:05 +02:00
|
|
|
value,
|
|
|
|
updateValue
|
2019-04-29 03:11:57 +03:00
|
|
|
};
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|