2019-04-29 00:11:57 +00:00
|
|
|
<template>
|
|
|
|
<div>
|
2022-12-22 07:51:48 +00:00
|
|
|
<MkInput class="kudkigyw" :model-value="value" type="text" @update:model-value="updateValue($event)">
|
2021-08-06 13:29:19 +00:00
|
|
|
<template #label>{{ hpml.interpolate(block.text) }}</template>
|
|
|
|
</MkInput>
|
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';
|
2021-09-29 15:50:45 +00:00
|
|
|
import MkInput from '../form/input.vue';
|
2021-11-11 17:02:25 +00:00
|
|
|
import * as os from '@/os';
|
|
|
|
import { Hpml } from '@/scripts/hpml/evaluator';
|
|
|
|
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: {
|
2022-12-22 07:01:59 +00:00
|
|
|
MkInput,
|
2020-01-29 19:37:25 +00:00
|
|
|
},
|
2019-04-29 00:11:57 +00:00
|
|
|
props: {
|
2021-01-30 01:59:05 +00:00
|
|
|
block: {
|
|
|
|
type: Object as PropType<TextInputVarBlock>,
|
2022-12-22 07:01:59 +00:00
|
|
|
required: true,
|
2019-04-29 00:11:57 +00:00
|
|
|
},
|
2020-04-20 12:35:27 +00:00
|
|
|
hpml: {
|
2021-01-30 01:59:05 +00:00
|
|
|
type: Object as PropType<Hpml>,
|
2022-12-22 07:01:59 +00:00
|
|
|
required: true,
|
|
|
|
},
|
2019-04-29 00:11:57 +00:00
|
|
|
},
|
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,
|
2022-12-22 07:01:59 +00:00
|
|
|
updateValue,
|
2019-04-29 00:11:57 +00:00
|
|
|
};
|
2022-12-22 07:01:59 +00:00
|
|
|
},
|
2019-04-29 00:11:57 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2022-12-27 09:01:06 +00:00
|
|
|
<style lang="scss">
|
2020-01-29 19:37:25 +00:00
|
|
|
.kudkigyw {
|
|
|
|
display: inline-block;
|
|
|
|
min-width: 300px;
|
|
|
|
max-width: 450px;
|
|
|
|
margin: 8px 0;
|
|
|
|
}
|
2019-04-29 00:11:57 +00:00
|
|
|
</style>
|