summaryrefslogtreecommitdiff
path: root/src/client/pages/page-editor/els/page-editor.el.button.vue
blob: 846e3f644d34910cc1c3e05a917d1155073ad85e (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
86
<template>
<XContainer @remove="() => $emit('remove')" :draggable="true">
	<template #header><Fa :icon="faBolt"/> {{ $ts._pages.blocks.button }}</template>

	<section class="xfhsjczc">
		<MkInput v-model:value="value.text"><span>{{ $ts._pages.blocks._button.text }}</span></MkInput>
		<MkSwitch v-model:value="value.primary"><span>{{ $ts._pages.blocks._button.colored }}</span></MkSwitch>
		<MkSelect v-model:value="value.action">
			<template #label>{{ $ts._pages.blocks._button.action }}</template>
			<option value="dialog">{{ $ts._pages.blocks._button._action.dialog }}</option>
			<option value="resetRandom">{{ $ts._pages.blocks._button._action.resetRandom }}</option>
			<option value="pushEvent">{{ $ts._pages.blocks._button._action.pushEvent }}</option>
			<option value="callAiScript">{{ $ts._pages.blocks._button._action.callAiScript }}</option>
		</MkSelect>
		<template v-if="value.action === 'dialog'">
			<MkInput v-model:value="value.content"><span>{{ $ts._pages.blocks._button._action._dialog.content }}</span></MkInput>
		</template>
		<template v-else-if="value.action === 'pushEvent'">
			<MkInput v-model:value="value.event"><span>{{ $ts._pages.blocks._button._action._pushEvent.event }}</span></MkInput>
			<MkInput v-model:value="value.message"><span>{{ $ts._pages.blocks._button._action._pushEvent.message }}</span></MkInput>
			<MkSelect v-model:value="value.var">
				<template #label>{{ $ts._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="$ts._pages.script.pageVariables">
					<option v-for="v in hpml.getPageVarsByType()" :value="v">{{ v }}</option>
				</optgroup>
				<optgroup :label="$ts._pages.script.enviromentVariables">
					<option v-for="v in hpml.getEnvVarsByType()" :value="v">{{ v }}</option>
				</optgroup>
			</MkSelect>
		</template>
		<template v-else-if="value.action === 'callAiScript'">
			<MkInput v-model:value="value.fn"><span>{{ $ts._pages.blocks._button._action._callAiScript.functionName }}</span></MkInput>
		</template>
	</section>
</XContainer>
</template>

<script lang="ts">
import { defineComponent } 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';
import * as os from '@/os';

export default defineComponent({
	components: {
		XContainer, MkSelect, MkInput, MkSwitch
	},

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

	data() {
		return {
			faBolt
		};
	},

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

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