mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 20:53:06 +00:00
94 lines
3.8 KiB
Rust
94 lines
3.8 KiB
Rust
use dioxus_interpreter_js::binary_protocol::SLEDGEHAMMER_JS;
|
|
|
|
use std::io::Write;
|
|
|
|
const EDITS_PATH: &str = {
|
|
#[cfg(any(target_os = "android", target_os = "windows"))]
|
|
{
|
|
"http://dioxus.index.html/edits"
|
|
}
|
|
#[cfg(not(any(target_os = "android", target_os = "windows")))]
|
|
{
|
|
"dioxus://index.html/edits"
|
|
}
|
|
};
|
|
|
|
fn check_gnu() {
|
|
// WARN about wry support on windows gnu targets. GNU windows targets don't work well in wry currently
|
|
if std::env::var("CARGO_CFG_WINDOWS").is_ok()
|
|
&& std::env::var("CARGO_CFG_TARGET_ENV").unwrap() == "gnu"
|
|
&& !cfg!(feature = "gnu")
|
|
{
|
|
println!("cargo:warning=GNU windows targets have some limitations within Wry. Using the MSVC windows toolchain is recommended. If you would like to use continue using GNU, you can read https://github.com/wravery/webview2-rs#cross-compilation and disable this warning by adding the gnu feature to dioxus-desktop in your Cargo.toml")
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
check_gnu();
|
|
|
|
let prevent_file_upload = r#"// Prevent file inputs from opening the file dialog on click
|
|
let inputs = document.querySelectorAll("input");
|
|
for (let input of inputs) {
|
|
if (!input.getAttribute("data-dioxus-file-listener")) {
|
|
// prevent file inputs from opening the file dialog on click
|
|
const type = input.getAttribute("type");
|
|
if (type === "file") {
|
|
input.setAttribute("data-dioxus-file-listener", true);
|
|
input.addEventListener("click", (event) => {
|
|
let target = event.target;
|
|
let target_id = find_real_id(target);
|
|
if (target_id !== null) {
|
|
const send = (event_name) => {
|
|
const message = window.interpreter.serializeIpcMessage("file_diolog", { accept: target.getAttribute("accept"), directory: target.getAttribute("webkitdirectory") === "true", multiple: target.hasAttribute("multiple"), target: parseInt(target_id), bubbles: event_bubbles(event_name), event: event_name });
|
|
window.ipc.postMessage(message);
|
|
};
|
|
send("change&input");
|
|
}
|
|
event.preventDefault();
|
|
});
|
|
}
|
|
}
|
|
}"#;
|
|
let polling_request = format!(
|
|
r#"// Poll for requests
|
|
window.interpreter.wait_for_request = (headless) => {{
|
|
fetch(new Request("{EDITS_PATH}"))
|
|
.then(response => {{
|
|
response.arrayBuffer()
|
|
.then(bytes => {{
|
|
// In headless mode, the requestAnimationFrame callback is never called, so we need to run the bytes directly
|
|
if (headless) {{
|
|
run_from_bytes(bytes);
|
|
}}
|
|
else {{
|
|
requestAnimationFrame(() => {{
|
|
run_from_bytes(bytes);
|
|
}});
|
|
}}
|
|
window.interpreter.wait_for_request(headless);
|
|
}});
|
|
}})
|
|
}}"#
|
|
);
|
|
let mut interpreter = SLEDGEHAMMER_JS
|
|
.replace("/*POST_HANDLE_EDITS*/", prevent_file_upload)
|
|
.replace("export", "")
|
|
+ &polling_request;
|
|
while let Some(import_start) = interpreter.find("import") {
|
|
let import_end = interpreter[import_start..]
|
|
.find(|c| c == ';' || c == '\n')
|
|
.map(|i| i + import_start)
|
|
.unwrap_or_else(|| interpreter.len());
|
|
interpreter.replace_range(import_start..import_end, "");
|
|
}
|
|
|
|
let js = format!("{interpreter}\nconst config = new InterpreterConfig(false);");
|
|
|
|
use minify_js::*;
|
|
let session = Session::new();
|
|
let mut out = Vec::new();
|
|
minify(&session, TopLevelMode::Module, js.as_bytes(), &mut out).unwrap();
|
|
let minified = String::from_utf8(out).unwrap();
|
|
let mut file = std::fs::File::create("src/minified.js").unwrap();
|
|
file.write_all(minified.as_bytes()).unwrap();
|
|
}
|