parent
8cef5981b8
commit
fb8b4d28ce
7 changed files with 318 additions and 177 deletions
@ -1,62 +0,0 @@ |
||||
import * as dom from '../../../shared/utils/dom'; |
||||
|
||||
interface Point { |
||||
x: number; |
||||
y: number; |
||||
} |
||||
|
||||
const hintPosition = (element: Element): Point => { |
||||
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 { |
||||
private target: HTMLElement; |
||||
|
||||
private element: HTMLElement; |
||||
|
||||
constructor(target: HTMLElement, tag: string) { |
||||
let doc = target.ownerDocument; |
||||
if (doc === null) { |
||||
throw new TypeError('ownerDocument is null'); |
||||
} |
||||
|
||||
let { x, y } = hintPosition(target); |
||||
let { scrollX, scrollY } = window; |
||||
|
||||
this.target = target; |
||||
|
||||
this.element = doc.createElement('span'); |
||||
this.element.className = 'vimvixen-hint'; |
||||
this.element.textContent = tag; |
||||
this.element.style.left = x + scrollX + 'px'; |
||||
this.element.style.top = y + scrollY + 'px'; |
||||
|
||||
this.show(); |
||||
doc.body.append(this.element); |
||||
} |
||||
|
||||
show(): void { |
||||
this.element.style.display = 'inline'; |
||||
} |
||||
|
||||
hide(): void { |
||||
this.element.style.display = 'none'; |
||||
} |
||||
|
||||
remove(): void { |
||||
this.element.remove(); |
||||
} |
||||
|
||||
getTarget(): HTMLElement { |
||||
return this.target; |
||||
} |
||||
} |
@ -0,0 +1,127 @@ |
||||
import * as doms from '../../shared/utils/dom'; |
||||
|
||||
interface Point { |
||||
x: number; |
||||
y: number; |
||||
} |
||||
|
||||
const hintPosition = (element: Element): Point => { |
||||
let { left, top, right, bottom } = doms.viewportRect(element); |
||||
|
||||
if (element.tagName !== 'AREA') { |
||||
return { x: left, y: top }; |
||||
} |
||||
|
||||
return { |
||||
x: (left + right) / 2, |
||||
y: (top + bottom) / 2, |
||||
}; |
||||
}; |
||||
|
||||
export default abstract class Hint { |
||||
private hint: HTMLElement; |
||||
|
||||
private tag: string; |
||||
|
||||
constructor(target: HTMLElement, tag: string) { |
||||
this.tag = tag; |
||||
|
||||
let doc = target.ownerDocument; |
||||
if (doc === null) { |
||||
throw new TypeError('ownerDocument is null'); |
||||
} |
||||
|
||||
let { x, y } = hintPosition(target); |
||||
let { scrollX, scrollY } = window; |
||||
|
||||
let hint = doc.createElement('span'); |
||||
hint.className = 'vimvixen-hint'; |
||||
hint.textContent = tag; |
||||
hint.style.left = x + scrollX + 'px'; |
||||
hint.style.top = y + scrollY + 'px'; |
||||
|
||||
doc.body.append(hint); |
||||
|
||||
this.hint = hint; |
||||
this.show(); |
||||
} |
||||
|
||||
show(): void { |
||||
this.hint.style.display = 'inline'; |
||||
} |
||||
|
||||
hide(): void { |
||||
this.hint.style.display = 'none'; |
||||
} |
||||
|
||||
remove(): void { |
||||
this.hint.remove(); |
||||
} |
||||
|
||||
getTag(): string { |
||||
return this.tag; |
||||
} |
||||
} |
||||
|
||||
export class LinkHint extends Hint { |
||||
private target: HTMLAnchorElement | HTMLAreaElement; |
||||
|
||||
constructor(target: HTMLAnchorElement | HTMLAreaElement, tag: string) { |
||||
super(target, tag); |
||||
|
||||
this.target = target; |
||||
} |
||||
|
||||
getLink(): string { |
||||
return this.target.href; |
||||
} |
||||
|
||||
getLinkTarget(): string | null { |
||||
return this.target.getAttribute('target'); |
||||
} |
||||
|
||||
click(): void { |
||||
this.target.click(); |
||||
} |
||||
} |
||||
|
||||
export class InputHint extends Hint { |
||||
private target: HTMLElement; |
||||
|
||||
constructor(target: HTMLElement, tag: string) { |
||||
super(target, tag); |
||||
|
||||
this.target = target; |
||||
} |
||||
|
||||
activate(): void { |
||||
let target = this.target; |
||||
switch (target.tagName.toLowerCase()) { |
||||
case 'input': |
||||
switch ((target as HTMLInputElement).type) { |
||||
case 'file': |
||||
case 'checkbox': |
||||
case 'radio': |
||||
case 'submit': |
||||
case 'reset': |
||||
case 'button': |
||||
case 'image': |
||||
case 'color': |
||||
return target.click(); |
||||
default: |
||||
return target.focus(); |
||||
} |
||||
case 'textarea': |
||||
return target.focus(); |
||||
case 'button': |
||||
case 'summary': |
||||
return target.click(); |
||||
default: |
||||
if (doms.isContentEditable(target)) { |
||||
return target.focus(); |
||||
} else if (target.hasAttribute('tabindex')) { |
||||
return target.click(); |
||||
} |
||||
} |
||||
} |
||||
} |
@ -1,57 +0,0 @@ |
||||
import Hint from 'content/components/common/hint'; |
||||
|
||||
describe('Hint class', () => { |
||||
beforeEach(() => { |
||||
document.body.innerHTML = __html__['test/content/components/common/hint.html']; |
||||
}); |
||||
|
||||
describe('#constructor', () => { |
||||
it('creates a hint element with tag name', () => { |
||||
let link = document.getElementById('test-link'); |
||||
let hint = new Hint(link, 'abc'); |
||||
expect(hint.element.textContent.trim()).to.be.equal('abc'); |
||||
}); |
||||
|
||||
it('throws an exception when non-element given', () => { |
||||
expect(() => new Hint(window, 'abc')).to.throw(TypeError); |
||||
}); |
||||
}); |
||||
|
||||
describe('#show', () => { |
||||
it('shows an element', () => { |
||||
let link = document.getElementById('test-link'); |
||||
let hint = new Hint(link, 'abc'); |
||||
hint.hide(); |
||||
hint.show(); |
||||
|
||||
expect(hint.element.style.display).to.not.equal('none'); |
||||
}); |
||||
}); |
||||
|
||||
describe('#hide', () => { |
||||
it('hides an element', () => { |
||||
let link = document.getElementById('test-link'); |
||||
let hint = new Hint(link, 'abc'); |
||||
hint.hide(); |
||||
|
||||
expect(hint.element.style.display).to.equal('none'); |
||||
}); |
||||
}); |
||||
|
||||
describe('#remove', () => { |
||||
it('removes an element', () => { |
||||
let link = document.getElementById('test-link'); |
||||
let hint = new Hint(link, 'abc'); |
||||
|
||||
expect(hint.element.parentElement).to.not.be.null; |
||||
hint.remove(); |
||||
expect(hint.element.parentElement).to.be.null; |
||||
}); |
||||
}); |
||||
|
||||
describe('#activate', () => { |
||||
// TODO test activations
|
||||
}); |
||||
}); |
||||
|
||||
|
@ -0,0 +1,158 @@ |
||||
import AbstractHint, { LinkHint, InputHint } from '../../../src/content/presenters/Hint'; |
||||
import { expect } from 'chai'; |
||||
|
||||
class Hint extends AbstractHint { |
||||
} |
||||
|
||||
describe('Hint', () => { |
||||
beforeEach(() => { |
||||
document.body.innerHTML = `<a id='test-link' href='#'>link</a>`; |
||||
}); |
||||
|
||||
describe('#constructor', () => { |
||||
it('creates a hint element with tag name', () => { |
||||
let link = document.getElementById('test-link'); |
||||
let hint = new Hint(link, 'abc'); |
||||
|
||||
let elem = document.querySelector('.vimvixen-hint'); |
||||
expect(elem.textContent.trim()).to.be.equal('abc'); |
||||
}); |
||||
}); |
||||
|
||||
describe('#show', () => { |
||||
it('shows an element', () => { |
||||
let link = document.getElementById('test-link'); |
||||
let hint = new Hint(link, 'abc'); |
||||
hint.hide(); |
||||
hint.show(); |
||||
|
||||
let elem = document.querySelector('.vimvixen-hint') as HTMLElement; |
||||
expect(elem.style.display).to.not.equal('none'); |
||||
}); |
||||
}); |
||||
|
||||
describe('#hide', () => { |
||||
it('hides an element', () => { |
||||
let link = document.getElementById('test-link') as HTMLElement; |
||||
let hint = new Hint(link, 'abc'); |
||||
hint.hide(); |
||||
|
||||
let elem = document.querySelector('.vimvixen-hint') as HTMLElement; |
||||
expect(elem.style.display).to.equal('none'); |
||||
}); |
||||
}); |
||||
|
||||
describe('#remove', () => { |
||||
it('removes an element', () => { |
||||
let link = document.getElementById('test-link'); |
||||
let hint = new Hint(link, 'abc'); |
||||
|
||||
let elem = document.querySelector('.vimvixen-hint'); |
||||
expect(elem.parentElement).to.not.be.null; |
||||
hint.remove(); |
||||
expect(elem.parentElement).to.be.null; |
||||
}); |
||||
}); |
||||
}); |
||||
|
||||
describe('LinkHint', () => { |
||||
beforeEach(() => { |
||||
document.body.innerHTML = ` |
||||
<a id='test-link1' href='https://google.com/'>link</a> |
||||
<a id='test-link2' href='https://yahoo.com/' target='_blank'>link</a> |
||||
<a id='test-link3' href='#' target='_blank'>link</a> |
||||
`;
|
||||
}); |
||||
|
||||
describe('#getLink()', () => { |
||||
it('returns value of "href" attribute', () => { |
||||
let link = document.getElementById('test-link1') as HTMLAnchorElement; |
||||
let hint = new LinkHint(link, 'abc'); |
||||
|
||||
expect(hint.getLink()).to.equal('https://google.com/'); |
||||
}); |
||||
}); |
||||
|
||||
describe('#getLinkTarget()', () => { |
||||
it('returns value of "target" attribute', () => { |
||||
let link = document.getElementById('test-link1') as HTMLAnchorElement; |
||||
let hint = new LinkHint(link, 'abc'); |
||||
|
||||
expect(hint.getLinkTarget()).to.be.null; |
||||
|
||||
link = document.getElementById('test-link2') as HTMLAnchorElement; |
||||
hint = new LinkHint(link, 'abc'); |
||||
|
||||
expect(hint.getLinkTarget()).to.equal('_blank'); |
||||
}); |
||||
}); |
||||
|
||||
describe('#click()', () => { |
||||
it('clicks a element', (done) => { |
||||
let link = document.getElementById('test-link3') as HTMLAnchorElement; |
||||
let hint = new LinkHint(link, 'abc'); |
||||
link.onclick = () => { done() }; |
||||
|
||||
hint.click(); |
||||
}); |
||||
}); |
||||
}); |
||||
|
||||
describe('InputHint', () => { |
||||
describe('#activate()', () => { |
||||
context('<input>', () => { |
||||
beforeEach(() => { |
||||
document.body.innerHTML = `<input id='test-input'></input>`; |
||||
}); |
||||
|
||||
it('focuses to the input', () => { |
||||
let input = document.getElementById('test-input') as HTMLInputElement; |
||||
let hint = new InputHint(input, 'abc'); |
||||
hint.activate(); |
||||
|
||||
expect(document.activeElement).to.equal(input); |
||||
}); |
||||
}); |
||||
|
||||
context('<input type="checkbox">', () => { |
||||
beforeEach(() => { |
||||
document.body.innerHTML = `<input type="checkbox" id='test-input'></input>`; |
||||
}); |
||||
|
||||
it('checks and focuses to the input', () => { |
||||
let input = document.getElementById('test-input') as HTMLInputElement; |
||||
let hint = new InputHint(input, 'abc'); |
||||
hint.activate(); |
||||
|
||||
expect(input.checked).to.be.true; |
||||
}); |
||||
}); |
||||
context('<textarea>', () => { |
||||
beforeEach(() => { |
||||
document.body.innerHTML = `<textarea id='test-textarea'></textarea>`; |
||||
}); |
||||
|
||||
it('focuses to the textarea', () => { |
||||
let textarea = document.getElementById('test-textarea') as HTMLTextAreaElement; |
||||
let hint = new InputHint(textarea, 'abc'); |
||||
hint.activate(); |
||||
|
||||
expect(document.activeElement).to.equal(textarea); |
||||
}); |
||||
}); |
||||
|
||||
context('<button>', () => { |
||||
beforeEach(() => { |
||||
document.body.innerHTML = `<button id='test-button'></button>`; |
||||
}); |
||||
|
||||
it('clicks the button', (done) => { |
||||
let button = document.getElementById('test-button') as HTMLButtonElement; |
||||
button.onclick = () => { done() }; |
||||
|
||||
let hint = new InputHint(button, 'abc'); |
||||
hint.activate(); |
||||
}); |
||||
}); |
||||
}); |
||||
}); |
Reference in new issue