mirror of https://github.com/boa-dev/boa.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.1 KiB
44 lines
1.1 KiB
// 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}`; |
|
} |