aboutsummaryrefslogtreecommitdiff
path: root/src/content/components/common
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2017-10-31 21:37:53 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2017-10-31 21:37:53 +0900
commit14241ca842b7dc92f26252a0ac7bb7e549d560c8 (patch)
treeeced7b1cc76935aea8e9de2a0cbf79649b032052 /src/content/components/common
parent2c600786c8ecfd73db91204e6fd816d54c077d77 (diff)
support following area tags
Diffstat (limited to 'src/content/components/common')
-rw-r--r--src/content/components/common/follow.js16
-rw-r--r--src/content/components/common/hint.js20
2 files changed, 27 insertions, 9 deletions
diff --git a/src/content/components/common/follow.js b/src/content/components/common/follow.js
index 19c31eb..83aeb0a 100644
--- a/src/content/components/common/follow.js
+++ b/src/content/components/common/follow.js
@@ -3,17 +3,18 @@ import Hint from './hint';
import * as dom from 'shared/utils/dom';
const TARGET_SELECTOR = [
- 'a', 'button', 'input', 'textarea',
+ 'a', 'button', 'input', 'textarea', 'area',
'[contenteditable=true]', '[contenteditable=""]', '[tabindex]'
].join(',');
+
const inViewport = (win, element, viewSize, framePosition) => {
let {
top, left, bottom, right
- } = element.getBoundingClientRect();
- let doc = win.doc;
- let frameWidth = win.innerWidth || doc.documentElement.clientWidth;
- let frameHeight = win.innerHeight || doc.documentElement.clientHeight;
+ } = dom.viewportRect(element);
+ let doc = win.document;
+ let frameWidth = doc.documentElement.clientWidth;
+ let frameHeight = doc.documentElement.clientHeight;
if (right < 0 || bottom < 0 || top > frameHeight || left > frameWidth) {
// out of frame
@@ -115,6 +116,7 @@ export default class Follow {
let element = hint.target;
switch (element.tagName.toLowerCase()) {
case 'a':
+ case 'area':
return this.openLink(element);
case 'input':
switch (element.type) {
@@ -162,7 +164,9 @@ export default class Follow {
let all = win.document.querySelectorAll(TARGET_SELECTOR);
let filtered = Array.prototype.filter.call(all, (element) => {
let style = win.getComputedStyle(element);
- return style.display !== 'none' &&
+
+ // AREA's 'display' in Browser style is 'none'
+ return (element.tagName === 'AREA' || style.display !== 'none') &&
style.visibility !== 'hidden' &&
element.type !== 'hidden' &&
element.offsetHeight > 0 &&
diff --git a/src/content/components/common/hint.js b/src/content/components/common/hint.js
index cc46fd6..9ef9eba 100644
--- a/src/content/components/common/hint.js
+++ b/src/content/components/common/hint.js
@@ -1,4 +1,18 @@
import './hint.css';
+import * as dom from 'shared/utils/dom';
+
+const hintPosition = (element) => {
+ let { left, top, right, bottom } = dom.viewportRect(element);
+
+ if (element.tagName !== 'AREA') {
+ return { x: left, y: top };
+ }
+
+ return {
+ x: (left + right) / 2,
+ y: (top + bottom) / 2,
+ };
+};
export default class Hint {
constructor(target, tag) {
@@ -9,14 +23,14 @@ export default class Hint {
this.target = target;
let doc = target.ownerDocument;
- let { top, left } = target.getBoundingClientRect();
+ let { x, y } = hintPosition(target);
let { scrollX, scrollY } = window;
this.element = doc.createElement('span');
this.element.className = 'vimvixen-hint';
this.element.textContent = tag;
- this.element.style.left = left + scrollX + 'px';
- this.element.style.top = top + scrollY + 'px';
+ this.element.style.left = x + scrollX + 'px';
+ this.element.style.top = y + scrollY + 'px';
this.show();
doc.body.append(this.element);