aboutsummaryrefslogtreecommitdiff
path: root/src/content/components/follow.js
blob: 3f28cc27deb6de578fc578e3e81e6b8d59ed32c3 (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
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
import * as followActions from 'content/actions/follow';
import messages from 'shared/messages';
import Hint from './hint';
import HintKeyProducer from 'content/hint-key-producer';

const DEFAULT_HINT_CHARSET = 'abcdefghijklmnopqrstuvwxyz';
const TARGET_SELECTOR = [
  'a', 'button', 'input', 'textarea',
  '[contenteditable=true]', '[contenteditable=""]'
].join(',');

const inWindow = (win, element) => {
  let {
    top, left, bottom, right
  } = element.getBoundingClientRect();
  let doc = win.doc;
  return (
    top >= 0 && left >= 0 &&
    bottom <= (win.innerHeight || doc.documentElement.clientHeight) &&
    right <= (win.innerWidth || doc.documentElement.clientWidth)
  );
};

export default class FollowComponent {
  constructor(win, store) {
    this.win = win;
    this.store = store;
    this.hintElements = {};
    this.state = {};
  }

  update() {
    let prevState = this.state;
    this.state = this.store.getState().follow;
    if (!prevState.enabled && this.state.enabled) {
      this.create();
    } else if (prevState.enabled && !this.state.enabled) {
      this.remove();
    } else if (prevState.keys !== this.state.keys) {
      this.updateHints();
    }
  }

  key(key) {
    if (!this.state.enabled) {
      return false;
    }

    switch (key) {
    case 'Enter':
      this.activate(this.hintElements[this.state.keys].target);
      return;
    case 'Escape':
      this.store.dispatch(followActions.disable());
      return;
    case 'Backspace':
    case 'Delete':
      this.store.dispatch(followActions.backspace());
      break;
    default:
      if (DEFAULT_HINT_CHARSET.includes(key)) {
        this.store.dispatch(followActions.keyPress(key));
      }
      break;
    }
    return true;
  }

  updateHints() {
    let keys = this.state.keys;
    let shown = Object.keys(this.hintElements).filter((key) => {
      return key.startsWith(keys);
    });
    let hidden = Object.keys(this.hintElements).filter((key) => {
      return !key.startsWith(keys);
    });
    if (shown.length === 0) {
      this.remove();
      return;
    } else if (shown.length === 1) {
      this.activate(this.hintElements[keys].target);
      this.store.dispatch(followActions.disable());
    }

    shown.forEach((key) => {
      this.hintElements[key].show();
    });
    hidden.forEach((key) => {
      this.hintElements[key].hide();
    });
  }

  openLink(element) {
    if (!this.state.newTab) {
      element.click();
      return;
    }

    let href = element.getAttribute('href');

    // eslint-disable-next-line no-script-url
    if (!href || href === '#' || href.toLowerCase().startsWith('javascript:')) {
      return;
    }
    return browser.runtime.sendMessage({
      type: messages.OPEN_URL,
      url: element.href,
      newTab: this.state.newTab,
    });
  }

  activate(element) {
    switch (element.tagName.toLowerCase()) {
    case 'a':
      return this.openLink(element, this.state.newTab);
    case 'input':
      switch (element.type) {
      case 'file':
      case 'checkbox':
      case 'radio':
      case 'submit':
      case 'reset':
      case 'button':
      case 'image':
      case 'color':
        return element.click();
      default:
        return element.focus();
      }
    case 'textarea':
      return element.focus();
    case 'button':
      return element.click();
    default:
      // it may contenteditable
      return element.focus();
    }
  }

  create() {
    let elements = FollowComponent.getTargetElements(this.win);
    let producer = new HintKeyProducer(DEFAULT_HINT_CHARSET);
    let hintElements = {};
    Array.prototype.forEach.call(elements, (ele) => {
      let keys = producer.produce();
      let hint = new Hint(ele, keys);
      hintElements[keys] = hint;
    });
    this.hintElements = hintElements;
  }

  remove() {
    let hintElements = this.hintElements;
    Object.keys(this.hintElements).forEach((key) => {
      hintElements[key].remove();
    });
  }

  static getTargetElements(win) {
    let all = win.document.querySelectorAll(TARGET_SELECTOR);
    let filtered = Array.prototype.filter.call(all, (element) => {
      let style = win.getComputedStyle(element);
      return style.display !== 'none' &&
        style.visibility !== 'hidden' &&
        element.type !== 'hidden' &&
        element.offsetHeight > 0 &&
        inWindow(win, element);
    });
    return filtered;
  }
}