forked from boa-dev/boa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
44 lines (37 loc) · 1.06 KB
/
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
39
40
41
42
43
44
// 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("./boa/pkg");
import * as monaco from "monaco-editor";
// const image = import("./assets/01_rust_loves_js.png");
const initialCode = `\
function greet(targetName) {
return 'Hello, ' + targetName + '!';
}
greet('World')
`;
const editor = monaco.editor.create(
document.getElementsByClassName("textbox")[0], {
value: initialCode,
language: "javascript",
theme: "vs",
minimap: {
enabled: false
}
}
);
// Fix size of Monaco Editor when window resize
window.addEventListener("resize", () => {
editor.layout();
});
rust.then(m => {
window.evaluate = m.evaluate;
editor.getModel().onDidChangeContent(inputHandler);
inputHandler(); // Evaluate initial code
});
function inputHandler(evt) {
const text = editor.getValue();
let p = document.querySelector("p.output");
let result = window.evaluate(text);
p.textContent = `> ${result}`;
}