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
use super::Props;
use crate::{
callback::PersistedCallback, create_element, hooks::JsRefContainer, VNode,
VNodeList,
};
use wasm_bindgen::{
convert::{FromWasmAbi, IntoWasmAbi},
JsValue,
};
use web_sys::Element;
#[derive(Debug, Clone)]
pub struct H<'a> {
pub(crate) tag: &'a str,
pub(crate) props: Props,
}
impl<'a> H<'a> {
pub fn new(tag: &'a str) -> Self {
Self {
tag,
props: Props::new(),
}
}
pub fn key(mut self, value: Option<&str>) -> Self {
self.props = self.props.key(value);
self
}
pub fn ref_container(
mut self,
ref_container: &JsRefContainer<Element>,
) -> Self {
self.props = self.props.ref_container(ref_container);
self
}
pub fn ref_callback(
mut self,
ref_callback: &PersistedCallback<Option<Element>>,
) -> Self {
self.props = self.props.ref_callback(ref_callback);
self
}
pub fn attr(mut self, key: &str, value: &JsValue) -> Self {
self.props = self.props.insert(key, value);
self
}
pub fn attr_callback<T, U>(
mut self,
key: &str,
f: &PersistedCallback<T, U>,
) -> Self
where
T: FromWasmAbi + 'static,
U: IntoWasmAbi + 'static,
{
self.props = self.props.insert_callback(key, f);
self
}
pub fn build(self, children: VNodeList) -> VNode {
create_element(&self.tag.into(), &self.props, children)
}
}