2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-04-11 13:44:32 +00:00
|
|
|
<template>
|
2023-05-19 07:20:53 +00:00
|
|
|
<MkSpacer :contentMax="800">
|
2023-01-05 04:59:48 +00:00
|
|
|
<div :class="$style.root">
|
|
|
|
<div :class="$style.editor" class="_panel">
|
2023-08-28 09:25:31 +00:00
|
|
|
<PrismEditor v-model="code" class="_monospace" :class="$style.code" :highlight="highlighter" :lineNumbers="false"/>
|
2023-01-05 04:59:48 +00:00
|
|
|
<MkButton style="position: absolute; top: 8px; right: 8px;" primary @click="run()"><i class="ti ti-player-play"></i></MkButton>
|
2020-04-11 13:44:32 +00:00
|
|
|
</div>
|
|
|
|
|
2023-01-05 08:30:21 +00:00
|
|
|
<MkContainer v-if="root && components.length > 1" :key="uiKey" :foldable="true">
|
2023-01-05 04:59:48 +00:00
|
|
|
<template #header>UI</template>
|
|
|
|
<div :class="$style.ui">
|
|
|
|
<MkAsUi :component="root" :components="components" size="small"/>
|
|
|
|
</div>
|
|
|
|
</MkContainer>
|
|
|
|
|
|
|
|
<MkContainer :foldable="true" class="">
|
|
|
|
<template #header>{{ i18n.ts.output }}</template>
|
|
|
|
<div :class="$style.logs">
|
|
|
|
<div v-for="log in logs" :key="log.id" class="log" :class="{ print: log.print }">{{ log.text }}</div>
|
|
|
|
</div>
|
|
|
|
</MkContainer>
|
|
|
|
|
|
|
|
<div class="">
|
|
|
|
{{ i18n.ts.scratchpadDescription }}
|
|
|
|
</div>
|
2020-12-28 02:56:42 +00:00
|
|
|
</div>
|
2023-01-05 04:59:48 +00:00
|
|
|
</MkSpacer>
|
2020-04-11 13:44:32 +00:00
|
|
|
</template>
|
|
|
|
|
2022-04-29 03:26:24 +00:00
|
|
|
<script lang="ts" setup>
|
2023-01-05 04:59:48 +00:00
|
|
|
import { onDeactivated, onUnmounted, Ref, ref, watch } from 'vue';
|
2020-08-21 23:03:11 +00:00
|
|
|
import 'prismjs';
|
|
|
|
import { highlight, languages } from 'prismjs/components/prism-core';
|
|
|
|
import 'prismjs/components/prism-clike';
|
|
|
|
import 'prismjs/components/prism-javascript';
|
2020-04-17 11:36:51 +00:00
|
|
|
import 'prismjs/themes/prism-okaidia.css';
|
2020-08-21 23:03:11 +00:00
|
|
|
import { PrismEditor } from 'vue-prism-editor';
|
|
|
|
import 'vue-prism-editor/dist/prismeditor.min.css';
|
2023-01-03 06:51:49 +00:00
|
|
|
import { Interpreter, Parser, utils } from '@syuilo/aiscript';
|
2022-09-06 09:21:49 +00:00
|
|
|
import MkContainer from '@/components/MkContainer.vue';
|
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2021-11-11 17:02:25 +00:00
|
|
|
import { createAiScriptEnv } from '@/scripts/aiscript/api';
|
|
|
|
import * as os from '@/os';
|
2022-04-29 03:26:24 +00:00
|
|
|
import { $i } from '@/account';
|
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 08:38:49 +00:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2023-02-16 14:09:41 +00:00
|
|
|
import { AsUiComponent, AsUiRoot, registerAsUiLib } from '@/scripts/aiscript/ui';
|
2023-01-05 04:59:48 +00:00
|
|
|
import MkAsUi from '@/components/MkAsUi.vue';
|
2023-01-07 01:13:02 +00:00
|
|
|
import { miLocalStorage } from '@/local-storage';
|
2023-01-21 06:30:29 +00:00
|
|
|
import { claimAchievement } from '@/scripts/achievements';
|
2020-04-11 13:44:32 +00:00
|
|
|
|
2023-01-03 06:51:49 +00:00
|
|
|
const parser = new Parser();
|
2023-01-05 04:59:48 +00:00
|
|
|
let aiscript: Interpreter;
|
2022-04-29 03:26:24 +00:00
|
|
|
const code = ref('');
|
|
|
|
const logs = ref<any[]>([]);
|
2023-01-05 04:59:48 +00:00
|
|
|
const root = ref<AsUiRoot>();
|
2023-01-16 01:04:10 +00:00
|
|
|
let components: Ref<AsUiComponent>[] = $ref([]);
|
2023-01-05 04:59:48 +00:00
|
|
|
let uiKey = $ref(0);
|
2020-04-11 13:44:32 +00:00
|
|
|
|
2023-01-07 01:13:02 +00:00
|
|
|
const saved = miLocalStorage.getItem('scratchpad');
|
2022-04-29 03:26:24 +00:00
|
|
|
if (saved) {
|
|
|
|
code.value = saved;
|
|
|
|
}
|
2020-04-11 13:44:32 +00:00
|
|
|
|
2022-04-29 03:26:24 +00:00
|
|
|
watch(code, () => {
|
2023-01-07 01:13:02 +00:00
|
|
|
miLocalStorage.setItem('scratchpad', code.value);
|
2022-04-29 03:26:24 +00:00
|
|
|
});
|
2020-04-11 13:44:32 +00:00
|
|
|
|
2022-04-29 03:26:24 +00:00
|
|
|
async function run() {
|
2023-01-05 04:59:48 +00:00
|
|
|
if (aiscript) aiscript.abort();
|
|
|
|
root.value = undefined;
|
|
|
|
components = [];
|
|
|
|
uiKey++;
|
2022-04-29 03:26:24 +00:00
|
|
|
logs.value = [];
|
2023-01-05 04:59:48 +00:00
|
|
|
aiscript = new Interpreter(({
|
|
|
|
...createAiScriptEnv({
|
|
|
|
storageKey: 'widget',
|
|
|
|
token: $i?.token,
|
|
|
|
}),
|
|
|
|
...registerAsUiLib(components, (_root) => {
|
|
|
|
root.value = _root.value;
|
|
|
|
}),
|
2022-04-29 03:26:24 +00:00
|
|
|
}), {
|
|
|
|
in: (q) => {
|
|
|
|
return new Promise(ok => {
|
|
|
|
os.inputText({
|
|
|
|
title: q,
|
|
|
|
}).then(({ canceled, result: a }) => {
|
2023-02-05 11:29:10 +00:00
|
|
|
if (canceled) {
|
|
|
|
ok('');
|
|
|
|
} else {
|
|
|
|
ok(a);
|
|
|
|
}
|
2020-04-11 13:44:32 +00:00
|
|
|
});
|
2022-04-29 03:26:24 +00:00
|
|
|
});
|
2020-08-21 23:03:11 +00:00
|
|
|
},
|
2022-04-29 03:26:24 +00:00
|
|
|
out: (value) => {
|
2023-01-21 06:30:29 +00:00
|
|
|
if (value.type === 'str' && value.value.toLowerCase().replace(',', '').includes('hello world')) {
|
|
|
|
claimAchievement('outputHelloWorldOnScratchpad');
|
|
|
|
}
|
2022-04-29 03:26:24 +00:00
|
|
|
logs.value.push({
|
|
|
|
id: Math.random(),
|
|
|
|
text: value.type === 'str' ? value.value : utils.valToString(value),
|
2022-06-20 08:38:49 +00:00
|
|
|
print: true,
|
2022-04-29 03:26:24 +00:00
|
|
|
});
|
2020-08-21 23:03:11 +00:00
|
|
|
},
|
2022-04-29 03:26:24 +00:00
|
|
|
log: (type, params) => {
|
|
|
|
switch (type) {
|
|
|
|
case 'end': logs.value.push({
|
|
|
|
id: Math.random(),
|
|
|
|
text: utils.valToString(params.val, true),
|
2022-06-20 08:38:49 +00:00
|
|
|
print: false,
|
2022-04-29 03:26:24 +00:00
|
|
|
}); break;
|
|
|
|
default: break;
|
|
|
|
}
|
2022-06-20 08:38:49 +00:00
|
|
|
},
|
2022-04-29 03:26:24 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
let ast;
|
|
|
|
try {
|
2023-01-03 06:51:49 +00:00
|
|
|
ast = parser.parse(code.value);
|
2022-04-29 03:26:24 +00:00
|
|
|
} catch (error) {
|
|
|
|
os.alert({
|
|
|
|
type: 'error',
|
2022-06-20 08:38:49 +00:00
|
|
|
text: 'Syntax error :(',
|
2022-04-29 03:26:24 +00:00
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
await aiscript.exec(ast);
|
2023-01-05 04:59:48 +00:00
|
|
|
} catch (err: any) {
|
2022-04-29 03:26:24 +00:00
|
|
|
os.alert({
|
|
|
|
type: 'error',
|
2023-01-05 04:59:48 +00:00
|
|
|
title: 'AiScript Error',
|
|
|
|
text: err.message,
|
2022-04-29 03:26:24 +00:00
|
|
|
});
|
2020-04-11 13:44:32 +00:00
|
|
|
}
|
2022-06-10 05:36:55 +00:00
|
|
|
}
|
2022-04-29 03:26:24 +00:00
|
|
|
|
|
|
|
function highlighter(code) {
|
|
|
|
return highlight(code, languages.js, 'javascript');
|
|
|
|
}
|
|
|
|
|
2023-01-05 04:59:48 +00:00
|
|
|
onDeactivated(() => {
|
|
|
|
if (aiscript) aiscript.abort();
|
|
|
|
});
|
|
|
|
|
|
|
|
onUnmounted(() => {
|
|
|
|
if (aiscript) aiscript.abort();
|
|
|
|
});
|
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.scratchpad,
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-terminal-2',
|
2020-04-11 13:44:32 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2023-01-05 04:59:48 +00:00
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: var(--margin);
|
|
|
|
}
|
2020-11-29 09:22:35 +00:00
|
|
|
|
2023-01-05 04:59:48 +00:00
|
|
|
.editor {
|
|
|
|
position: relative;
|
2020-11-29 09:22:35 +00:00
|
|
|
}
|
|
|
|
|
2023-08-28 09:25:31 +00:00
|
|
|
.code {
|
|
|
|
background: #2d2d2d;
|
|
|
|
color: #ccc;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 1.5;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
2023-01-05 04:59:48 +00:00
|
|
|
.ui {
|
|
|
|
padding: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logs {
|
2020-04-11 13:44:32 +00:00
|
|
|
padding: 16px;
|
|
|
|
|
2023-01-05 04:59:48 +00:00
|
|
|
&:global {
|
|
|
|
> .log {
|
|
|
|
&:not(.print) {
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
2020-04-11 13:44:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|