2019-04-29 02:11:57 +02:00
|
|
|
<template>
|
2023-04-08 02:01:42 +02:00
|
|
|
<div>
|
|
|
|
<MkInput
|
|
|
|
class="kudkigyw"
|
|
|
|
:model-value="value"
|
|
|
|
type="number"
|
|
|
|
@update:modelValue="updateValue($event)"
|
|
|
|
>
|
|
|
|
<template #label>{{ hpml.interpolate(block.text) }}</template>
|
|
|
|
</MkInput>
|
|
|
|
</div>
|
2019-04-29 02:11:57 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2023-04-08 02:01:42 +02:00
|
|
|
import { computed, defineComponent, PropType } from "vue";
|
|
|
|
import MkInput from "../form/input.vue";
|
|
|
|
import { Hpml } from "@/scripts/hpml/evaluator";
|
|
|
|
import { NumberInputVarBlock } 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: {
|
2023-04-08 02:01:42 +02:00
|
|
|
MkInput,
|
2020-01-29 20:37:25 +01:00
|
|
|
},
|
2019-04-29 02:11:57 +02:00
|
|
|
props: {
|
2021-01-30 02:59:05 +01:00
|
|
|
block: {
|
|
|
|
type: Object as PropType<NumberInputVarBlock>,
|
2023-04-08 02:01:42 +02:00
|
|
|
required: true,
|
2019-04-29 02:11:57 +02:00
|
|
|
},
|
2020-04-20 14:35:27 +02:00
|
|
|
hpml: {
|
2021-01-30 02:59:05 +01:00
|
|
|
type: Object as PropType<Hpml>,
|
2023-04-08 02:01:42 +02:00
|
|
|
required: true,
|
|
|
|
},
|
2019-04-29 02:11:57 +02:00
|
|
|
},
|
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,
|
2023-04-08 02:01:42 +02:00
|
|
|
updateValue,
|
2019-04-29 02:11:57 +02:00
|
|
|
};
|
2023-04-08 02:01:42 +02:00
|
|
|
},
|
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>
|