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
108
109
110
111
mod off_icon;
mod on_icon;
pub use off_icon::*;
pub use on_icon::*;
use crate::bool_to_option;
use gloo::events::EventListener;
use wasm_bindgen::prelude::*;
use web_sys::Node;
use yew::prelude::*;
use yew::virtual_dom::AttrValue;
#[wasm_bindgen(module = "/build/mwc-icon-button-toggle.js")]
extern "C" {
#[derive(Debug)]
#[wasm_bindgen(extends = Node)]
type IconButtonToggle;
#[wasm_bindgen(getter, static_method_of = IconButtonToggle)]
fn _dummy_loader() -> JsValue;
#[wasm_bindgen(method, getter)]
fn on(this: &IconButtonToggle) -> bool;
}
loader_hack!(IconButtonToggle);
pub struct MatIconButtonToggle {
node_ref: NodeRef,
change_listener: Option<EventListener>,
}
#[derive(Debug, Properties, PartialEq, Clone)]
pub struct IconButtonToggleProps {
#[prop_or_default]
pub on: bool,
#[prop_or_default]
pub on_icon: Option<AttrValue>,
#[prop_or_default]
pub off_icon: Option<AttrValue>,
#[prop_or_default]
pub label: Option<AttrValue>,
#[prop_or_default]
pub disabled: bool,
#[prop_or_default]
pub onchange: Callback<bool>,
#[prop_or_default]
pub children: Children,
}
impl Component for MatIconButtonToggle {
type Message = ();
type Properties = IconButtonToggleProps;
fn create(_: &Context<Self>) -> Self {
IconButtonToggle::ensure_loaded();
Self {
node_ref: NodeRef::default(),
change_listener: None,
}
}
fn view(&self, ctx: &Context<Self>) -> Html {
let props = ctx.props();
html! {
<mwc-icon-button-toggle
on={bool_to_option(props.on)}
onIcon={props.on_icon.clone()}
offIcon={props.off_icon.clone()}
label={props.label.clone()}
disabled={props.disabled}
ref={self.node_ref.clone()}
> {props.children.clone()}</mwc-icon-button-toggle>
}
}
fn changed(&mut self, _ctx: &Context<Self>, _old_props: &Self::Properties) -> bool {
self.change_listener = None;
true
}
fn rendered(&mut self, ctx: &Context<Self>, _first_render: bool) {
let props = ctx.props();
if self.change_listener.is_none() {
let element = self.node_ref.cast::<IconButtonToggle>().unwrap();
let callback = props.onchange.clone();
self.change_listener = Some(EventListener::new(
&element.clone(),
"MDCIconButtonToggle:change",
move |_| callback.emit(element.on()),
));
}
}
}