forked from boa-dev/boa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
38 lines (31 loc) · 967 Bytes
/
index.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
// Note that a dynamic `import` statement here is required due to
// webpack/webpack#6615, but in theory `import { greet } from './pkg/hello_world';`
// will work here one day as well!
const rust = import("./pkg");
import * as monaco from "monaco-editor";
// const image = import("./assets/01_rust_loves_js.png");
const editor = monaco.editor.create(
document.getElementsByClassName("textbox")[0],
{
value: "",
language: "javascript",
theme: "vs-dark"
}
);
// Fix size of Monaco Editor when window resize
window.addEventListener('resize', () => {
editor.layout();
});
rust.then(m => {
window.evaluate = m.evaluate;
editor.getModel().onDidChangeContent(inputHandler);
});
function inputHandler(evt) {
const text = editor.getValue();
let p = document.querySelector("p.output");
let t0 = performance.now();
let result = window.evaluate(text);
let t1 = performance.now();
p.textContent = `> ${result}`;
console.log(result);
}