mirror of
https://github.com/paricafe/misskey.git
synced 2025-02-16 18:57:28 -06:00
86 lines
3.4 KiB
Vue
86 lines
3.4 KiB
Vue
<template>
|
|
<!-- eslint-disable vue/no-mutating-props -->
|
|
<XContainer :draggable="true" @remove="() => $emit('remove')">
|
|
<template #header><i class="fas fa-bolt"></i> {{ $ts._pages.blocks.button }}</template>
|
|
|
|
<section class="xfhsjczc">
|
|
<MkInput v-model="value.text"><template #label>{{ $ts._pages.blocks._button.text }}</template></MkInput>
|
|
<MkSwitch v-model="value.primary"><span>{{ $ts._pages.blocks._button.colored }}</span></MkSwitch>
|
|
<MkSelect v-model="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.content"><template #label>{{ $ts._pages.blocks._button._action._dialog.content }}</template></MkInput>
|
|
</template>
|
|
<template v-else-if="value.action === 'pushEvent'">
|
|
<MkInput v-model="value.event"><template #label>{{ $ts._pages.blocks._button._action._pushEvent.event }}</template></MkInput>
|
|
<MkInput v-model="value.message"><template #label>{{ $ts._pages.blocks._button._action._pushEvent.message }}</template></MkInput>
|
|
<MkSelect v-model="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.fn"><template #label>{{ $ts._pages.blocks._button._action._callAiScript.functionName }}</template></MkInput>
|
|
</template>
|
|
</section>
|
|
</XContainer>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
/* eslint-disable vue/no-mutating-props */
|
|
import { defineComponent } from 'vue';
|
|
import XContainer from '../page-editor.container.vue';
|
|
import MkSelect from '@/components/form/select.vue';
|
|
import MkInput from '@/components/form/input.vue';
|
|
import MkSwitch from '@/components/form/switch.vue';
|
|
import * as os from '@/os';
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
XContainer, MkSelect, MkInput, MkSwitch
|
|
},
|
|
|
|
props: {
|
|
value: {
|
|
required: true
|
|
},
|
|
hpml: {
|
|
required: true,
|
|
},
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
};
|
|
},
|
|
|
|
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>
|