2019-04-29 02:11:57 +02:00
|
|
|
<template>
|
|
|
|
<div>
|
2021-01-30 02:59:05 +01:00
|
|
|
<MkInput class="kudkigyw" :value="value" @update:value="updateValue($event)" type="text">{{ hpml.interpolate(block.text) }}</MkInput>
|
2019-04-29 02:11:57 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2021-01-30 02:59:05 +01:00
|
|
|
import { computed, defineComponent, PropType } from 'vue';
|
2020-01-29 20:37:25 +01:00
|
|
|
import MkInput from '../ui/input.vue';
|
2020-10-17 13:12:00 +02:00
|
|
|
import * as os from '@/os';
|
2021-01-30 02:59:05 +01:00
|
|
|
import { Hpml } from '@/scripts/hpml/evaluator';
|
|
|
|
import { TextInputVarBlock } from '@/scripts/hpml/block';
|
2019-04-29 02:11:57 +02:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
export default defineComponent({
|
2020-01-29 20:37:25 +01:00
|
|
|
components: {
|
|
|
|
MkInput
|
|
|
|
},
|
2019-04-29 02:11:57 +02:00
|
|
|
props: {
|
2021-01-30 02:59:05 +01:00
|
|
|
block: {
|
|
|
|
type: Object as PropType<TextInputVarBlock>,
|
2019-04-29 02:11:57 +02:00
|
|
|
required: true
|
|
|
|
},
|
2020-04-20 14:35:27 +02:00
|
|
|
hpml: {
|
2021-01-30 02:59:05 +01:00
|
|
|
type: Object as PropType<Hpml>,
|
2019-04-29 02:11:57 +02:00
|
|
|
required: true
|
|
|
|
}
|
|
|
|
},
|
2021-01-30 02:59:05 +01: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 02:11:57 +02:00
|
|
|
return {
|
2021-01-30 02:59:05 +01:00
|
|
|
value,
|
|
|
|
updateValue
|
2019-04-29 02:11:57 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
.kudkigyw {
|
|
|
|
display: inline-block;
|
|
|
|
min-width: 300px;
|
|
|
|
max-width: 450px;
|
|
|
|
margin: 8px 0;
|
|
|
|
}
|
2019-04-29 02:11:57 +02:00
|
|
|
</style>
|