extern crate fltk;
extern crate tinyjson;
use fltk::{app, prelude::*, window};
use fltk_webview::*;
use tinyjson::JsonValue;
const HTML: &str = r#"
<html>
<body>
<p>hello</p>
<script>
window.onload = async () => {
document.body.innerText = `added, ${await add(1, 2)}`;
console.log(await say_hello('Mo'));
};
</script>
</body>
</html>"#;
fn main() {
let app = app::App::default();
let mut win = window::Window::default()
.with_size(800, 600)
.with_label("Webview");
let mut wv_win = window::Window::default()
.with_size(790, 590)
.center_of_parent();
win.end();
win.make_resizable(true);
win.show();
let wv = Webview::create(true, &mut wv_win);
wv.set_html(HTML).unwrap();
wv.bind("add", |seq, content| {
println!("{}, {}", seq, content);
let parsed: JsonValue = content.parse().unwrap();
let val1: &f64 = parsed[0].get().unwrap();
let val2: &f64 = parsed[1].get().unwrap();
let ret = val1 + val2;
wv.return_(seq, 0, &ret.to_string()).unwrap();
}).unwrap();
wv.bind("say_hello", |seq, content| {
println!("{}, {}", seq, content);
let parsed: JsonValue = content.parse().unwrap();
let val: &String = parsed[0].get().unwrap();
wv.return_(seq, 0, &format!("\"Hello {}\"", val)).unwrap();
}).unwrap();
app.run().unwrap();
}