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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
use std::fmt::{self, Debug};
use std::convert::From;
use std::hash::{Hash, Hasher};
use std::iter::FromIterator;
use std::collections::*;
use std::cell::{self, Cell, RefCell};
use std::rc::Rc;
use std::any::Any;
use serde::{self, Serialize, Deserialize, de::DeserializeOwned};
use either::Either;
use wasm_bindgen::JsValue;
use wasm_bindgen::closure;
use wasm_bindgen::closure::Closure;
pub mod console {
    use super::*;
    
    pub fn log(value: impl Loggable) {
        match value.to_js_value() {
            Either::Left(x) => {
                web_sys::console::log_1(&x);
            }
            Either::Right(x) => {
                web_sys::console::log_1(x);
            }
        }
    }
    pub fn warn(value: impl Loggable) {
        match value.to_js_value() {
            Either::Left(x) => {
                web_sys::console::warn_1(&x);
            }
            Either::Right(x) => {
                web_sys::console::warn_1(x);
            }
        }
    }
    
    pub trait Loggable {
        fn to_js_value(&self) -> Either<JsValue, &JsValue>;
    }
    impl Loggable for &str {
        fn to_js_value(&self) -> Either<JsValue, &JsValue> {
            Either::Left(JsValue::from_str(self))
        }
    }
    impl Loggable for String {
        fn to_js_value(&self) -> Either<JsValue, &JsValue> {
            Either::Left(JsValue::from_str(self.as_str()))
        }
    }
    impl Loggable for JsValue {
        fn to_js_value(&self) -> Either<JsValue, &JsValue> {
            Either::Right(&self)
        }
    }
    impl Loggable for &JsValue {
        fn to_js_value(&self) -> Either<JsValue, &JsValue> {
            Either::Right(self)
        }
    }
}
#[derive(Clone)]
pub struct VoidCallback {
    pub i_bindgen_closure: Rc<Closure<dyn Fn(JsValue)>>,
    pub i_js_function: Rc<js_sys::Function>,
}
impl VoidCallback {
    pub fn new(cb: Box<Fn(JsValue)>) -> Self {
        use wasm_bindgen::JsCast;
        let function_wrapper: Closure<dyn Fn(JsValue)> = Closure::wrap(Box::new({
            move |value: JsValue| {
                cb(value)
            }
        }));
        let js_function: &js_sys::Function = function_wrapper.as_ref().unchecked_ref();
        let js_function: js_sys::Function = js_function.clone();
        let void_callback = VoidCallback {
            i_bindgen_closure: Rc::new(function_wrapper),
            i_js_function: Rc::new(js_function),
        };
        void_callback
    }
}
impl Debug for VoidCallback {
    fn fmt(&self, f: &mut std::fmt::Formatter) -> fmt::Result {
        write!(f, "VoidCallback")
    }
}
impl PartialEq for VoidCallback {
    fn eq(&self, other: &VoidCallback) -> bool {true}
}
impl crate::dom::Callback for VoidCallback {
    fn as_js_function(&self) -> &js_sys::Function {
        self.i_js_function.as_ref()
    }
}
#[derive(Clone)]
pub struct QueueCallback {
    pub i_bindgen_closure: Rc<Closure<dyn Fn(JsValue)>>,
    pub i_js_function: Rc<js_sys::Function>,
    pub i_events: Rc<RefCell<VecDeque<JsValue>>>,
}
impl QueueCallback {
    pub fn new() -> Self {
        use wasm_bindgen::JsCast;
        let events_queue = Rc::new(RefCell::new(VecDeque::new()));
        let function_wrapper: Closure<dyn Fn(JsValue)> = Closure::wrap(Box::new({
            let events_queue = events_queue.clone();
            move |value: JsValue| {
                events_queue.borrow_mut().push_back(value);
            }
        }));
        let js_function: &js_sys::Function = function_wrapper.as_ref().unchecked_ref();
        let js_function: js_sys::Function = js_function.clone();
        let queue_callback = QueueCallback {
            i_bindgen_closure: Rc::new(function_wrapper),
            i_js_function: Rc::new(js_function),
            i_events: events_queue,
        };
        queue_callback
    }
    pub fn drain(&self) -> Vec<JsValue> {
        let xs: Vec<JsValue> = self.i_events.borrow_mut().drain(..).collect();
        xs
    }
}
impl Debug for QueueCallback {
    fn fmt(&self, f: &mut std::fmt::Formatter) -> fmt::Result {
        write!(f, "QueueCallback")
    }
}
impl PartialEq for QueueCallback {
    fn eq(&self, other: &QueueCallback) -> bool {true}
}
impl crate::dom::Callback for QueueCallback {
    fn as_js_function(&self) -> &js_sys::Function {
        self.i_js_function.as_ref()
    }
}
pub trait Handler<Msg> {
    fn handler(&self, event: JsValue) -> Msg;
}
#[derive(Clone)]
pub struct EventCallback<Msg> {
    pub i_handler: Rc<Handler<Msg>>,
    pub i_bindgen_closure: Rc<Closure<dyn Fn(JsValue)>>,
    pub i_js_function: Rc<js_sys::Function>,
    pub i_events: Rc<RefCell<VecDeque<JsValue>>>,
}
impl<Msg> EventCallback<Msg> {
    pub fn new(handler: Rc<Handler<Msg>>) -> Self {
        use wasm_bindgen::JsCast;
        let events_queue = Rc::new(RefCell::new(VecDeque::new()));
        let function_wrapper: Closure<dyn Fn(JsValue)> = Closure::wrap(Box::new({
            let events_queue = events_queue.clone();
            move |value: JsValue| {
                events_queue.borrow_mut().push_back(value);
            }
        }));
        let js_function: &js_sys::Function = function_wrapper.as_ref().unchecked_ref();
        let js_function: js_sys::Function = js_function.clone();
        let queue_callback = EventCallback {
            i_handler: handler,
            i_bindgen_closure: Rc::new(function_wrapper),
            i_js_function: Rc::new(js_function),
            i_events: events_queue,
        };
        queue_callback
    }
    
    
    
    
    
    
    
    
    
}
impl<Msg> Debug for EventCallback<Msg> {
    fn fmt(&self, f: &mut std::fmt::Formatter) -> fmt::Result {
        write!(f, "EventCallback")
    }
}
impl<Msg> PartialEq for EventCallback<Msg> {
    fn eq(&self, other: &EventCallback<Msg>) -> bool {true}
}
impl<Msg> crate::dom::Callback for EventCallback<Msg> {
    fn as_js_function(&self) -> &js_sys::Function {
        self.i_js_function.as_ref()
    }
}