-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path19_1_keyboard_bindings.html
42 lines (40 loc) · 1.27 KB
/
19_1_keyboard_bindings.html
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
<div></div>
<script>
// The original PixelEditor class. Extend the constructor.
class PixelEditor {
constructor(state, config) {
let { tools, controls, dispatch } = config;
this.state = state;
this.canvas = new PictureCanvas(state.picture, pos => {
let tool = tools[this.state.tool];
let onMove = tool(pos, this.state, dispatch);
if (onMove) {
return pos => onMove(pos, this.state, dispatch);
}
});
this.controls = controls.map(Control => new Control(state, config));
this.dom = elt(
'div',
{
tabIndex: 1,
onkeydown: e => {
e.preventDefault;
Object.keys(config.tools).forEach(t => {
if (event.ctrlKey && event.key === 'z') dispatch({ undo: true });
else if (t[0] === event.key) dispatch({ tool: letterTools[event.key] });
});
}
},
this.canvas.dom,
elt('br'),
...this.controls.reduce((a, c) => a.concat(' ', c.dom), [])
);
}
syncState(state) {
this.state = state;
this.canvas.syncState(state.picture);
for (let ctrl of this.controls) ctrl.syncState(state);
}
}
document.querySelector('div').appendChild(startPixelEditor({}));
</script>