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
226
227
228
229
230
231
232
233
234
235
use anyhow::anyhow;
use serde::{Deserialize, Serialize};
use wasm_bindgen::prelude::*;

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Point {
    x: f64,
    y: f64,
}

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct LngLat {
    pub lng: f64,
    pub lat: f64,
}

#[derive(Debug, Clone)]
pub struct MapBaseEvent {
    pub r#type: String,
}

impl TryFrom<JsValue> for MapBaseEvent {
    type Error = anyhow::Error;

    fn try_from(value: JsValue) -> Result<Self, Self::Error> {
        let r#type = js_sys::Reflect::get(&value, &JsValue::from("type"))
            .unwrap()
            .as_string()
            .unwrap();
        Ok(MapBaseEvent { r#type })
    }
}

#[derive(Debug, Clone)]
pub struct MapEvent {
    pub r#type: String,
    pub original_event: Option<web_sys::MouseEvent>,
}

impl TryFrom<JsValue> for MapEvent {
    type Error = anyhow::Error;

    fn try_from(value: JsValue) -> Result<Self, Self::Error> {
        let r#type = js_sys::Reflect::get(&value, &JsValue::from("type"))
            .unwrap()
            .as_string()
            .unwrap();
        let original_event = js_sys::Reflect::get(&value, &JsValue::from("originalEvent"))
            .ok()
            .and_then(|event| web_sys::MouseEvent::try_from(event).ok());
        Ok(MapEvent {
            r#type,
            original_event,
        })
    }
}

#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct MapDataEvent {
    pub r#type: String,
    pub data_type: String,
    pub is_source_loaded: Option<bool>,
    // TODO source
    pub source_data_type: Option<String>,
    pub source_id: Option<String>,
    // TODO tile
}

impl TryFrom<JsValue> for MapDataEvent {
    type Error = anyhow::Error;

    fn try_from(value: JsValue) -> Result<Self, Self::Error> {
        serde_wasm_bindgen::from_value(value)
            .map_err(|e| anyhow!("Failed to deserialize into \"MapDataEvent\": {}", e))
    }
}

#[derive(Debug, Clone)]
pub struct MapBoxZoomEvent {
    pub r#type: String,
    pub original_event: web_sys::MouseEvent,
}

impl TryFrom<JsValue> for MapBoxZoomEvent {
    type Error = anyhow::Error;

    fn try_from(value: JsValue) -> Result<Self, Self::Error> {
        let r#type = js_sys::Reflect::get(&value, &JsValue::from("type"))
            .map_err(|_| anyhow!("\"type\" property not found"))?
            .as_string()
            .ok_or_else(|| anyhow!("Failed to cast \"type\" property as string"))?;

        let event = js_sys::Reflect::get(&value, &JsValue::from("originalEvent"))
            .map_err(|_| anyhow!("\"originalEvent\" property not found"))?;

        Ok(MapBoxZoomEvent {
            r#type,
            original_event: web_sys::MouseEvent::try_from(event)?,
        })
    }
}

#[derive(Debug, Clone)]
pub struct MapMouseEvent {
    pub r#type: String,
    pub original_event: web_sys::MouseEvent,
    pub point: Point,
    pub lng_lat: LngLat,
    pub features: Vec<String>,
}

impl TryFrom<JsValue> for MapMouseEvent {
    type Error = anyhow::Error;

