summaryrefslogtreecommitdiff
path: root/src/client/pages/page-editor/els/page-editor.el.button.vue
blob: 9821201666a0baedc75ac58d32cf412e4a7331e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<template>
<x-container @remove="() => $emit('remove')" :draggable="true">
	<template #header><fa :icon="faBolt"/> {{ $t('_pages.blocks.button') }}</template>

	<section class="xfhsjczc">
		<mk-input v-model="value.text"><span>{{ $t('_pages.blocks._button.text') }}</span></mk-input>
		<mk-switch v-model="value.primary"><span>{{ $t('_pages.blocks._button.colored') }}</span></mk-switch>
		<mk-select v-model="value.action">
			<template #label>{{ $t('_pages.blocks._button.action') }}</template>
			<option value="dialog">{{ $t('_pages.blocks._button._action.dialog') }}</option>
			<option value="resetRandom">{{ $t('_pages.blocks._button._action.resetRandom') }}</option>
			<option value="pushEvent">{{ $t('_pages.blocks._button._action.pushEvent') }}</option>
			<option value="callAiScript">{{ $t('_pages.blocks._button._action.callAiScript') }}</option>
		</mk-select>
		<template v-if="value.action === 'dialog'">
			<mk-input v-model="value.content"><span>{{ $t('_pages.blocks._button._action._dialog.content') }}</span></mk-input>
		</template>
		<template v-else-if="value.action === 'pushEvent'">
			<mk-input v-model="value.event"><span>{{ $t('_pages.blocks._button._action._pushEvent.event') }}</span></mk-input>
			<mk-input v-model="value.message"><span>{{ $t('_pages.blocks._button._action._pushEvent.message') }}</span></mk-input>
			<mk-select v-model="value.var">
				<template #label>{{ $t('_pages.blocks._button._action._pushEvent.variable') }}</template>
				<option :value="null">{{ $t('_pages.blocks._button._action._pushEvent.no-variable') }}</option>
				<option v-for="v in hpml.getVarsByType()" :value="v.name">{{ v.name }}</option>
				<optgroup :label="$t('_pages.script.pageVariables')">
					<option v-for="v in hpml.getPageVarsByType()" :value="v">{{ v }}</option>
				</optgroup>
				<optgroup :label="$t('_pages.script.enviromentVariables')">
					<option v-for="v in hpml.getEnvVarsByType()" :value="v">{{ v }}</option>
				</optgroup>
			</mk-select>
		</template>
		<template v-else-if="value.action === 'callAiScript'">
			<mk-input v-model="value.fn"><span>{{ $t('_pages.blocks._button._action._callAiScript.functionName') }}</span></mk-input>
		</template>
	</section>
</x-container>
</template>

<script lang="ts">
import Vue from 'vue';
import { faBolt } from '@fortawesome/free-solid-svg-icons';
import XContainer from '../page-editor.container.vue';
import MkSelect from '../../../components/ui/select.vue';
import MkInput from '../../../components/ui/input.vue';
import MkSwitch from '../../../components/ui/switch.vue';

export default Vue.extend({
	components: {
		XContainer, MkSelect, MkInput, MkSwitch
	},

	props: {
		value: {
			required: true
		},
		hpml: {
			required: true,
		},
	},

	data() {
		return {
			faBolt
		};
	},

	created() {
		if (this.value.text == null) Vue.set(this.value, 'text', '');
		if (this.value.action == null) Vue.set(this.value, 'action', 'dialog');
		if (this.value.content == null) Vue.set(this.value, 'content', null);
		if (this.value.event == null) Vue.set(this.value, 'event', null);
		if (this.value.message == null) Vue.set(this.value, 'message', null);
		if (this.value.primary == null) Vue.set(this.value, 'primary', false);
		if (this.value.var == null) Vue.set(this.value, 'var', null);
		if (this.value.fn == null) Vue.set(this.value, 'fn', null);
	},
});
</script>

<style lang="scss" scoped>
.xfhsjczc {
	padding: 0 16px 0 16px;
}
</style>