Last active
March 31, 2021 22:01
-
-
Save alan-andrade/31e4d2cacb5436e33a97e1d3e424c8c7 to your computer and use it in GitHub Desktop.
Jump to next hotkey
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(() => { | |
const contains = (text) => `contains(text(),'${text}')`; | |
const conditions = (textOrArray) => textOrArray instanceof Array ? textOrArray.map(contains) : [contains(textOrArray)]; | |
const btnXpath = (text) => `//button[${conditions(text).join(" or ")}]`; | |
const divXpath = (text) => `//div[${contains(text)}]`; | |
const findEl = (xpath) => document.evaluate( | |
xpath, | |
document, | |
null, | |
XPathResult.FIRST_ORDERED_NODE_TYPE, | |
null).singleNodeValue; | |
const isWriting = () => findEl(`//div[@role="listbox"]`); | |
const back = () => findEl(btnXpath("Back")).click(); | |
const flag = () => findEl(btnXpath(["Flag Class", "Unflag Class"])).click(); | |
const skip = () => findEl(btnXpath("Skip")).click(); | |
const next = () => findEl(btnXpath("Save + Next")).click(); | |
const tag = () => findEl(divXpath("Choose an option")).click(); | |
const keyMappings = { | |
"a": back, | |
"s": flag, | |
"d": skip, | |
"f": next, | |
"w": tag | |
}; | |
const triggerFn = (key) => keyMappings[key](); | |
const guard = () => isWriting() ? () => {} : triggerFn; | |
document.onkeypress = (e) => guard()(e.key); | |
alert("a = Back\ns = Flag/Unflag\nd = Skip\nf = Next\nw = Write"); | |
})() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment