2019-04-29 00:11:57 +00:00
|
|
|
<template>
|
|
|
|
<div>
|
2021-01-30 01:59:05 +00:00
|
|
|
<MkTextarea :value="value" @update:value="updateValue($event)">{{ hpml.interpolate(block.text) }}</MkTextarea>
|
2019-04-29 00:11:57 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2021-01-30 01:59:05 +00:00
|
|
|
import { computed, defineComponent, PropType } from 'vue';
|
2020-01-29 19:37:25 +00:00
|
|
|
import MkTextarea from '../ui/textarea.vue';
|
2020-10-17 11:12:00 +00:00
|
|
|
import * as os from '@/os';
|
2021-01-30 01:59:05 +00:00
|
|
|
import { Hpml } from '@/scripts/hpml/evaluator';
|
|
|
|
import { HpmlTextInput } from '@/scripts/hpml';
|
|
|
|
import { TextInputVarBlock } from '@/scripts/hpml/block';
|
2019-04-29 00:11:57 +00:00
|
|
|
|
2020-10-17 11:12:00 +00:00
|
|
|
export default defineComponent({
|
2020-01-29 19:37:25 +00:00
|
|
|
components: {
|
|
|
|
MkTextarea
|
|
|
|
},
|
2019-04-29 00:11:57 +00:00
|
|
|
props: {
|
2021-01-30 01:59:05 +00:00
|
|
|
block: {
|
|
|
|
type: Object as PropType<TextInputVarBlock>,
|
2019-04-29 00:11:57 +00:00
|
|
|
required: true
|
|
|
|
},
|
2020-04-20 12:35:27 +00:00
|
|
|
hpml: {
|
2021-01-30 01:59:05 +00:00
|
|
|
type: Object as PropType<Hpml>,
|
2019-04-29 00:11:57 +00:00
|
|
|
required: true
|
|
|
|
}
|
|
|
|
},
|
2021-01-30 01:59:05 +00: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 00:11:57 +00:00
|
|
|
return {
|
2021-01-30 01:59:05 +00:00
|
|
|
value,
|
|
|
|
updateValue
|
2019-04-29 00:11:57 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|