2019-05-02 03:55:59 -05:00
|
|
|
<template>
|
|
|
|
<div>
|
2021-01-29 19:59:05 -06:00
|
|
|
<MkButton class="llumlmnx" @click="click()">{{ hpml.interpolate(block.text) }}</MkButton>
|
2019-05-02 03:55:59 -05:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2021-01-29 19:59:05 -06:00
|
|
|
import { computed, defineComponent, PropType } from 'vue';
|
2020-01-29 13:37:25 -06:00
|
|
|
import MkButton from '../ui/button.vue';
|
2021-03-23 03:30:14 -05:00
|
|
|
import * as os from '@client/os';
|
|
|
|
import { CounterVarBlock } from '@client/scripts/hpml/block';
|
|
|
|
import { Hpml } from '@client/scripts/hpml/evaluator';
|
2019-05-02 03:55:59 -05:00
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
export default defineComponent({
|
2020-01-29 13:37:25 -06:00
|
|
|
components: {
|
|
|
|
MkButton
|
|
|
|
},
|
2019-05-02 03:55:59 -05:00
|
|
|
props: {
|
2021-01-29 19:59:05 -06:00
|
|
|
block: {
|
|
|
|
type: Object as PropType<CounterVarBlock>,
|
2019-05-02 03:55:59 -05:00
|
|
|
required: true
|
|
|
|
},
|
2020-04-20 07:35:27 -05:00
|
|
|
hpml: {
|
2021-01-29 19:59:05 -06:00
|
|
|
type: Object as PropType<Hpml>,
|
2019-05-02 03:55:59 -05:00
|
|
|
required: true
|
|
|
|
}
|
|
|
|
},
|
2021-01-29 19:59:05 -06:00
|
|
|
setup(props, ctx) {
|
|
|
|
const value = computed(() => {
|
|
|
|
return props.hpml.vars.value[props.block.name];
|
|
|
|
});
|
|
|
|
|
|
|
|
function click() {
|
|
|
|
props.hpml.updatePageVar(props.block.name, value.value + (props.block.inc || 1));
|
|
|
|
props.hpml.eval();
|
|
|
|
}
|
|
|
|
|
2019-05-02 03:55:59 -05:00
|
|
|
return {
|
2021-01-29 19:59:05 -06:00
|
|
|
click
|
2019-05-02 03:55:59 -05:00
|
|
|
};
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
.llumlmnx {
|
|
|
|
display: inline-block;
|
|
|
|
min-width: 300px;
|
|
|
|
max-width: 450px;
|
|
|
|
margin: 8px 0;
|
|
|
|
}
|
2019-05-02 03:55:59 -05:00
|
|
|
</style>
|