2024-02-18 00:29:58 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<title>treehouse iframe sandbox</title>
|
|
|
|
|
2024-10-29 18:14:01 +01:00
|
|
|
<link rel="stylesheet" href="{{ asset 'css/base.css' }}">
|
2024-04-07 18:11:56 +02:00
|
|
|
|
2024-02-18 00:29:58 +01:00
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
margin: 0;
|
2024-04-07 18:11:56 +02:00
|
|
|
padding: 0;
|
2024-02-18 00:29:58 +01:00
|
|
|
overflow: hidden;
|
2024-02-18 23:37:31 +01:00
|
|
|
width: fit-content;
|
|
|
|
height: fit-content;
|
2024-02-18 00:29:58 +01:00
|
|
|
}
|
2024-02-18 10:58:57 +01:00
|
|
|
|
|
|
|
canvas {
|
|
|
|
display: block;
|
|
|
|
}
|
2024-02-18 00:29:58 +01:00
|
|
|
</style>
|
|
|
|
|
2024-07-19 20:05:17 +02:00
|
|
|
<script type="importmap">{{{ include_static 'generated/import-map.json' }}}</script>
|
2024-02-18 00:29:58 +01:00
|
|
|
|
|
|
|
<script type="module">
|
2024-02-18 23:37:31 +01:00
|
|
|
import { evaluate, domConsole, jsConsole } from "treehouse/components/literate-programming/eval.js";
|
2024-02-18 12:10:02 +01:00
|
|
|
import { internals as sandboxInternals } from "treehouse/sandbox.js";
|
2024-02-18 10:58:57 +01:00
|
|
|
|
2024-02-18 23:37:31 +01:00
|
|
|
globalThis.console = domConsole;
|
2024-02-18 10:58:57 +01:00
|
|
|
|
2024-02-18 00:29:58 +01:00
|
|
|
addEventListener("message", async event => {
|
|
|
|
let message = event.data;
|
|
|
|
if (message.action == "eval") {
|
2024-02-18 12:10:02 +01:00
|
|
|
evaluate(message.input, {
|
2024-02-18 23:37:31 +01:00
|
|
|
error() {
|
2024-02-18 12:10:02 +01:00
|
|
|
sandboxInternals.body.replaceChildren();
|
2024-02-18 23:37:31 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
newOutput(currentOutputIndex) {
|
|
|
|
if (currentOutputIndex == window.treehouseSandboxInternals.outputIndex) {
|
|
|
|
document.body.replaceChildren(...sandboxInternals.body.childNodes);
|
2024-02-18 12:10:02 +01:00
|
|
|
postMessage({
|
|
|
|
kind: "resize",
|
2024-02-18 23:37:31 +01:00
|
|
|
outputIndex: currentOutputIndex,
|
2024-02-18 12:10:02 +01:00
|
|
|
});
|
2024-02-18 23:37:31 +01:00
|
|
|
}
|
|
|
|
sandboxInternals.resetBody();
|
2024-02-18 12:10:02 +01:00
|
|
|
},
|
|
|
|
});
|
2024-02-18 00:29:58 +01:00
|
|
|
}
|
|
|
|
});
|
2024-02-18 10:58:57 +01:00
|
|
|
|
2024-02-18 12:10:02 +01:00
|
|
|
postMessage({ kind: "ready" });
|
2024-02-18 00:29:58 +01:00
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body></body>
|
|
|
|
|
|
|
|
</html>
|