-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathstate.js
57 lines (46 loc) · 1.28 KB
/
state.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/* eslint-disable no-unused-vars */
/* eslint-disable no-eval */
const $ = {
classes: [],
};
const state = $;
const _transaction = require("./transaction");
const { $: $graph } = require("./graph");
const { event } = require("./event");
const _ = require("lodash");
const { v4: uuid } = require("uuid");
const REFERENCE = require("./nuc/REFERENCE");
const serialize = require("./lib/serialize");
global.require = require;
function assign(scope, variable, evaluation, json = true) {
let value;
if (json) {
value = serialize(eval(`(${evaluation})`), "state");
} else {
value = evaluation.toString();
}
return _transaction.register(`state.${variable}`, value);
}
function call(scope, fn, args = []) {
const exec = `state.${fn}(${args.join(",")})`;
return eval(exec);
}
function expression(scope, evaluation) {
return eval(`(${evaluation.value})`);
}
function del(scope, variable) {
return eval(`delete state.${variable}`);
}
module.exports.throw = (scope, exception) => eval(`throw ${exception}`);
function clear() {
for (let property in $) {
delete $[property];
}
$["classes"] = [];
}
module.exports.$ = $;
module.exports.assign = assign;
module.exports.call = call;
module.exports.expression = expression;
module.exports.clear = clear;
module.exports.delete = del;