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
#[cfg(feature = "textfield")]
mod textfield;
#[cfg(feature = "textfield")]
pub use textfield::*;
#[cfg(any(feature = "textfield", feature = "textarea"))]
pub(crate) mod validity_state;
#[cfg(any(feature = "textfield", feature = "textarea"))]
pub use validity_state::ValidityState;
#[cfg(any(feature = "textfield", feature = "textarea"))]
pub(crate) mod text_field_type;
#[cfg(any(feature = "textfield", feature = "textarea"))]
pub use text_field_type::*;
#[cfg(feature = "textarea")]
mod textarea;
#[cfg(feature = "textarea")]
pub use textarea::*;
#[cfg(any(feature = "textfield", feature = "textarea"))]
pub use web_sys::ValidityState as NativeValidityState;
use std::rc::Rc;
use gloo::events::EventListener;
use wasm_bindgen::JsValue;
use web_sys::{Element, Event};
use yew::{Callback, NodeRef};
#[cfg(any(feature = "textfield", feature = "textarea"))]
pub(crate) type ValidityTransformFn = dyn Fn(String, NativeValidityState) -> ValidityState;
#[cfg(any(feature = "textfield", feature = "textarea"))]
#[derive(Clone)]
pub struct ValidityTransform(pub(crate) Rc<ValidityTransformFn>);
#[cfg(any(feature = "textfield", feature = "textarea"))]
impl ValidityTransform {
pub(crate) fn new<F: Fn(String, NativeValidityState) -> ValidityState + 'static>(
func: F,
) -> ValidityTransform {
ValidityTransform(Rc::new(func))
}
}
impl PartialEq for ValidityTransform {
#[allow(clippy::vtable_address_comparisons)]
fn eq(&self, other: &Self) -> bool {
Rc::ptr_eq(&self.0, &other.0)
}
}
fn set_on_input_handler(
node_ref: &NodeRef,
callback: Callback<String>,
convert: impl Fn((Event, JsValue)) -> String + 'static,
) -> EventListener {
let element = node_ref.cast::<Element>().unwrap();
EventListener::new(&element, "input", move |event: &Event| {
let js_value = JsValue::from(event);
callback.emit(convert((event.clone(), js_value)))
})
}