Skip to content

Commit b8c71c8

Browse files
committed
Document event
1 parent b00783e commit b8c71c8

File tree

3 files changed

+26
-11
lines changed

3 files changed

+26
-11
lines changed

Cargo.lock

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ edition = "2021"
77
[dependencies]
88
console_error_panic_hook = "*"
99
gloo-storage = "*"
10+
gloo-events = "*"
11+
gloo-utils = "*"
1012
hex = "*"
1113
html_parser = "*"
1214
itertools = "*"

src/model.rs

+22-11
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,14 @@ use crate::{
33
schema::{Field, SCHEMA},
44
types::*,
55
};
6+
use gloo_events::EventListener;
67
use gloo_storage::{LocalStorage, Storage};
78
use serde::{Deserialize, Serialize};
89
use std::{
910
collections::{BTreeMap, HashMap},
1011
rc::Rc,
1112
};
13+
use wasm_bindgen::JsCast;
1214
use web_sys::{window, InputEvent, MouseEvent};
1315
use yew::{html, prelude::*, Html, KeyboardEvent};
1416

@@ -26,7 +28,6 @@ impl GlobalState {
2628
}
2729
}
2830

29-
#[derive(PartialEq, Clone)]
3031
pub struct Model {
3132
pub global_state: Rc<GlobalState>,
3233

@@ -38,6 +39,8 @@ pub struct Model {
3839
pub node_state: HashMap<Path, NodeState>,
3940

4041
pub stack: Vec<String>,
42+
43+
pub document_keydown_listener: EventListener,
4144
}
4245

4346
#[derive(Clone, Debug, PartialEq)]
@@ -101,6 +104,7 @@ impl Component for Model {
101104
e.stop_propagation();
102105
Msg::CommandKey(vec![], e)
103106
});
107+
104108
html! {
105109
<div
106110
tabindex="0"
@@ -136,16 +140,21 @@ impl Component for Model {
136140
}
137141
}
138142

139-
fn create(_ctx: &Context<Self>) -> Self {
140-
// let key_listener = KeyboardService::register_key_down(
141-
// &window().unwrap(),
142-
// ctx.link().callback(move |e: KeyboardEvent| {
143-
// // e.stop_propagation();
144-
// // e.stop_immediate_propagation();
145-
// // e.prevent_default();
146-
// Msg::CommandKey(e)
147-
// }),
148-
// );
143+
fn create(ctx: &Context<Self>) -> Self {
144+
let document_callback = ctx
145+
.link()
146+
.callback(move |e: KeyboardEvent| Msg::CommandKey(vec![], e));
147+
148+
let document_keydown_listener = gloo_events::EventListener::new(
149+
&gloo_utils::document(),
150+
"keydown",
151+
move |e: &Event| {
152+
e.stop_propagation();
153+
e.dyn_ref::<KeyboardEvent>().map(|e| {
154+
document_callback.emit(e.clone());
155+
});
156+
},
157+
);
149158
let (node_store, root) = super::initial::initial();
150159
Model {
151160
global_state: Rc::new(GlobalState {
@@ -163,6 +172,8 @@ impl Component for Model {
163172
node_state: HashMap::new(),
164173

165174
stack: vec![],
175+
176+
document_keydown_listener,
166177
}
167178
}
168179

0 commit comments

Comments
 (0)