aboutsummaryrefslogtreecommitdiff
path: root/src/components/content-input.js
blob: 643712846de5f771bc458fb834fee5568cd039f4 (plain) (blame)
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
import messages from '../content/messages';

export default class ContentInputComponent {
  constructor(target) {
    this.pressed = {};

    target.addEventListener('keypress', this.onKeyPress.bind(this));
    target.addEventListener('keydown', this.onKeyDown.bind(this));
    target.addEventListener('keyup', this.onKeyUp.bind(this));
  }

  onKeyPress(e) {
    this.capture(e);
  }

  onKeyDown(e) {
    this.capture(e);
  }

  onKeyUp(e) {
    this.pressed[e.key] = false;
  }

  capture(e) {
    if (this.pressed[e.key]) {
      return;
    }
    this.pressed[e.key] = true;

    if (e.target instanceof HTMLInputElement ||
      e.target instanceof HTMLTextAreaElement ||
      e.target instanceof HTMLSelectElement) {
      if (e.key === 'Escape' && e.target.blur) {
        e.target.blur();
      }
      return;
    }
    browser.runtime.sendMessage({
      type: messages.KEYDOWN,
      key: e.key,
      ctrl: e.ctrlKey
    });
  }
}