use std::path::Path;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
extern "C" {
#[wasm_bindgen(js_namespace = console)]
pub(crate) fn log(s: &str);
}
#[wasm_bindgen(js_name = experimental_build)]
pub fn experimental_build_wasm(
entry_path: String,
fs_resolver_js: &js_sys::Function,
minify: bool,
) -> JsValue {
std::panic::set_hook(Box::new(console_error_panic_hook::hook));
let fs_resolver = |path: &std::path::Path| {
let res =
fs_resolver_js.call1(&JsValue::null(), &JsValue::from(path.display().to_string()));
res.ok().and_then(|res| res.as_string())
};
let result = crate::build::build(
&fs_resolver,
Path::new(&entry_path),
None,
Path::new("out.js"),
&crate::build::BuildConfig { strip_whitespace: minify },
None,
);
serde_wasm_bindgen::to_value(&result).unwrap()
}
#[wasm_bindgen(js_name = check)]
pub fn check_wasm(entry_path: String, fs_resolver_js: &js_sys::Function) -> JsValue {
std::panic::set_hook(Box::new(console_error_panic_hook::hook));
let fs_resolver = |path: &std::path::Path| {
let res =
fs_resolver_js.call1(&JsValue::null(), &JsValue::from(path.display().to_string()));
res.ok().and_then(|res| res.as_string())
};
let (diagnostics, _) = crate::check::check(&fs_resolver, Path::new(&entry_path), None);
serde_wasm_bindgen::to_value(&diagnostics).unwrap()
}
#[wasm_bindgen(js_name = run_cli)]
pub fn run_cli_wasm(
cli_arguments: Box<[JsValue]>,
read_from_file: &js_sys::Function,
write_to_file: &js_sys::Function,
cli_input_resolver_js: &js_sys::Function,
) {
std::panic::set_hook(Box::new(console_error_panic_hook::hook));
let arguments = cli_arguments.into_iter().flat_map(JsValue::as_string).collect::<Vec<_>>();
let arguments = arguments.iter().map(String::as_str).collect::<Vec<_>>();
let read_from_file = |path: &std::path::Path| {
let res =
read_from_file.call1(&JsValue::null(), &JsValue::from(path.display().to_string()));
res.ok().and_then(|res| res.as_string())
};
let write_to_file = |path: &std::path::Path, content: String| {
write_to_file
.call2(
&JsValue::null(),
&JsValue::from(path.display().to_string()),
&JsValue::from(content),
)
.unwrap();
};
let cli_input_resolver = |prompt: &str| {
cli_input_resolver_js
.call1(&JsValue::null(), &JsValue::from(prompt.to_owned()))
.ok()
.as_ref()
.and_then(JsValue::as_string)
};
crate::run_cli(&arguments, &read_from_file, write_to_file, cli_input_resolver);
}
#[wasm_bindgen(js_name = parse_expression)]
pub fn parse_expression_to_json(input: String) -> JsValue {
use parser::{ASTNode, Expression, SourceId};
std::panic::set_hook(Box::new(console_error_panic_hook::hook));
let item = Expression::from_string(input, Default::default(), SourceId::NULL, None);
match item {
Ok(item) => serde_wasm_bindgen::to_value(&Ok::<_, ()>(item)).unwrap(),
Err(parse_error) => {
serde_wasm_bindgen::to_value(&(parse_error.reason, parse_error.position)).unwrap()
}
}
}
#[wasm_bindgen(js_name = parse_module)]
pub fn parse_module_to_json(input: String) -> JsValue {
use parser::{ASTNode, Module, SourceId};
std::panic::set_hook(Box::new(console_error_panic_hook::hook));
let item = Module::from_string(input, Default::default(), SourceId::NULL, None);
match item {
Ok(item) => serde_wasm_bindgen::to_value(&Ok::<_, ()>(item)).unwrap(),
Err(parse_error) => {
serde_wasm_bindgen::to_value(&(parse_error.reason, parse_error.position)).unwrap()
}
}
}
#[wasm_bindgen]
pub fn just_imports(input: String) -> JsValue {
use parser::{ASTNode, Module, SourceId};
std::panic::set_hook(Box::new(console_error_panic_hook::hook));
let item = Module::from_string(input, Default::default(), SourceId::NULL, None);
match item {
Ok(mut item) => {
crate::transformers::filter_imports(&mut item);
serde_wasm_bindgen::to_value(&item.to_string(&parser::ToStringOptions::minified()))
.unwrap()
}
Err(parse_error) => {
serde_wasm_bindgen::to_value(&(parse_error.reason, parse_error.position)).unwrap()
}
}
}
#[wasm_bindgen]
pub fn minify_module(input: String) -> JsValue {
use parser::{ASTNode, Module, SourceId};
std::panic::set_hook(Box::new(console_error_panic_hook::hook));
let item = Module::from_string(input, Default::default(), SourceId::NULL, None);
match item {
Ok(item) => {
serde_wasm_bindgen::to_value(&item.to_string(&parser::ToStringOptions::minified()))
.unwrap()
}
Err(parse_error) => {
serde_wasm_bindgen::to_value(&(parse_error.reason, parse_error.position)).unwrap()
}
}
}
#[wasm_bindgen]
pub fn get_version() -> JsValue {
serde_wasm_bindgen::to_value(&env!("CARGO_PKG_VERSION")).unwrap()
}