2020-04-12 12:38:19 +02:00
|
|
|
import { utils, values } from '@syuilo/aiscript';
|
|
|
|
|
2020-04-12 12:57:18 +02:00
|
|
|
export function createAiScriptEnv(vm, opts) {
|
2020-04-12 20:23:23 +02:00
|
|
|
let apiRequests = 0;
|
2020-04-12 12:38:19 +02:00
|
|
|
return {
|
2020-04-19 09:28:19 +02:00
|
|
|
USER_ID: vm.$store.getters.isSignedIn ? values.STR(vm.$store.state.i.id) : values.NULL,
|
|
|
|
USER_NAME: vm.$store.getters.isSignedIn ? values.STR(vm.$store.state.i.name) : values.NULL,
|
|
|
|
USER_USERNAME: vm.$store.getters.isSignedIn ? values.STR(vm.$store.state.i.username) : values.NULL,
|
2020-04-12 12:38:19 +02:00
|
|
|
'Mk:dialog': values.FN_NATIVE(async ([title, text, type]) => {
|
|
|
|
await vm.$root.dialog({
|
|
|
|
type: type ? type.value : 'info',
|
|
|
|
title: title.value,
|
|
|
|
text: text.value,
|
|
|
|
});
|
|
|
|
}),
|
|
|
|
'Mk:confirm': values.FN_NATIVE(async ([title, text]) => {
|
|
|
|
const confirm = await vm.$root.dialog({
|
|
|
|
type: 'warning',
|
|
|
|
showCancelButton: true,
|
|
|
|
title: title.value,
|
|
|
|
text: text.value,
|
|
|
|
});
|
2020-05-10 10:25:16 +02:00
|
|
|
return confirm.canceled ? values.FALSE : values.TRUE;
|
2020-04-12 12:38:19 +02:00
|
|
|
}),
|
|
|
|
'Mk:api': values.FN_NATIVE(async ([ep, param, token]) => {
|
2020-05-15 13:53:24 +02:00
|
|
|
if (token) utils.assertString(token);
|
2020-04-12 20:23:23 +02:00
|
|
|
apiRequests++;
|
|
|
|
if (apiRequests > 16) return values.NULL;
|
2020-05-15 13:53:24 +02:00
|
|
|
const res = await vm.$root.api(ep.value, utils.valToJs(param), token ? token.value : null);
|
2020-04-12 12:38:19 +02:00
|
|
|
return utils.jsToVal(res);
|
|
|
|
}),
|
2020-04-12 12:57:18 +02:00
|
|
|
'Mk:save': values.FN_NATIVE(([key, value]) => {
|
|
|
|
utils.assertString(key);
|
|
|
|
localStorage.setItem('aiscript:' + opts.storageKey + ':' + key.value, JSON.stringify(utils.valToJs(value)));
|
|
|
|
return values.NULL;
|
|
|
|
}),
|
|
|
|
'Mk:load': values.FN_NATIVE(([key]) => {
|
|
|
|
utils.assertString(key);
|
|
|
|
return utils.jsToVal(JSON.parse(localStorage.getItem('aiscript:' + opts.storageKey + ':' + key.value)));
|
|
|
|
}),
|
2020-04-12 12:38:19 +02:00
|
|
|
};
|
|
|
|
}
|