2019-04-29 00:11:57 +00:00
|
|
|
<template>
|
2019-05-10 07:04:32 +00:00
|
|
|
<x-container :removable="removable" @remove="() => $emit('remove')" :error="error" :warn="warn" :draggable="draggable">
|
2019-04-29 00:11:57 +00:00
|
|
|
<template #header><fa v-if="icon" :icon="icon"/> <template v-if="title">{{ title }} <span class="turmquns" v-if="typeText">({{ typeText }})</span></template><template v-else-if="typeText">{{ typeText }}</template></template>
|
|
|
|
<template #func>
|
2020-04-12 18:23:23 +00:00
|
|
|
<button @click="changeType()" class="_button">
|
2019-04-29 00:11:57 +00:00
|
|
|
<fa :icon="faPencilAlt"/>
|
|
|
|
</button>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<section v-if="value.type === null" class="pbglfege" @click="changeType()">
|
2020-01-29 19:37:25 +00:00
|
|
|
{{ $t('_pages.script.emptySlot') }}
|
2019-04-29 00:11:57 +00:00
|
|
|
</section>
|
|
|
|
<section v-else-if="value.type === 'text'" class="tbwccoaw">
|
|
|
|
<input v-model="value.value"/>
|
|
|
|
</section>
|
|
|
|
<section v-else-if="value.type === 'multiLineText'" class="tbwccoaw">
|
|
|
|
<textarea v-model="value.value"></textarea>
|
|
|
|
</section>
|
2019-04-29 05:51:04 +00:00
|
|
|
<section v-else-if="value.type === 'textList'" class="tbwccoaw">
|
2020-01-29 19:37:25 +00:00
|
|
|
<textarea v-model="value.value" :placeholder="$t('_pages.script.blocks._textList.info')"></textarea>
|
2019-04-29 00:11:57 +00:00
|
|
|
</section>
|
|
|
|
<section v-else-if="value.type === 'number'" class="tbwccoaw">
|
|
|
|
<input v-model="value.value" type="number"/>
|
|
|
|
</section>
|
|
|
|
<section v-else-if="value.type === 'ref'" class="hpdwcrvs">
|
|
|
|
<select v-model="value.value">
|
2020-04-20 12:35:27 +00:00
|
|
|
<option v-for="v in hpml.getVarsByType(getExpectedType ? getExpectedType() : null).filter(x => x.name !== name)" :value="v.name">{{ v.name }}</option>
|
2020-01-29 19:37:25 +00:00
|
|
|
<optgroup :label="$t('_pages.script.argVariables')">
|
2019-05-01 05:54:34 +00:00
|
|
|
<option v-for="v in fnSlots" :value="v.name">{{ v.name }}</option>
|
|
|
|
</optgroup>
|
2020-01-29 19:37:25 +00:00
|
|
|
<optgroup :label="$t('_pages.script.pageVariables')">
|
2020-04-20 12:35:27 +00:00
|
|
|
<option v-for="v in hpml.getPageVarsByType(getExpectedType ? getExpectedType() : null)" :value="v">{{ v }}</option>
|
2019-04-29 00:11:57 +00:00
|
|
|
</optgroup>
|
2020-01-29 19:37:25 +00:00
|
|
|
<optgroup :label="$t('_pages.script.enviromentVariables')">
|
2020-04-20 12:35:27 +00:00
|
|
|
<option v-for="v in hpml.getEnvVarsByType(getExpectedType ? getExpectedType() : null)" :value="v">{{ v }}</option>
|
2019-04-29 00:11:57 +00:00
|
|
|
</optgroup>
|
|
|
|
</select>
|
|
|
|
</section>
|
2020-04-12 18:23:23 +00:00
|
|
|
<section v-else-if="value.type === 'aiScriptVar'" class="tbwccoaw">
|
|
|
|
<input v-model="value.value"/>
|
|
|
|
</section>
|
2019-05-01 01:05:33 +00:00
|
|
|
<section v-else-if="value.type === 'fn'" class="" style="padding:0 16px 16px 16px;">
|
2020-01-29 19:37:25 +00:00
|
|
|
<mk-textarea v-model="slots">
|
2020-07-24 16:56:52 +00:00
|
|
|
<span>{{ $t('_pages.script.blocks._fn.slots') }}</span>
|
2020-01-29 19:37:25 +00:00
|
|
|
<template #desc>{{ $t('_pages.script.blocks._fn.slots-info') }}</template>
|
|
|
|
</mk-textarea>
|
2020-04-20 12:35:27 +00:00
|
|
|
<x-v v-if="value.value.expression" v-model="value.value.expression" :title="$t(`_pages.script.blocks._fn.arg1`)" :get-expected-type="() => null" :hpml="hpml" :fn-slots="value.value.slots" :name="name"/>
|
2019-04-29 00:11:57 +00:00
|
|
|
</section>
|
|
|
|
<section v-else-if="value.type.startsWith('fn:')" class="" style="padding:16px;">
|
2020-04-20 12:35:27 +00:00
|
|
|
<x-v v-for="(x, i) in value.args" v-model="value.args[i]" :title="hpml.getVarByName(value.type.split(':')[1]).value.slots[i].name" :get-expected-type="() => null" :hpml="hpml" :name="name" :key="i"/>
|
2019-04-29 00:11:57 +00:00
|
|
|
</section>
|
|
|
|
<section v-else class="" style="padding:16px;">
|
2020-04-20 12:35:27 +00:00
|
|
|
<x-v v-for="(x, i) in value.args" v-model="value.args[i]" :title="$t(`_pages.script.blocks._${value.type}.arg${i + 1}`)" :get-expected-type="() => _getExpectedType(i)" :hpml="hpml" :name="name" :fn-slots="fnSlots" :key="i"/>
|
2019-04-29 00:11:57 +00:00
|
|
|
</section>
|
|
|
|
</x-container>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2019-05-01 10:50:56 +00:00
|
|
|
import { faPencilAlt, faPlug } from '@fortawesome/free-solid-svg-icons';
|
2019-08-18 03:42:58 +00:00
|
|
|
import { v4 as uuid } from 'uuid';
|
2020-01-29 19:37:25 +00:00
|
|
|
import XContainer from './page-editor.container.vue';
|
|
|
|
import MkTextarea from '../../components/ui/textarea.vue';
|
2020-04-20 12:35:27 +00:00
|
|
|
import { isLiteralBlock, funcDefs, blockDefs } from '../../scripts/hpml/index';
|
2019-04-29 00:11:57 +00:00
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
components: {
|
2020-01-29 19:37:25 +00:00
|
|
|
XContainer, MkTextarea
|
2019-04-29 00:11:57 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
inject: ['getScriptBlockList'],
|
|
|
|
|
|
|
|
props: {
|
|
|
|
getExpectedType: {
|
|
|
|
required: false,
|
|
|
|
default: null
|
|
|
|
},
|
|
|
|
value: {
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
title: {
|
|
|
|
required: false
|
|
|
|
},
|
|
|
|
removable: {
|
|
|
|
required: false,
|
|
|
|
default: false
|
|
|
|
},
|
2020-04-20 12:35:27 +00:00
|
|
|
hpml: {
|
2019-04-29 00:11:57 +00:00
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
name: {
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
fnSlots: {
|
|
|
|
required: false,
|
|
|
|
},
|
2019-05-10 07:04:32 +00:00
|
|
|
draggable: {
|
|
|
|
required: false,
|
|
|
|
default: false
|
|
|
|
}
|
2019-04-29 00:11:57 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
error: null,
|
|
|
|
warn: null,
|
|
|
|
slots: '',
|
2019-05-01 10:45:05 +00:00
|
|
|
faPencilAlt
|
2019-04-29 00:11:57 +00:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
|
|
|
icon(): any {
|
|
|
|
if (this.value.type === null) return null;
|
2019-05-01 10:50:56 +00:00
|
|
|
if (this.value.type.startsWith('fn:')) return faPlug;
|
2019-05-01 09:33:11 +00:00
|
|
|
return blockDefs.find(x => x.type === this.value.type).icon;
|
2019-04-29 00:11:57 +00:00
|
|
|
},
|
|
|
|
typeText(): any {
|
|
|
|
if (this.value.type === null) return null;
|
2019-05-01 05:54:34 +00:00
|
|
|
if (this.value.type.startsWith('fn:')) return this.value.type.split(':')[1];
|
2020-01-29 19:37:25 +00:00
|
|
|
return this.$t(`_pages.script.blocks.${this.value.type}`);
|
2019-04-29 00:11:57 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
watch: {
|
|
|
|
slots() {
|
2019-05-01 01:05:33 +00:00
|
|
|
this.value.value.slots = this.slots.split('\n').map(x => ({
|
|
|
|
name: x,
|
|
|
|
type: null
|
|
|
|
}));
|
2019-04-29 00:11:57 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
beforeCreate() {
|
|
|
|
this.$options.components.XV = require('./page-editor.script-block.vue').default;
|
|
|
|
},
|
|
|
|
|
|
|
|
created() {
|
|
|
|
if (this.value.value == null) Vue.set(this.value, 'value', null);
|
|
|
|
|
2019-05-01 01:05:33 +00:00
|
|
|
if (this.value.value && this.value.value.slots) this.slots = this.value.value.slots.map(x => x.name).join('\n');
|
2019-04-29 00:11:57 +00:00
|
|
|
|
|
|
|
this.$watch('value.type', (t) => {
|
|
|
|
this.warn = null;
|
|
|
|
|
|
|
|
if (this.value.type === 'fn') {
|
2019-08-18 03:42:58 +00:00
|
|
|
const id = uuid();
|
2019-04-29 00:11:57 +00:00
|
|
|
this.value.value = {};
|
|
|
|
Vue.set(this.value.value, 'slots', []);
|
|
|
|
Vue.set(this.value.value, 'expression', { id, type: null });
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.value.type && this.value.type.startsWith('fn:')) {
|
|
|
|
const fnName = this.value.type.split(':')[1];
|
2020-04-20 12:35:27 +00:00
|
|
|
const fn = this.hpml.getVarByName(fnName);
|
2019-04-29 00:11:57 +00:00
|
|
|
|
|
|
|
const empties = [];
|
|
|
|
for (let i = 0; i < fn.value.slots.length; i++) {
|
2019-08-18 03:42:58 +00:00
|
|
|
const id = uuid();
|
2019-04-29 00:11:57 +00:00
|
|
|
empties.push({ id, type: null });
|
|
|
|
}
|
|
|
|
Vue.set(this.value, 'args', empties);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-05-01 09:33:11 +00:00
|
|
|
if (isLiteralBlock(this.value)) return;
|
2019-04-29 00:11:57 +00:00
|
|
|
|
|
|
|
const empties = [];
|
2019-05-01 09:33:11 +00:00
|
|
|
for (let i = 0; i < funcDefs[this.value.type].in.length; i++) {
|
2019-08-18 03:42:58 +00:00
|
|
|
const id = uuid();
|
2019-04-29 00:11:57 +00:00
|
|
|
empties.push({ id, type: null });
|
|
|
|
}
|
|
|
|
Vue.set(this.value, 'args', empties);
|
|
|
|
|
2019-05-01 09:33:11 +00:00
|
|
|
for (let i = 0; i < funcDefs[this.value.type].in.length; i++) {
|
|
|
|
const inType = funcDefs[this.value.type].in[i];
|
2019-04-29 00:11:57 +00:00
|
|
|
if (typeof inType !== 'number') {
|
|
|
|
if (inType === 'number') this.value.args[i].type = 'number';
|
|
|
|
if (inType === 'string') this.value.args[i].type = 'text';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
this.$watch('value.args', (args) => {
|
|
|
|
if (args == null) {
|
|
|
|
this.warn = null;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const emptySlotIndex = args.findIndex(x => x.type === null);
|
|
|
|
if (emptySlotIndex !== -1 && emptySlotIndex < args.length) {
|
|
|
|
this.warn = {
|
|
|
|
slot: emptySlotIndex
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
this.warn = null;
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
deep: true
|
|
|
|
});
|
|
|
|
|
2020-04-20 12:35:27 +00:00
|
|
|
this.$watch('hpml.variables', () => {
|
2019-04-29 00:11:57 +00:00
|
|
|
if (this.type != null && this.value) {
|
2020-04-20 12:35:27 +00:00
|
|
|
this.error = this.hpml.typeCheck(this.value);
|
2019-04-29 00:11:57 +00:00
|
|
|
}
|
|
|
|
}, {
|
|
|
|
deep: true
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
async changeType() {
|
|
|
|
const { canceled, result: type } = await this.$root.dialog({
|
|
|
|
type: null,
|
2020-03-22 01:51:40 +00:00
|
|
|
title: this.$t('_pages.selectType'),
|
2019-04-29 00:11:57 +00:00
|
|
|
select: {
|
|
|
|
groupedItems: this.getScriptBlockList(this.getExpectedType ? this.getExpectedType() : null)
|
|
|
|
},
|
|
|
|
showCancelButton: true
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
this.value.type = type;
|
|
|
|
},
|
|
|
|
|
|
|
|
_getExpectedType(slot: number) {
|
2020-04-20 12:35:27 +00:00
|
|
|
return this.hpml.getExpectedType(this.value, slot);
|
2019-04-29 00:11:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
.turmquns {
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
2019-04-29 00:11:57 +00:00
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
.pbglfege {
|
|
|
|
opacity: 0.5;
|
|
|
|
padding: 16px;
|
|
|
|
text-align: center;
|
|
|
|
cursor: pointer;
|
|
|
|
color: var(--fg);
|
|
|
|
}
|
2019-04-29 00:11:57 +00:00
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
.tbwccoaw {
|
|
|
|
> input,
|
|
|
|
> textarea {
|
|
|
|
display: block;
|
|
|
|
-webkit-appearance: none;
|
|
|
|
-moz-appearance: none;
|
|
|
|
appearance: none;
|
|
|
|
width: 100%;
|
|
|
|
max-width: 100%;
|
|
|
|
min-width: 100%;
|
|
|
|
border: none;
|
|
|
|
box-shadow: none;
|
|
|
|
padding: 16px;
|
|
|
|
font-size: 16px;
|
|
|
|
background: transparent;
|
|
|
|
color: var(--fg);
|
2020-04-12 18:23:23 +00:00
|
|
|
box-sizing: border-box;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
2019-04-29 00:11:57 +00:00
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
> textarea {
|
|
|
|
min-height: 100px;
|
|
|
|
}
|
|
|
|
}
|
2019-04-29 00:11:57 +00:00
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
.hpdwcrvs {
|
|
|
|
padding: 16px;
|
2019-04-29 00:11:57 +00:00
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
> select {
|
|
|
|
display: block;
|
|
|
|
padding: 4px;
|
|
|
|
font-size: 16px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
2019-04-29 00:11:57 +00:00
|
|
|
</style>
|