2019-04-29 02:11:57 +02:00
|
|
|
<template>
|
|
|
|
<div>
|
2019-07-06 16:11:16 +02:00
|
|
|
<ui-button class="kudkigyw" @click="click()" :primary="value.primary">{{ script.interpolate(value.text) }}</ui-button>
|
2019-04-29 02:11:57 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
props: {
|
|
|
|
value: {
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
script: {
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
click() {
|
|
|
|
if (this.value.action === 'dialog') {
|
2019-05-01 08:17:24 +02:00
|
|
|
this.script.eval();
|
2019-04-29 02:11:57 +02:00
|
|
|
this.$root.dialog({
|
|
|
|
text: this.script.interpolate(this.value.content)
|
|
|
|
});
|
|
|
|
} else if (this.value.action === 'resetRandom') {
|
|
|
|
this.script.aiScript.updateRandomSeed(Math.random());
|
2019-05-01 08:17:24 +02:00
|
|
|
this.script.eval();
|
2019-07-06 11:14:50 +02:00
|
|
|
} else if (this.value.action === 'pushEvent') {
|
|
|
|
this.$root.api('page-push', {
|
|
|
|
pageId: this.script.page.id,
|
2019-07-06 22:12:31 +02:00
|
|
|
event: this.value.event,
|
|
|
|
...(this.value.var ? {
|
|
|
|
var: this.script.vars[this.value.var]
|
|
|
|
} : {})
|
2019-07-06 11:14:50 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
this.$root.dialog({
|
|
|
|
type: 'success',
|
|
|
|
text: this.script.interpolate(this.value.message)
|
|
|
|
});
|
2019-04-29 02:11:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
.kudkigyw
|
|
|
|
display inline-block
|
|
|
|
min-width 300px
|
|
|
|
max-width 450px
|
|
|
|
margin 8px 0
|
|
|
|
</style>
|