iceshrimp/packages/client/src/components/page/page.switch.vue
2023-04-07 17:01:42 -07:00

59 lines
1.1 KiB
Vue

<template>
<div class="hkcxmtwj">
<MkSwitch
:model-value="value"
@update:modelValue="updateValue($event)"
>{{ hpml.interpolate(block.text) }}</MkSwitch
>
</div>
</template>
<script lang="ts">
import { computed, defineComponent, PropType } from "vue";
import MkSwitch from "../form/switch.vue";
import * as os from "@/os";
import { Hpml } from "@/scripts/hpml/evaluator";
import { SwitchVarBlock } from "@/scripts/hpml/block";
export default defineComponent({
components: {
MkSwitch,
},
props: {
block: {
type: Object as PropType<SwitchVarBlock>,
required: true,
},
hpml: {
type: Object as PropType<Hpml>,
required: true,
},
},
setup(props, ctx) {
const value = computed(() => {
return props.hpml.vars.value[props.block.name];
});
function updateValue(newValue: boolean) {
props.hpml.updatePageVar(props.block.name, newValue);
props.hpml.eval();
}
return {
value,
updateValue,
};
},
});
</script>
<style lang="scss" scoped>
.hkcxmtwj {
display: inline-block;
margin: 16px auto;
& + .hkcxmtwj {
margin-left: 16px;
}
}
</style>