1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
//! Intended to be used as an xtask in order to make it trivial to run web-based examples.
//!
//! This is a temporary solution while we're in the process of building our own xtask tools.

use std::time::Duration;

fn main() {
    const CSS: &str = r#"
        html {
            /* Remove touch delay: */
            touch-action: manipulation;
        }

        body {
            /* Light mode background color for what is not covered by the egui canvas,
            or where the egui canvas is translucent. */
            background: #909090;
        }

        @media (prefers-color-scheme: dark) {
            body {
                /* Dark mode background color for what is not covered by the egui canvas,
                or where the egui canvas is translucent. */
                background: #404040;
            }
        }

        /* Allow canvas to fill entire web page: */
        html,
        body {
            overflow: hidden;
            margin: 0 !important;
            padding: 0 !important;
            height: 100%;
            width: 100%;
        }

        /* ---------------------------------------------- */
        /* Loading animation from https://loading.io/css/ */
        .lds-dual-ring {
            display: inline-block;
            width: 24px;
            height: 24px;
        }

        .lds-dual-ring:after {
            content: " ";
            display: block;
            width: 24px;
            height: 24px;
            margin: 0px;
            border-radius: 50%;
            border: 3px solid #fff;
            border-color: #fff transparent #fff transparent;
            animation: lds-dual-ring 1.2s linear infinite;
        }

        @keyframes lds-dual-ring {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }
    "#;

    use pico_args::Arguments;
    let mut args = Arguments::from_env();
    let host = args
        .opt_value_from_str("--host")
        .unwrap_or(None)
        .unwrap_or("localhost".to_owned());
    let port = args
        .opt_value_from_str("--port")
        .unwrap_or(None)
        .unwrap_or("8000".to_owned());

    let thread = std::thread::Builder::new()
        .name("cargo_run_wasm".into())
        .spawn(|| {
            cargo_run_wasm::run_wasm_with_css(CSS);
        })
        .expect("Failed to spawn thread");

    if args.contains("--build-only") {
        thread.join().expect("std::thread::join() failed");
    } else {
        // It would be nice to start a web-browser, but we can't really know when the server is ready.
        // So we just sleep for a while and hope it works.
        std::thread::sleep(Duration::from_millis(500));

        // Open browser tab.
        let viewer_url = format!("http://{host}:{port}",);
        webbrowser::open(&viewer_url).ok();
        println!("Opening browser at {viewer_url}");

        std::thread::sleep(Duration::from_secs(u64::MAX));
    }
}