    fn try_from(value: JsValue) -> Result<Self, Self::Error> {
        let r#type = js_sys::Reflect::get(&value, &JsValue::from("type"))
            .map_err(|_| anyhow!("\"type\" property not found"))?
            .as_string()
            .ok_or_else(|| anyhow!("Failed to cast \"type\" property as string"))?;

        let event = js_sys::Reflect::get(&value, &JsValue::from("originalEvent"))
            .map_err(|_| anyhow!("\"originalEvent\" property not found"))?;

        let point = js_sys::Reflect::get(&value, &JsValue::from("point"))
            .map_err(|_| anyhow!("\"point\" property not found"))?;

        let lng_lat = js_sys::Reflect::get(&value, &JsValue::from("lngLat"))
            .map_err(|_| anyhow!("\"lngLat\" property not found"))?;

        let features = js_sys::Reflect::get(&value, &JsValue::from("features"))
            .map_err(|_| anyhow!("\"features\" property not found"))?;

        Ok(MapMouseEvent {
            r#type,
            original_event: web_sys::MouseEvent::try_from(event)?,
            point: serde_wasm_bindgen::from_value(point).unwrap(),
            lng_lat: serde_wasm_bindgen::from_value(lng_lat).unwrap(),
            features: serde_wasm_bindgen::from_value(features).unwrap_or_default(),
        })
    }
}

#[derive(Debug, Clone)]
pub struct MapTouchEvent {
    pub r#type: String,
    pub original_event: web_sys::TouchEvent,
    pub point: Point,
    pub points: Vec<Point>,
    pub lng_lat: LngLat,
    pub lng_lats: Vec<LngLat>,
    pub features: Vec<String>,
}

impl TryFrom<JsValue> for MapTouchEvent {
    type Error = anyhow::Error;

    fn try_from(value: JsValue) -> Result<Self, Self::Error> {
        let r#type = js_sys::Reflect::get(&value, &JsValue::from("type"))
            .map_err(|_| anyhow!("\"type\" property not found"))?
            .as_string()
            .ok_or_else(|| anyhow!("Failed to cast \"type\" property as string"))?;

        let event = js_sys::Reflect::get(&value, &JsValue::from("originalEvent"))
            .map_err(|_| anyhow!("\"originalEvent\" property not found"))?;

        let point = js_sys::Reflect::get(&value, &JsValue::from("point"))
            .map_err(|_| anyhow!("\"point\" property not found"))?;

        let points = js_sys::Reflect::get(&value, &JsValue::from("points"))
            .map_err(|_| anyhow!("\"points\" property not found"))?;

        let lng_lat = js_sys::Reflect::get(&value, &JsValue::from("lngLat"))
            .map_err(|_| anyhow!("\"lngLat\" property not found"))?;

        let lng_lats = js_sys::Reflect::get(&value, &JsValue::from("lngLats"))
            .map_err(|_| anyhow!("\"lngLats\" property not found"))?;

        let features = js_sys::Reflect::get(&value, &JsValue::from("features"))
            .map_err(|_| anyhow!("\"features\" property not found"))?;

        Ok(MapTouchEvent {
            r#type,
            original_event: web_sys::TouchEvent::try_from(event)?,
            point: serde_wasm_bindgen::from_value(point).unwrap(),
            points: serde_wasm_bindgen::from_value(points).unwrap(),
            lng_lat: serde_wasm_bindgen::from_value(lng_lat).unwrap(),
            lng_lats: serde_wasm_bindgen::from_value(lng_lats).unwrap(),
            features: serde_wasm_bindgen::from_value(features).unwrap_or_default(),
        })
    }
}

#[derive(Debug, Clone)]
pub struct MapWheelEvent {
    pub r#type: String,
    pub original_event: web_sys::WheelEvent,
}

impl TryFrom<JsValue> for MapWheelEvent {
    type Error = anyhow::Error;

    fn try_from(value: JsValue) -> Result<Self, Self::Error> {
        let r#type = js_sys::Reflect::get(&value, &JsValue::from("type"))
            .map_err(|_| anyhow!("\"type\" property not found"))?
            .as_string()
            .ok_or_else(|| anyhow!("Failed to cast \"type\" property as string"))?;

        let event = js_sys::Reflect::get(&value, &JsValue::from("originalEvent"))
            .map_err(|_| anyhow!("\"originalEvent\" property not found"))?;

        Ok(MapWheelEvent {
            r#type,
            original_event: web_sys::WheelEvent::try_from(event)?,
        })
    }
}

#[derive(Debug, Clone)]
pub struct DragEvent {
    pub original_event: web_sys::DragEvent,
}

impl TryFrom<JsValue> for DragEvent {
    type Error = anyhow::Error;

    fn try_from(value: JsValue) -> Result<Self, Self::Error> {
        let event = js_sys::Reflect::get(&value, &JsValue::from("originalEvent"))
            .map_err(|_| anyhow!("\"originalEvent\" property not found"))?;

        Ok(DragEvent {
            original_event: web_sys::DragEvent::try_from(event)?,
        })
    }
}