This repository has been archived by the owner on Dec 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathShortcutProvider.js
126 lines (96 loc) · 3.12 KB
/
ShortcutProvider.js
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
import { Component } from 'react';
import PropTypes from 'prop-types';
export default class ShortcutProvider extends Component {
static propTypes = {
children: PropTypes.node,
hotkeys: PropTypes.object.isRequired,
keymap: PropTypes.object.isRequired
};
static childContextTypes = {
shortcuts: PropTypes.shape({
subscribe: PropTypes.func.isRequired,
unsubscribe: PropTypes.func.isRequired
})
};
keySequence = [];
fired = {};
getChildContext() {
return {
shortcuts: {
subscribe: this.subscribe,
unsubscribe: this.unsubscribe
}
};
}
componentWillMount() {
document.addEventListener('keydown', this.handleKeyDown);
document.addEventListener('keyup', this.handleKeyUp);
}
componentWillUnmount() {
document.removeEventListener('keydown', this.handleKeyDown);
document.removeEventListener('keyup', this.handleKeyUp);
}
handleKeyDown = event => {
const { key } = event;
const { keySequence, fired } = this;
const { hotkeys } = this.props;
if (fired[key]) {
return;
}
fired[key] = true;
this.keySequence = [...keySequence, key];
const serializedSequence = (this.keySequence
.join('+')
.replace(/\s/, 'space')
.toUpperCase()
);
if (!(serializedSequence in hotkeys)) {
return;
}
const bucket = hotkeys[serializedSequence];
const handler = bucket[bucket.length - 1];
if (typeof handler === 'function') {
return handler(event);
}
// eslint-disable-next-line max-len
console.warn(`Handler defined for key sequence "${serializedSequence}" is not a function.`, handler);
};
handleKeyUp = () => {
this.keySequence = [];
this.fired = {};
};
subscribe = (name, handler) => {
const { hotkeys, keymap } = this.props;
if (!(name in this.props.keymap)) {
console.warn(`There are no hotkeys defined for "${name}".`);
return;
}
const key = keymap[name].toUpperCase();
const bucket = hotkeys[key];
hotkeys[key] = [...bucket, handler];
};
unsubscribe = (name, handler) => {
const { hotkeys, keymap } = this.props;
if (!(name in this.props.keymap)) {
console.warn(`There are no hotkeys defined for "${name}".`);
return;
}
const key = keymap[name].toUpperCase();
const bucket = hotkeys[key];
let found = false;
hotkeys[key] = bucket.filter(_handler => {
if (_handler === handler) {
found = true;
return false;
}
return true;
});
if (!found) {
// eslint-disable-next-line max-len
console.warn(`The handler you are trying to unsubscribe from "${name}" has not been subscribed yet.`, handler);
}
};
render() {
return this.props.children;
}
}