tridactyl/src/hinting.ts

326 lines
8.7 KiB
TypeScript
Raw Normal View History

2017-11-08 23:20:41 +00:00
/** Hint links.
TODO:
important
Connect to input system
Gluing into tridactyl
unimportant
Frames
Redraw on reflow
*/
import {elementsByXPath, isVisible, mouseEvent} from './dom'
import {log} from './math'
import {permutationsWithReplacement, islice, izip, map} from './itertools'
import {hasModifiers} from './keyseq'
import state from './state'
import {messageActiveTab} from './messaging'
2017-11-08 23:20:41 +00:00
/** Simple container for the state of a single frame's hints. */
class HintState {
public focusedHint: Hint
readonly hintHost = document.createElement('div')
readonly hints: Hint[] = []
public filter = ''
public hintchars = ''
2017-11-08 23:20:41 +00:00
destructor() {
// Undo any alterations of the hinted elements
for (const hint of this.hints) {
hint.hidden = true
}
// Remove all hints from the DOM.
this.hintHost.remove()
}
}
let modeState: HintState = undefined
/** For each hintable element, add a hint */
export function hintPage(
hintableElements: Element[],
onSelect: HintSelectedCallback,
names = hintnames_uniform(hintableElements.length),
) {
2017-11-19 07:57:30 +00:00
state.mode = 'hint'
2017-11-08 23:20:41 +00:00
modeState = new HintState()
for (let [el, name] of izip( hintableElements, names)) {
console.log({el, name})
modeState.hintchars += name
2017-11-08 23:20:41 +00:00
modeState.hints.push(new Hint(el, name, onSelect))
}
console.log("HINTS", modeState.hints)
2017-11-08 23:20:41 +00:00
modeState.focusedHint = modeState.hints[0]
modeState.focusedHint.focused = true
2017-11-08 23:20:41 +00:00
document.body.appendChild(modeState.hintHost)
}
/** vimperator-style minimal hint names */
function* hintnames(hintchars = HINTCHARS): IterableIterator<string> {
2017-11-08 23:20:41 +00:00
let taglen = 1
while (true) {
yield* map(permutationsWithReplacement(hintchars, taglen), e=>e.join(''))
taglen++
}
}
/** Uniform length hintnames */
function* hintnames_uniform(n: number, hintchars = HINTCHARS): IterableIterator<string> {
if (n <= hintchars.length)
yield* islice(hintchars[Symbol.iterator](), n)
else {
// else calculate required length of each tag
const taglen = Math.ceil(log(n, hintchars.length))
// And return first n permutations
yield* map(islice(permutationsWithReplacement(hintchars, taglen), n),
perm => perm.join(''))
}
}
2017-11-08 23:20:41 +00:00
type HintSelectedCallback = (Hint) => any
/** Place a flag by each hintworthy element */
class Hint {
private readonly flag = document.createElement('span')
constructor(
private readonly target: Element,
public readonly name: string,
private readonly onSelect: HintSelectedCallback
) {
const rect = target.getClientRects()[0]
this.flag.textContent = name
this.flag.className = 'TridactylHint'
/* this.flag.style.cssText = ` */
/* top: ${rect.top}px; */
/* left: ${rect.left}px; */
/* ` */
2017-11-08 23:20:41 +00:00
this.flag.style.cssText = `
top: ${window.scrollY + rect.top}px;
left: ${window.scrollX + rect.left}px;
2017-11-08 23:20:41 +00:00
`
modeState.hintHost.appendChild(this.flag)
target.classList.add('TridactylHintElem')
2017-11-08 23:20:41 +00:00
}
// These styles would be better with pseudo selectors. Can we do custom ones?
// If not, do a state machine.
set hidden(hide: boolean) {
this.flag.hidden = hide
if (hide) {
this.focused = false
this.target.classList.remove('TridactylHintElem')
2017-11-08 23:20:41 +00:00
} else
this.target.classList.add('TridactylHintElem')
2017-11-08 23:20:41 +00:00
}
set focused(focus: boolean) {
if (focus) {
this.target.classList.add('TridactylHintActive')
this.target.classList.remove('TridactylHintElem')
2017-11-08 23:20:41 +00:00
} else {
this.target.classList.add('TridactylHintElem')
this.target.classList.remove('TridactylHintActive')
2017-11-08 23:20:41 +00:00
}
}
select() {
this.onSelect(this)
}
}
const HINTCHARS = 'hjklasdfgyuiopqwertnmzxcvb'
/* const HINTCHARS = 'asdf' */
2017-11-08 23:20:41 +00:00
/** Show only hints prefixed by fstr. Focus first match */
2017-11-08 23:20:41 +00:00
function filter(fstr) {
const active: Hint[] = []
let foundMatch
for (let h of modeState.hints) {
if (!h.name.startsWith(fstr)) h.hidden = true
else {
if (! foundMatch) {
h.focused = true
modeState.focusedHint = h
foundMatch = true
}
h.hidden = false
2017-11-08 23:20:41 +00:00
active.push(h)
}
}
if (active.length == 1) {
selectFocusedHint()
}
2017-11-08 23:20:41 +00:00
}
/** Remove all hints, reset STATE. */
function reset() {
modeState.destructor()
modeState = undefined
2017-11-19 07:57:30 +00:00
state.mode = 'normal'
2017-11-08 23:20:41 +00:00
}
/** If key is in hintchars, add it to filtstr and filter */
function pushKey(ke) {
if (hasModifiers(ke)) {
return
} else if (ke.key === 'Backspace') {
modeState.filter = modeState.filter.slice(0,-1)
filter(modeState.filter)
} else if (ke.key.length > 1) {
return
} else if (modeState.hintchars.includes(ke.key)) {
2017-11-08 23:20:41 +00:00
modeState.filter += ke.key
filter(modeState.filter)
}
}
/** Array of hintable elements in viewport
Elements are hintable if
1. they can be meaningfully selected, clicked, etc
2. they're visible
1. Within viewport
2. Not hidden by another element
*/
function hintables() {
return Array.from(document.querySelectorAll(HINTTAGS_selectors)).filter(isVisible)
2017-11-08 23:20:41 +00:00
}
2017-11-22 20:47:35 +00:00
function elementswithtext() {
return Array.from(document.querySelectorAll(HINTTAGS_text_selectors)).filter(
isVisible
).filter(hint => {
return hint.textContent != ""
})
}
// CSS selectors. More readable for web developers. Not dead. Leaves browser to care about XML.
const HINTTAGS_selectors = `
input:not([type=hidden]):not([disabled]),
a,
area,
iframe,
textarea,
button,
select,
[onclick],
[onmouseover],
[onmousedown],
[onmouseup],
[oncommand],
[role='link'],
[role='button'],
[role='checkbox'],
[role='combobox'],
[role='listbox'],
[role='listitem'],
[role='menuitem'],
[role='menuitemcheckbox'],
[role='menuitemradio'],
[role='option'],
[role='radio'],
[role='scrollbar'],
[role='slider'],
[role='spinbutton'],
[role='tab'],
[role='textbox'],
[role='treeitem'],
[class*='button'],
[tabindex]
`
2017-11-22 20:47:35 +00:00
const HINTTAGS_text_selectors = `
input:not([type=hidden]):not([disabled]),
a,
area,
iframe,
textarea,
button,
p,
div
`
import {activeTab, browserBg, l, firefoxVersionAtLeast} from './lib/webext'
2017-11-18 01:51:46 +00:00
async function openInBackground(url: string) {
const thisTab = await activeTab()
const options: any = {
2017-11-18 02:52:33 +00:00
active: false,
url,
index: thisTab.index + 1,
}
if (await l(firefoxVersionAtLeast(57))) options.openerTabId = thisTab.id
return browserBg.tabs.create(options)
2017-11-18 02:52:33 +00:00
}
/** if `target === _blank` clicking the link is treated as opening a popup and is blocked. Use webext API to avoid that. */
function simulateClick(target: HTMLElement) {
// target can be set to other stuff, and we'll fail in annoying ways.
// There's no easy way around that while this code executes outside of the
// magic 'short lived event handler' context.
//
// OTOH, hardly anyone uses that functionality any more.
if ((target as HTMLAnchorElement).target === '_blank' ||
(target as HTMLAnchorElement).target === '_new'
) {
browserBg.tabs.create({url: (target as HTMLAnchorElement).href})
} else {
mouseEvent(target, "click")
// Sometimes clicking the element doesn't focus it sufficiently.
target.focus()
}
}
2017-11-18 01:51:46 +00:00
function hintPageOpenInBackground() {
hintPage(hintables(), hint=>{
hint.target.focus()
2017-11-18 02:52:33 +00:00
if (hint.target.href) {
// Try to open with the webext API. If that fails, simulate a click on this page anyway.
openInBackground(hint.target.href).catch(()=>simulateClick(hint.target))
2017-11-18 01:51:46 +00:00
} else {
// This is to mirror vimperator behaviour.
2017-11-18 02:52:33 +00:00
simulateClick(hint.target)
2017-11-18 01:51:46 +00:00
}
})
}
2017-11-08 23:20:41 +00:00
function hintPageSimple() {
hintPage(hintables(), hint=>{
2017-11-18 02:52:33 +00:00
simulateClick(hint.target)
})
}
2017-11-22 20:47:35 +00:00
function hintPageTextYank() {
hintPage(elementswithtext(), hint=>{
messageActiveTab("commandline_frame", "setClipboard", [hint.target.textContent])
})
}
function hintPageYank() {
hintPage(hintables(), hint=>{
messageActiveTab("commandline_frame", "setClipboard", [hint.target.href])
})
}
2017-11-08 23:20:41 +00:00
function selectFocusedHint() {
console.log("Selecting hint.", state.mode)
const focused = modeState.focusedHint
reset()
focused.select()
2017-11-08 23:20:41 +00:00
}
import {addListener, attributeCaller} from './messaging'
addListener('hinting_content', attributeCaller({
pushKey,
selectFocusedHint,
reset,
hintPageSimple,
hintPageYank,
2017-11-22 20:47:35 +00:00
hintPageTextYank,
2017-11-18 01:51:46 +00:00
hintPageOpenInBackground,
}))