2023-01-05 06:59:48 +02:00
|
|
|
<template>
|
|
|
|
<MkContainer :show-header="widgetProps.showHeader" class="mkw-aiscriptApp">
|
|
|
|
<template #header>App</template>
|
|
|
|
<div :class="$style.root">
|
|
|
|
<MkAsUi v-if="root" :component="root" :components="components" size="small"/>
|
|
|
|
</div>
|
|
|
|
</MkContainer>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2023-02-16 16:09:41 +02:00
|
|
|
import { onMounted, Ref, ref, watch } from 'vue';
|
|
|
|
import { Interpreter, Parser } from '@syuilo/aiscript';
|
|
|
|
import { useWidgetPropsManager, Widget, WidgetComponentExpose } from './widget';
|
2023-01-05 06:59:48 +02:00
|
|
|
import { GetFormResultType } from '@/scripts/form';
|
|
|
|
import * as os from '@/os';
|
|
|
|
import { createAiScriptEnv } from '@/scripts/aiscript/api';
|
|
|
|
import { $i } from '@/account';
|
|
|
|
import MkAsUi from '@/components/MkAsUi.vue';
|
|
|
|
import MkContainer from '@/components/MkContainer.vue';
|
2023-02-16 16:09:41 +02:00
|
|
|
import { AsUiComponent, AsUiRoot, registerAsUiLib } from '@/scripts/aiscript/ui';
|
2023-01-05 06:59:48 +02:00
|
|
|
|
|
|
|
const name = 'aiscriptApp';
|
|
|
|
|
|
|
|
const widgetPropsDef = {
|
|
|
|
script: {
|
|
|
|
type: 'string' as const,
|
|
|
|
multiline: true,
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
showHeader: {
|
|
|
|
type: 'boolean' as const,
|
|
|
|
default: true,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
type WidgetProps = GetFormResultType<typeof widgetPropsDef>;
|
|
|
|
|
|
|
|
// 現時点ではvueの制限によりimportしたtypeをジェネリックに渡せない
|
|
|
|
//const props = defineProps<WidgetComponentProps<WidgetProps>>();
|
|
|
|
//const emit = defineEmits<WidgetComponentEmits<WidgetProps>>();
|
|
|
|
const props = defineProps<{ widget?: Widget<WidgetProps>; }>();
|
|
|
|
const emit = defineEmits<{ (ev: 'updateProps', props: WidgetProps); }>();
|
|
|
|
|
|
|
|
const { widgetProps, configure } = useWidgetPropsManager(name,
|
|
|
|
widgetPropsDef,
|
|
|
|
props,
|
|
|
|
emit,
|
|
|
|
);
|
|
|
|
|
|
|
|
const parser = new Parser();
|
|
|
|
|
|
|
|
const root = ref<AsUiRoot>();
|
2023-01-16 03:04:10 +02:00
|
|
|
const components: Ref<AsUiComponent>[] = $ref([]);
|
2023-01-05 06:59:48 +02:00
|
|
|
|
|
|
|
async function run() {
|
|
|
|
const aiscript = new Interpreter({
|
|
|
|
...createAiScriptEnv({
|
|
|
|
storageKey: 'widget',
|
|
|
|
token: $i?.token,
|
|
|
|
}),
|
|
|
|
...registerAsUiLib(components, (_root) => {
|
|
|
|
root.value = _root.value;
|
|
|
|
}),
|
|
|
|
}, {
|
|
|
|
in: (q) => {
|
|
|
|
return new Promise(ok => {
|
|
|
|
os.inputText({
|
|
|
|
title: q,
|
|
|
|
}).then(({ canceled, result: a }) => {
|
2023-02-05 13:29:10 +02:00
|
|
|
if (canceled) {
|
|
|
|
ok('');
|
|
|
|
} else {
|
|
|
|
ok(a);
|
|
|
|
}
|
2023-01-05 06:59:48 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
out: (value) => {
|
|
|
|
// nop
|
|
|
|
},
|
|
|
|
log: (type, params) => {
|
|
|
|
// nop
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
let ast;
|
|
|
|
try {
|
|
|
|
ast = parser.parse(widgetProps.script);
|
|
|
|
} catch (err) {
|
|
|
|
os.alert({
|
|
|
|
type: 'error',
|
|
|
|
text: 'Syntax error :(',
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
await aiscript.exec(ast);
|
|
|
|
} catch (err) {
|
|
|
|
os.alert({
|
|
|
|
type: 'error',
|
|
|
|
title: 'AiScript Error',
|
|
|
|
text: err.message,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
watch(() => widgetProps.script, () => {
|
|
|
|
run();
|
|
|
|
});
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
run();
|
|
|
|
});
|
|
|
|
|
|
|
|
defineExpose<WidgetComponentExpose>({
|
|
|
|
name,
|
|
|
|
configure,
|
|
|
|
id: props.widget ? props.widget.id : null,
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
|
|
|
padding: 16px;
|
|
|
|
}
|
|
|
|
</style>
|