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
102
103
104
105
106
107
#![deny(clippy::all, missing_docs)]
#[macro_use]
mod macros;
pub(crate) mod cached_node;
pub mod elements;
pub mod embed;
pub mod interfaces;
pub mod text;
pub mod prelude {
#[cfg(feature = "webdom")]
pub use crate::raw::sys;
pub use crate::raw::{document, event, Dom as RawDom, Node as RawNode};
pub use moxie::{cache, cache_state, cache_with, once, once_with, state, Key};
pub use crate::{
elements::html,
interfaces::{
content_categories::{
EmbeddedContent as _, FlowContent as _, FormAssociatedContent as _,
HeadingContent as _, InteractiveContent as _, LabelableContent as _,
ListedContent as _, MetadataContent as _, PhrasingContent as _,
ResettableContent as _, SectioningContent as _, SubmittableContent as _,
},
element::ElementBuilder,
event_target::EventTarget as _,
global_events::{GlobalEvent as _, GlobalEventHandler as _},
html_element::HtmlElementBuilder,
node::{Child as _, NodeBuilder as _, NodeWrapper, Parent as _},
},
text::text,
};
}
pub use augdom as raw;
#[cfg(any(feature = "webdom", doc))]
pub fn boot<Root>(new_parent: impl Into<augdom::Node>, root: impl FnMut() -> Root + 'static)
where
Root: interfaces::node::Child + 'static,
{
embed::DomLoop::new(new_parent.into(), root).animation_frame_scheduler().run_on_wake();
}
#[cfg(test)]
mod tests {
use crate::{
boot,
elements::html::{b, div, p},
prelude::*,
};
use pretty_assertions::assert_eq;
use wasm_bindgen_test::*;
wasm_bindgen_test_configure!(run_in_browser);
#[wasm_bindgen_test]
pub async fn hello_browser() {
let root = augdom::document().create_element("div");
boot(root.clone(), || {
mox::mox! {
<div>
<p>"hello browser"</p>
<div>
<p><b>"looooool"</b></p>
</div>
</div>
}
});
assert_eq!(
root.pretty_outer_html(2),
r#"<div>
<div>
<p>hello browser</p>
<div>
<p>
<b>looooool</b>
</p>
</div>
</div>
</div>"#
);
}
}