2024-02-18 00:29:58 +01:00
|
|
|
let outputIndex = 0;
|
|
|
|
|
2024-02-18 23:37:31 +01:00
|
|
|
export const jsConsole = console;
|
|
|
|
|
|
|
|
// Overwrite globalThis.console with domConsole to redirect output to the DOM console.
|
|
|
|
// To always output to the JavaScript console regardless, use jsConsole.
|
|
|
|
export const domConsole = {
|
|
|
|
log(...message) {
|
|
|
|
postMessage({
|
|
|
|
kind: "output",
|
|
|
|
output: {
|
|
|
|
kind: "console.log",
|
|
|
|
message: [...message],
|
|
|
|
},
|
|
|
|
outputIndex,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
2024-02-18 00:29:58 +01:00
|
|
|
|
|
|
|
async function withTemporaryGlobalScope(callback) {
|
|
|
|
let state = {
|
|
|
|
oldValues: {},
|
|
|
|
set(key, value) {
|
|
|
|
this.oldValues[key] = globalThis[key];
|
|
|
|
globalThis[key] = value;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
await callback(state);
|
2024-02-18 23:37:31 +01:00
|
|
|
jsConsole.trace(state.oldValues, "bringing back old state");
|
2024-02-18 00:29:58 +01:00
|
|
|
for (let key in state.oldValues) {
|
|
|
|
globalThis[key] = state.oldValues[key];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-18 12:10:02 +01:00
|
|
|
let evaluationComplete = null;
|
|
|
|
|
2024-02-18 23:37:31 +01:00
|
|
|
export async function evaluate(commands, { error, newOutput }) {
|
2024-02-18 12:10:02 +01:00
|
|
|
if (evaluationComplete != null) {
|
|
|
|
await evaluationComplete;
|
|
|
|
}
|
|
|
|
|
|
|
|
let signalEvaluationComplete;
|
|
|
|
evaluationComplete = new Promise((resolve, _reject) => {
|
|
|
|
signalEvaluationComplete = resolve;
|
|
|
|
})
|
|
|
|
|
2024-02-18 00:29:58 +01:00
|
|
|
outputIndex = 0;
|
|
|
|
try {
|
2024-02-18 23:37:31 +01:00
|
|
|
for (let command of commands) {
|
|
|
|
if (command.kind == "module") {
|
|
|
|
let blobUrl = URL.createObjectURL(new Blob([command.source], { type: "text/javascript" }));
|
|
|
|
let module = await import(blobUrl);
|
|
|
|
for (let exportedKey in module) {
|
|
|
|
globalThis[exportedKey] = module[exportedKey];
|
|
|
|
}
|
|
|
|
} else if (command.kind == "output") {
|
|
|
|
if (newOutput != null) {
|
|
|
|
newOutput(outputIndex);
|
2024-02-18 00:29:58 +01:00
|
|
|
}
|
2024-02-18 23:37:31 +01:00
|
|
|
++outputIndex;
|
2024-02-18 00:29:58 +01:00
|
|
|
}
|
2024-02-18 12:10:02 +01:00
|
|
|
}
|
|
|
|
postMessage({
|
|
|
|
kind: "evalComplete",
|
|
|
|
});
|
|
|
|
} catch (err) {
|
2024-02-18 00:29:58 +01:00
|
|
|
postMessage({
|
|
|
|
kind: "output",
|
|
|
|
output: {
|
|
|
|
kind: "error",
|
2024-02-18 12:10:02 +01:00
|
|
|
message: [err.toString()],
|
2024-02-18 00:29:58 +01:00
|
|
|
},
|
|
|
|
outputIndex,
|
|
|
|
});
|
2024-02-18 12:10:02 +01:00
|
|
|
if (error != null) {
|
|
|
|
error();
|
|
|
|
}
|
2024-02-18 00:29:58 +01:00
|
|
|
}
|
2024-02-18 12:10:02 +01:00
|
|
|
signalEvaluationComplete();
|
2024-02-18 00:29:58 +01:00
|
|
|
}
|
|
|
|
|