add notes

This commit is contained in:
syuilo 2020-07-25 12:02:28 +09:00
parent 3bbc89e0a2
commit c7466a35ee
2 changed files with 3 additions and 0 deletions

View File

@ -1,6 +1,7 @@
import { utils, values } from '@syuilo/aiscript';
import { jsToVal } from '@syuilo/aiscript/built/interpreter/util';
// TODO: vm引数は消せる(各種操作がstoreに移動し、かつstoreが複数ファイルで共有されるようになったため)
export function createAiScriptEnv(vm, opts) {
let apiRequests = 0;
return {
@ -42,6 +43,7 @@ export function createAiScriptEnv(vm, opts) {
};
}
// TODO: vm引数は消せる(各種操作がstoreに移動し、かつstoreが複数ファイルで共有されるようになったため)
export function createPluginEnv(vm, opts) {
const config = new Map();
for (const [k, v] of Object.entries(opts.plugin.config)) {

View File

@ -2,6 +2,7 @@ import { faUpload, faCloud } from '@fortawesome/free-solid-svg-icons';
import { selectDriveFile } from './select-drive-file';
import { apiUrl } from '../config';
// TODO: component引数は消せる(各種操作がstoreに移動し、かつstoreが複数ファイルで共有されるようになったため)
export function selectFile(component: any, src: any, label: string | null, multiple = false) {
return new Promise((res, rej) => {
const chooseFileFromPc = () => {