2021-02-06 12:36:47 +00:00
|
|
|
<template>
|
2023-01-15 11:55:09 +00:00
|
|
|
<MkContainer :show-header="widgetProps.showHeader" class="mkw-aiscript data-cy-mkw-aiscript">
|
2023-01-14 23:30:29 +00:00
|
|
|
<template #icon><i class="ti ti-terminal-2"></i></template>
|
|
|
|
<template #header>{{ i18n.ts._widgets.aiscript }}</template>
|
2021-02-06 12:36:47 +00:00
|
|
|
|
|
|
|
<div class="uylguesu _monospace">
|
2022-01-08 11:30:01 +00:00
|
|
|
<textarea v-model="widgetProps.script" placeholder="(1 + 1)"></textarea>
|
2021-11-19 10:36:12 +00:00
|
|
|
<button class="_buttonPrimary" @click="run">RUN</button>
|
2021-02-06 12:36:47 +00:00
|
|
|
<div class="logs">
|
2021-11-19 10:36:12 +00:00
|
|
|
<div v-for="log in logs" :key="log.id" class="log" :class="{ print: log.print }">{{ log.text }}</div>
|
2021-02-06 12:36:47 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</MkContainer>
|
|
|
|
</template>
|
|
|
|
|
2022-01-08 11:30:01 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { onMounted, onUnmounted, ref, watch } from 'vue';
|
2023-01-03 06:51:49 +00:00
|
|
|
import { Interpreter, Parser, utils } from '@syuilo/aiscript';
|
2022-01-08 11:30:01 +00:00
|
|
|
import { useWidgetPropsManager, Widget, WidgetComponentEmits, WidgetComponentExpose, WidgetComponentProps } from './widget';
|
2022-07-20 13:24:26 +00:00
|
|
|
import { GetFormResultType } from '@/scripts/form';
|
2021-11-11 17:02:25 +00:00
|
|
|
import * as os from '@/os';
|
2022-09-06 09:21:49 +00:00
|
|
|
import MkContainer from '@/components/MkContainer.vue';
|
2021-11-11 17:02:25 +00:00
|
|
|
import { createAiScriptEnv } from '@/scripts/aiscript/api';
|
2022-01-08 11:30:01 +00:00
|
|
|
import { $i } from '@/account';
|
2022-07-20 13:24:26 +00:00
|
|
|
import { i18n } from '@/i18n';
|
2021-02-06 12:36:47 +00:00
|
|
|
|
2022-01-08 11:30:01 +00:00
|
|
|
const name = 'aiscript';
|
2021-02-06 12:36:47 +00:00
|
|
|
|
2022-01-08 11:30:01 +00:00
|
|
|
const widgetPropsDef = {
|
|
|
|
showHeader: {
|
|
|
|
type: 'boolean' as const,
|
|
|
|
default: true,
|
2021-02-06 12:36:47 +00:00
|
|
|
},
|
2022-01-08 11:30:01 +00:00
|
|
|
script: {
|
|
|
|
type: 'string' as const,
|
|
|
|
multiline: true,
|
|
|
|
default: '(1 + 1)',
|
|
|
|
hidden: true,
|
2021-02-06 12:36:47 +00:00
|
|
|
},
|
2022-01-08 11:30:01 +00:00
|
|
|
};
|
2021-02-06 12:36:47 +00:00
|
|
|
|
2022-01-08 11:30:01 +00:00
|
|
|
type WidgetProps = GetFormResultType<typeof widgetPropsDef>;
|
2021-02-06 12:36:47 +00:00
|
|
|
|
2022-01-08 11:30:01 +00:00
|
|
|
// 現時点ではvueの制限によりimportしたtypeをジェネリックに渡せない
|
|
|
|
//const props = defineProps<WidgetComponentProps<WidgetProps>>();
|
|
|
|
//const emit = defineEmits<WidgetComponentEmits<WidgetProps>>();
|
|
|
|
const props = defineProps<{ widget?: Widget<WidgetProps>; }>();
|
2022-05-25 07:43:12 +00:00
|
|
|
const emit = defineEmits<{ (ev: 'updateProps', props: WidgetProps); }>();
|
2022-01-08 11:30:01 +00:00
|
|
|
|
|
|
|
const { widgetProps, configure } = useWidgetPropsManager(name,
|
|
|
|
widgetPropsDef,
|
|
|
|
props,
|
|
|
|
emit,
|
|
|
|
);
|
|
|
|
|
2023-01-03 06:51:49 +00:00
|
|
|
const parser = new Parser();
|
|
|
|
|
2022-01-08 11:30:01 +00:00
|
|
|
const logs = ref<{
|
|
|
|
id: string;
|
|
|
|
text: string;
|
|
|
|
print: boolean;
|
|
|
|
}[]>([]);
|
|
|
|
|
|
|
|
const run = async () => {
|
|
|
|
logs.value = [];
|
2023-01-03 06:51:49 +00:00
|
|
|
const aiscript = new Interpreter(createAiScriptEnv({
|
2022-01-08 11:30:01 +00:00
|
|
|
storageKey: 'widget',
|
|
|
|
token: $i?.token,
|
|
|
|
}), {
|
|
|
|
in: (q) => {
|
|
|
|
return new Promise(ok => {
|
|
|
|
os.inputText({
|
|
|
|
title: q,
|
|
|
|
}).then(({ canceled, result: a }) => {
|
|
|
|
ok(a);
|
2021-02-06 12:36:47 +00:00
|
|
|
});
|
2022-01-08 11:30:01 +00:00
|
|
|
});
|
|
|
|
},
|
|
|
|
out: (value) => {
|
|
|
|
logs.value.push({
|
|
|
|
id: Math.random().toString(),
|
|
|
|
text: value.type === 'str' ? value.value : utils.valToString(value),
|
|
|
|
print: true,
|
|
|
|
});
|
2021-02-06 12:36:47 +00:00
|
|
|
},
|
2022-01-08 11:30:01 +00:00
|
|
|
log: (type, params) => {
|
|
|
|
switch (type) {
|
|
|
|
case 'end': logs.value.push({
|
|
|
|
id: Math.random().toString(),
|
|
|
|
text: utils.valToString(params.val, true),
|
|
|
|
print: false,
|
|
|
|
}); break;
|
|
|
|
default: break;
|
|
|
|
}
|
2022-07-20 13:24:26 +00:00
|
|
|
},
|
2022-01-08 11:30:01 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
let ast;
|
|
|
|
try {
|
2023-01-03 06:51:49 +00:00
|
|
|
ast = parser.parse(widgetProps.script);
|
2022-05-25 07:43:12 +00:00
|
|
|
} catch (err) {
|
2022-01-08 11:30:01 +00:00
|
|
|
os.alert({
|
|
|
|
type: 'error',
|
|
|
|
text: 'Syntax error :(',
|
|
|
|
});
|
|
|
|
return;
|
2021-02-06 12:36:47 +00:00
|
|
|
}
|
2022-01-08 11:30:01 +00:00
|
|
|
try {
|
|
|
|
await aiscript.exec(ast);
|
2022-05-25 07:43:12 +00:00
|
|
|
} catch (err) {
|
2022-01-08 11:30:01 +00:00
|
|
|
os.alert({
|
|
|
|
type: 'error',
|
2022-05-25 07:43:12 +00:00
|
|
|
text: err,
|
2022-01-08 11:30:01 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
defineExpose<WidgetComponentExpose>({
|
|
|
|
name,
|
|
|
|
configure,
|
|
|
|
id: props.widget ? props.widget.id : null,
|
2021-02-06 12:36:47 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2022-12-27 09:29:39 +00:00
|
|
|
<style lang="scss" scoped>
|
2021-02-06 12:36:47 +00:00
|
|
|
.uylguesu {
|
|
|
|
text-align: right;
|
|
|
|
|
|
|
|
> textarea {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
max-width: 100%;
|
|
|
|
min-width: 100%;
|
|
|
|
padding: 16px;
|
|
|
|
color: var(--fg);
|
|
|
|
background: transparent;
|
|
|
|
border: none;
|
2021-04-10 03:40:50 +00:00
|
|
|
border-bottom: solid 0.5px var(--divider);
|
2021-02-06 12:36:47 +00:00
|
|
|
border-radius: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
font: inherit;
|
|
|
|
|
2021-10-02 17:46:58 +00:00
|
|
|
&:focus-visible {
|
2021-02-06 12:36:47 +00:00
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> button {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 8px;
|
|
|
|
padding: 0 10px;
|
|
|
|
height: 28px;
|
|
|
|
outline: none;
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
opacity: 0.7;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .logs {
|
2021-04-10 03:40:50 +00:00
|
|
|
border-top: solid 0.5px var(--divider);
|
2021-02-06 12:36:47 +00:00
|
|
|
text-align: left;
|
|
|
|
padding: 16px;
|
|
|
|
|
|
|
|
&:empty {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .log {
|
|
|
|
&:not(.print) {
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|