2019-04-29 02:11:57 +02:00
|
|
|
<template>
|
|
|
|
<div>
|
2020-01-29 20:37:25 +01:00
|
|
|
<mk-button class="kudkigyw" @click="click()" :primary="value.primary">{{ script.interpolate(value.text) }}</mk-button>
|
2019-04-29 02:11:57 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2020-01-29 20:37:25 +01:00
|
|
|
import MkButton from '../ui/button.vue';
|
2019-04-29 02:11:57 +02:00
|
|
|
|
|
|
|
export default Vue.extend({
|
2020-01-29 20:37:25 +01:00
|
|
|
components: {
|
|
|
|
MkButton
|
|
|
|
},
|
2019-04-29 02:11:57 +02:00
|
|
|
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') {
|
2020-04-12 20:23:23 +02:00
|
|
|
this.script.aoiScript.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)
|
|
|
|
});
|
2020-04-12 20:23:23 +02:00
|
|
|
} else if (this.value.action === 'callAiScript') {
|
|
|
|
this.script.callAiScript(this.value.fn);
|
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: 200px;
|
|
|
|
max-width: 450px;
|
|
|
|
margin: 8px 0;
|
|
|
|
}
|
2019-04-29 02:11:57 +02:00
|
|
|
</style>
|