TEMPORARY: add testing example

This commit is contained in:
Ben Merritt 2019-06-05 22:58:11 -07:00
parent 7dabad4d71
commit 77cd3adb01
No known key found for this signature in database
GPG key ID: F8AD20ED4E6239B7
5 changed files with 42 additions and 5 deletions

4
.gitignore vendored
View file

@ -2,5 +2,9 @@ Cargo.lock
target/
rls/
.vscode/
util/
*~
*.wasm
*.ts
*.js
#*#

View file

@ -21,7 +21,7 @@ log = "0.4"
serde = { version = "1", optional = true, features = ["serde_derive"] }
[features]
web-sys-support = ["web-sys", "wasm-bindgen"]
web_sys = ["web-sys", "wasm-bindgen"]
[dev-dependencies]
image = "0.21"
@ -81,6 +81,7 @@ version = "0.8"
version = "0.3.22"
optional = true
features = [
'console',
'Document',
'DomRect',
'Element',
@ -108,3 +109,7 @@ optional = true
[target.'cfg(target_arch = "wasm32")'.dependencies]
stdweb = { path = "../stdweb", optional = true }
instant = { version = "0.1", features = ["stdweb"] }
[[example]]
name = "window"
crate-type = ["cdylib"]

View file

@ -5,22 +5,28 @@ extern crate stdweb;
#[cfg(feature = "wasm-bindgen")]
#[macro_use]
extern crate wasm_bindgen;
#[cfg(feature = "wasm-bindgen")]
extern crate web_sys;
use winit::window::WindowBuilder;
use winit::event::{Event, WindowEvent};
use winit::event_loop::{EventLoop, ControlFlow};
use wasm_bindgen::{prelude::*, JsValue};
use web_sys::console;
fn main() {
#[wasm_bindgen(start)]
pub fn main() {
console::log_1(&JsValue::from_str("main"));
let event_loop = EventLoop::new();
let _window = WindowBuilder::new()
.with_title("A fantastic window!")
.build(&event_loop)
.unwrap();
//console!(log, "Built window!");
console::log_1(&JsValue::from_str("Created window"));
event_loop.run(|event, _, control_flow| {
//console!(log, format!("{:?}", event));
console::log_1(&JsValue::from_str(&format!("{:?}", event)));
match event {
Event::WindowEvent {
@ -30,4 +36,4 @@ fn main() {
_ => *control_flow = ControlFlow::Wait,
}
});
}
}

20
test.html Normal file
View file

@ -0,0 +1,20 @@
<!doctype html>
<html>
<head>
<script type="module">
import { default as init } from './window.js';
async function run() {
console.log("Loading");
await init('./window_bg.wasm');
console.log("Loaded");
}
run();
</script>
</head>
<body>
<canvas id="test_canvas"></canvas>
</body>
</html>

2
test.ps1 Normal file
View file

@ -0,0 +1,2 @@
cargo build --target wasm32-unknown-unknown --features web_sys --example window
wasm-bindgen .\target\wasm32-unknown-unknown\debug\examples\window.wasm --out-dir . --target web