tridactyl/src/excmds.ts

2384 lines
80 KiB
TypeScript
Raw Normal View History

// '//#' is a start point for a simple text-replacement-type macro. See excmds_macros.py
/** # Tridactyl help page
Use `:help <excmd>` or scroll down to show [[help]] for a particular excmd.
2018-04-16 12:45:40 +01:00
The default keybinds can be found [here](/static/docs/modules/_config_.html#defaults) or all active binds can be seen with `:viewconfig nmaps`.
You can also view them with [[bind]]. Try `bind j`.
2018-03-08 22:34:22 +00:00
For more information, and FAQs, check out our [readme][4] on github.
Tridactyl is in a pretty early stage of development. Please report any
2018-01-23 21:07:36 -08:00
issues and make requests for missing features on the GitHub [project page][1].
You can also get in touch using Matrix, Gitter, or IRC chat clients:
[![Matrix Chat][matrix-badge]][matrix-link]
[![Gitter Chat][gitter-badge]][gitter-link]
[![Freenode Chat][freenode-badge]][freenode-link]
All three channels are mirrored together, so it doesn't matter which one you use.
## How to use this help page
We've hackily re-purposed TypeDoc which is designed for internal documentation. Every function (excmd) on this page can be called via Tridactyl's command line which we call "ex". There is a slight change in syntax, however. Wherever you see:
`function(arg1,arg2)`
You should instead type
`function arg1 arg2` into the Tridactyl command line (accessed via `:`)
A "splat" operator (...) means that the excmd will accept any number of space-delimited arguments into that parameter.
2018-05-16 17:12:29 +01:00
You do not need to worry about types. Return values which are promises will turn into whatever they promise to when used in [[composite]].
At the bottom of each function's help page, you can click on a link that will take you straight to that function's definition in our code. This is especially recommended for browsing the [config](/static/docs/modules/_config_.html#defaults) which is nigh-on unreadable on these pages.
## Highlighted features:
- Press `b` to bring up a list of open tabs in the current window; you can
type the tab ID or part of the title or URL to choose a tab
- Press `Shift` + `Insert` to enter "ignore mode". Press `Shift` + `Insert`
again to return to "normal mode".
- Press `f` to start "hint mode", `F` to open in background
- Press `o` to `:open` a different page
- Press `s` if you want to search for something that looks like a domain
name or URL
- [[bind]] new commands with e.g. `:bind J tabnext`
- Type `:help` to see a list of available excmds
- Use `yy` to copy the current page URL to your clipboard
- `]]` and `[[` to navigate through the pages of comics, paginated
articles, etc
- Pressing `ZZ` will close all tabs and windows, but it will only "save"
them if your about:preferences are set to "show your tabs and windows
from last time"
There are some caveats common to all webextension vimperator-alikes:
- Do not try to navigate to any about:\* pages using `:open` as it will
fail silently
- Firefox will not load Tridactyl on addons.mozilla.org, about:\*, some
file:\* URIs, view-source:\*, or data:\*. On these pages Ctrl-L (or F6),
Ctrl-Tab and Ctrl-W are your escape hatches
- Tridactyl does not currently support changing/hiding the Firefox GUI, but
you can do it yourself by changing your userChrome. There is an [example
file](2) available in our repository.
If you want a more fully-featured vimperator-alike, your best option is
2018-03-08 22:34:22 +00:00
[Firefox ESR][3] and Vimperator :)
[1]: https://github.com/cmcaine/tridactyl/issues
[2]: https://github.com/cmcaine/tridactyl/blob/master/src/static/userChrome-minimal.css
[3]: https://www.mozilla.org/en-US/firefox/organizations/
2018-03-08 22:34:22 +00:00
[4]: https://github.com/cmcaine/tridactyl#readme
[gitter-badge]: /static/badges/gitter-badge.svg
[gitter-link]: https://gitter.im/tridactyl/Lobby
[freenode-badge]: /static/badges/freenode-badge.svg
[freenode-link]: ircs://chat.freenode.net/tridactyl
[matrix-badge]: https://matrix.to/img/matrix-badge.svg
[matrix-link]: https://riot.im/app/#/room/#tridactyl:matrix.org
*/
/** ignore this line */
// {{{ setup
2018-03-12 22:36:05 +00:00
// Shared
import * as Messaging from "./messaging"
import { l, browserBg, activeTabId, activeTabContainerId } from "./lib/webext"
import state from "./state"
2018-03-12 22:36:05 +00:00
import * as UrlUtil from "./url_util"
import * as config from "./config"
import * as aliases from "./aliases"
2018-03-12 22:36:05 +00:00
import * as Logging from "./logging"
/** @hidden */
const logger = new Logging.Logger("excmds")
import Mark from "mark.js"
2018-04-21 23:43:12 +01:00
import * as CSS from "css"
//#content_helper
2018-03-12 22:36:05 +00:00
// {
import "./number.clamp"
import * as SELF from "./.excmds_content.generated"
Messaging.addListener("excmd_content", Messaging.attributeCaller(SELF))
import * as DOM from "./dom"
import { executeWithoutCommandLine } from "./commandline_content"
2018-03-12 22:36:05 +00:00
// }
//#background_helper
2018-03-12 22:36:05 +00:00
// {
/** Message excmds_content.ts in the active tab of the currentWindow */
import { messageActiveTab } from "./messaging"
import { flatten } from "./itertools"
import "./number.mod"
import { ModeName } from "./state"
import * as keydown from "./keydown_background"
import { activeTab, firefoxVersionAtLeast, openInNewTab } from "./lib/webext"
import * as CommandLineBackground from "./commandline_background"
import * as rc from "./config_rc"
//#background_helper
import * as Native from "./native_background"
2017-11-03 19:10:12 +00:00
/** @hidden */
export const cmd_params = new Map<string, Map<string, string>>()
2018-03-12 22:36:05 +00:00
// }
// }}}
2018-04-18 21:49:33 +01:00
// {{{ Native messenger stuff
/** @hidden **/
//#background
export async function getNativeVersion(): Promise<void> {
Native.getNativeMessengerVersion()
}
/**
* Fills the last used input box with content. You probably don't want this; it's used internally for [[editor]].
*
* That said, `bind gs fillinput [Tridactyl](https://addons.mozilla.org/en-US/firefox/addon/tridactyl-vim/) is my favourite add-on` could probably come in handy.
*/
//#content
export async function fillinput(...content: string[]) {
let inputToFill = DOM.getLastUsedInput() as HTMLInputElement
inputToFill.value = content.join(" ")
}
/** @hidden */
//#content
export async function getinput() {
// this should probably be subsumed by the focusinput code
let input = DOM.getLastUsedInput() as HTMLInputElement
return input.value
}
/**
* Opens your favourite editor (which is currently gVim) and fills the last used input with whatever you write into that file.
2018-04-18 21:49:33 +01:00
* **Requires that the native messenger is installed, see [[native]] and [[installnative]]**.
*
* Uses the `editorcmd` config option, default = `auto` looks through a list defined in native_background.ts try find a sensible combination. If it's a bit slow, or chooses the wrong editor, or gives up completely, set editorcmd to something you want. The command must stay in the foreground until the editor exits.
2018-04-18 21:49:33 +01:00
*
* The editorcmd needs to accept a filename, stay in the foreground while it's edited, save the file and exit.
*
* You're probably better off using the default insert mode bind of <C-i> to access this.
*/
//#background
export async function editor() {
let url = new URL((await activeTab()).url)
if (!await Native.nativegate()) return
const file = (await Native.temp(await getinput(), url.hostname)).content
fillinput((await Native.editor(file)).content)
// TODO: add annoying "This message was written with [Tridactyl](https://addons.mozilla.org/en-US/firefox/addon/tridactyl-vim/)"
// to everything written using editor
}
2018-04-21 23:43:12 +01:00
//#background_helper
import * as css_util from "./css_util"
/**
2018-05-05 13:06:49 +01:00
* Change which parts of the Firefox user interface are shown. **NB: This feature is experimental and might break stuff.**
2018-04-21 23:43:12 +01:00
*
2018-05-10 16:27:58 +02:00
* Might mangle your userChrome. Requires native messenger, and you must restart Firefox each time to see any changes (this can be done using [[restart]]). <!-- (unless you enable addon debugging and refresh using the browser toolbox) -->
2018-04-30 15:57:23 +01:00
*
* View available rules and options [here](/static/docs/modules/_css_util_.html#potentialrules) and [here](/static/docs/modules/_css_util_.html#metarules).
*
* Example usage: `guiset gui none`, `guiset gui full`, `guiset tabs autohide`.
2018-04-21 23:43:12 +01:00
*
2018-05-05 13:06:49 +01:00
* Some of the available options:
*
* - gui
* - full
* - none
*
* - tabs
* - always
* - autohide
*
* - navbar
* - always
* - autohide
*
* - hoverlink (the little link that appears when you hover over a link)
* - none
* - left
* - right
* - top-left
* - top-right
*
* - titlebar
* - hide
* - show
*
2018-04-21 23:43:12 +01:00
*/
//#background
export async function guiset(rule: string, option: string) {
// Could potentially fall back to sending minimal example to clipboard if native not installed
2018-04-30 15:57:23 +01:00
// Check for native messenger and make sure we have a plausible profile directory
if (!await Native.nativegate("0.1.1")) return
let profile_dir = ""
if (config.get("profiledir") === "auto" && ["linux", "openbsd", "mac"].includes((await browser.runtime.getPlatformInfo()).os)) {
try {
profile_dir = await Native.getProfileDir()
} catch (e) {}
} else {
profile_dir = config.get("profiledir")
}
2018-04-30 15:57:23 +01:00
if (profile_dir == "") {
fillcmdline("Please set your profile directory (found on about:support) via `set profiledir [profile directory]`")
2018-04-30 15:57:23 +01:00
return
}
// Make backups
await Native.mkdir(profile_dir + "/chrome", true)
let cssstr = (await Native.read(profile_dir + "/chrome/userChrome.css")).content
2018-04-30 15:57:23 +01:00
let cssstrOrig = (await Native.read(profile_dir + "/chrome/userChrome.orig.css")).content
if (cssstrOrig === "") await Native.write(profile_dir + "/chrome/userChrome.orig.css", cssstr)
2018-04-21 23:43:12 +01:00
await Native.write(profile_dir + "/chrome/userChrome.css.tri.bak", cssstr)
2018-04-30 15:57:23 +01:00
// Modify and write new CSS
if (cssstr === "") cssstr = `@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");`
2018-04-21 23:43:12 +01:00
let stylesheet = CSS.parse(cssstr)
// Trim due to https://github.com/reworkcss/css/issues/114
let stylesheetDone = CSS.stringify(css_util.changeCss(rule, option, stylesheet)).trim()
2018-04-21 23:43:12 +01:00
Native.write(profile_dir + "/chrome/userChrome.css", stylesheetDone)
}
/** @hidden */
//#background
export function cssparse(...css: string[]) {
console.log(CSS.parse(css.join(" ")))
}
/**
* Uses the native messenger to open URLs.
*
* **Be *seriously* careful with this: you can use it to open any URL you can open in the Firefox address bar.**
*
* You've been warned.
2018-04-27 21:43:58 +01:00
*
* Unsupported on OSX unless you set `browser` to something that will open Firefox from a terminal pass it commmand line options.
*/
//#background
export async function nativeopen(url: string, ...firefoxArgs: string[]) {
if (firefoxArgs.length === 0) firefoxArgs = ["--new-tab"]
if (await Native.nativegate()) {
Native.run(config.get("browser") + " " + firefoxArgs.join(" ") + " " + url)
}
}
/**
* Run command in /bin/sh (unless you're on Windows), and print the output in the command line. Non-zero exit codes and stderr are ignored, currently.
*
* Requires the native messenger, obviously.
*
* If you want to use a different shell, just prepend your command with whatever the invocation is and keep in mode that most shells require quotes around the command to be executed, e.g. `:exclaim xonsh -c "1+2"`.
*
* Aliased to `!` but the exclamation mark **must be followed with a space**.
*/
//#background
export async function exclaim(...str: string[]) {
fillcmdline((await Native.run(str.join(" "))).content)
} // should consider how to give option to fillcmdline or not. We need flags.
/**
* Like exclaim, but without any output to the command line.
*/
//#background
export async function exclaim_quiet(...str: string[]) {
return (await Native.run(str.join(" "))).content
}
/**
* Tells you if the native messenger is installed and its version.
*
*/
//#background
export async function native() {
const version = await Native.getNativeMessengerVersion(true)
if (version !== undefined) fillcmdline("# Native messenger is correctly installed, version " + version)
else fillcmdline("# Native messenger not found. Please run `:installnative` and follow the instructions.")
}
/**
2018-04-18 21:49:33 +01:00
* Simply copies "curl -fsSl https://raw.githubusercontent.com/cmcaine/tridactyl/master/native/install.sh | bash" to the clipboard and tells the user to run it.
*/
//#background
export async function installnative() {
const installstr = await config.get("nativeinstallcmd")
await clipboard("yank", installstr)
2018-04-24 23:21:26 +01:00
fillcmdline("# Installation command copied to clipboard. Please paste and run it in your shell to install the native messenger.")
}
/**
* Runs an RC file from disk.
*
* If no argument given, it will try to open ~/.tridactylrc, ~/.config/tridactylrc or $XDG_CONFIG_HOME/tridactyl/tridactylrc in reverse order.
*
2018-05-10 22:25:31 +01:00
* The RC file is just a bunch of Tridactyl excmds (i.e, the stuff on this help page). Settings persist in local storage; add `sanitise tridactyllocal tridactylsync` to make it more Vim like. There's an [example file](https://www.github.com/cmcaine/tridactyl/master/.tridactylrc) if you want it.
*
* @param fileArr the file to open. Must be an absolute path, but can contain environment variables and things like ~.
*/
//#background
export async function source(...fileArr: string[]) {
const file = fileArr.join(" ") || undefined
2018-05-11 21:33:10 +01:00
if (await Native.nativegate("0.1.3")) if (!await rc.source(file)) logger.error("Could not find RC file")
}
/**
* Same as [[source]] but suppresses all errors
*/
//#background
export async function source_quiet(...fileArr: string[]) {
try {
const file = fileArr.join(" ") || undefined
if (await Native.nativegate("0.1.3", false)) rc.source(file)
} catch (e) {
logger.info("Automatic loading of RC file failed.")
}
}
/**
* Updates the native messenger if it is installed, using our GitHub repo. This is run every time Tridactyl is updated.
*
* If you want to disable this, or point it to your own native messenger, edit the `nativeinstallcmd` setting.
*/
2018-04-24 23:21:26 +01:00
//#background
export async function updatenative(interactive = true) {
if (await Native.nativegate("0", interactive)) {
if ((await browser.runtime.getPlatformInfo()).os === "mac") {
if (interactive) logger.error("Updating the native messenger on OSX is broken. Please use `:installnative` instead.")
return
}
await Native.run(await config.get("nativeinstallcmd"))
if (interactive) native()
2018-04-24 23:21:26 +01:00
}
}
2018-04-18 21:49:33 +01:00
2018-05-10 16:27:58 +02:00
/**
* Restarts firefox with the same commandline arguments.
*
* Warning: This can kill your tabs, especially if you :restart several times
* in a row
*/
//#background
export async function restart() {
const firefox = (await Native.ffargs()).join(" ")
const profile = await Native.getProfileDir()
// Wait for the lock to disappear, then wait a bit more, then start firefox
Native.run(`while readlink ${profile}/lock ; do sleep 1 ; done ; sleep 1 ; ${firefox}`)
qall()
}
2018-04-18 21:49:33 +01:00
// }}}
2017-11-03 19:10:12 +00:00
/** @hidden */
function hasScheme(uri: string) {
return uri.match(/^([\w-]+):/)
}
/** @hidden */
function searchURL(provider: string, query: string) {
if (provider == "search") provider = config.get("searchengine")
const searchurlprovider = config.get("searchurls", provider)
if (searchurlprovider === undefined) {
throw new TypeError(`Unknown provider: '${provider}'`)
}
return UrlUtil.interpolateSearchItem(new URL(searchurlprovider), query)
}
/** Take a string and find a way to interpret it as a URI or search query. */
2017-11-03 19:10:12 +00:00
/** @hidden */
2018-03-03 09:56:05 +01:00
export function forceURI(maybeURI: string): string {
2017-12-06 14:59:00 +00:00
// Need undefined to be able to open about:newtab
if (maybeURI == "") return undefined
// If the uri looks like it might contain a schema and a domain, try url()
// test for a non-whitespace, non-colon character after the colon to avoid
// false positives like "error: can't reticulate spline" and "std::map".
//
// These heuristics mean that very unusual URIs will be coerced to
// something else by this function.
if (/^[a-zA-Z0-9+.-]+:[^\s:]/.test(maybeURI)) {
try {
return new URL(maybeURI).href
} catch (e) {
if (e.name !== "TypeError") throw e
}
2017-11-09 07:38:24 +00:00
}
2017-11-15 00:55:51 +02:00
// Else if search keyword:
try {
const args = maybeURI.split(" ")
return searchURL(args[0], args.slice(1).join(" ")).href
} catch (e) {
if (e.name !== "TypeError") throw e
}
// Else if it's a domain or something
try {
const url = new URL("http://" + maybeURI)
// Ignore unlikely domains
if (url.hostname.includes(".") || url.port || url.password) {
return url.href
}
} catch (e) {
if (e.name !== "TypeError") throw e
}
// Else search $searchengine
return searchURL("search", maybeURI).href
}
2017-11-03 19:10:12 +00:00
/** @hidden */
//#background_helper
function tabSetActive(id: number) {
browser.tabs.update(id, { active: true })
}
// }}}
// {{{ INTERNAL/DEBUG
/**
* Set the logging level for a given logging module.
*
* @param logModule the logging module to set the level on
* @param level the level to log at: in increasing verbosity, one of
* "never", "error", "warning", "info", "debug"
*/
//#background
export function loggingsetlevel(logModule: string, level: string) {
const map = {
never: Logging.LEVEL.NEVER,
error: Logging.LEVEL.ERROR,
warning: Logging.LEVEL.WARNING,
info: Logging.LEVEL.INFO,
debug: Logging.LEVEL.DEBUG,
}
let newLevel = map[level.toLowerCase()]
if (newLevel !== undefined) {
config.set("logging", logModule, newLevel)
} else {
throw "Bad log level!"
}
}
// }}}
2017-11-22 18:05:54 +00:00
// {{{ PAGE CONTEXT
2017-11-09 21:01:57 +00:00
/** Blur (unfocus) the active element */
//#content
export function unfocus() {
;(document.activeElement as HTMLInputElement).blur()
state.mode = "normal"
2017-11-09 21:01:57 +00:00
}
//#content
export function scrollpx(a: number, b: number) {
let top = document.body.getClientRects()[0].top
window.scrollBy(a, b)
if (top == document.body.getClientRects()[0].top) recursiveScroll(a, b, [document.body])
}
/** If two numbers are given, treat as x and y values to give to window.scrollTo
If one number is given, scroll to that percentage along a chosen axis,
defaulting to the y-axis
*/
//#content
export function scrollto(a: number, b: number | "x" | "y" = "y") {
a = Number(a)
let elem = window.document.scrollingElement || window.document.body
let percentage = a.clamp(0, 100)
if (b === "y") {
let top = elem.getClientRects()[0].top
window.scrollTo(window.scrollX, percentage * elem.scrollHeight / 100)
if (top == elem.getClientRects()[0].top && (percentage == 0 || percentage == 100)) {
// scrollTo failed, if the user wants to go to the top/bottom of
// the page try recursiveScroll instead
recursiveScroll(window.scrollX, 1073741824 * (percentage == 0 ? -1 : 1), [window.document.body])
}
} else if (b === "x") {
let left = elem.getClientRects()[0].left
window.scrollTo(percentage * elem.scrollWidth / 100, window.scrollY)
if (left == elem.getClientRects()[0].left && (percentage == 0 || percentage == 100)) {
recursiveScroll(1073741824 * (percentage == 0 ? -1 : 1), window.scrollX, [window.document.body])
}
} else {
window.scrollTo(a, Number(b)) // a,b numbers
}
}
/** Tries to find a node which can be scrolled either x pixels to the right or
* y pixels down among the Elements in {nodes} and children of these Elements.
*
* This function used to be recursive but isn't anymore due to various
* attempts at optimizing the function in order to reduce GC pressure.
*/
//#content_helper
function recursiveScroll(x: number, y: number, nodes: Element[]) {
let index = 0
do {
let node = nodes[index++] as any
// Save the node's position
let top = node.scrollTop
let left = node.scrollLeft
node.scrollBy(x, y)
// if the node moved, stop
if (top != node.scrollTop || left != node.scrollLeft) return
// Otherwise, add its children to the nodes that could be scrolled
nodes = nodes.concat(Array.from(node.children))
if (node.contentDocument) nodes.push(node.contentDocument.body)
} while (index < nodes.length)
}
//#content
export function scrollline(n = 1) {
let top = document.body.getClientRects()[0].top
window.scrollByLines(n)
if (top == document.body.getClientRects()[0].top) {
const cssHeight = window.getComputedStyle(document.body).getPropertyValue("line-height")
// Remove the "px" at the end
const lineHeight = parseInt(cssHeight.substr(0, cssHeight.length - 2))
// lineHeight probably can't be NaN but let's make sure
if (lineHeight) recursiveScroll(0, lineHeight * n, [window.document.body])
}
}
//#content
export function scrollpage(n = 1) {
scrollpx(0, window.innerHeight * n)
}
2018-01-28 21:18:29 +00:00
//#background_helper
import * as finding from "./finding_background"
2018-01-28 21:18:29 +00:00
/** Start find mode. Work in progress.
*
* @param direction - the direction to search in: 1 is forwards, -1 is backwards.
*
*/
2018-01-28 21:18:29 +00:00
//#background
export function find(direction?: number) {
if (direction === undefined) direction = 1
finding.findPage(direction)
}
/** Highlight the next occurence of the previously searched for word.
*
* @param number - number of words to advance down the page (use 1 for next word, -1 for previous)
*
*/
//#background
export function findnext(n: number) {
finding.findPageNavigate(n)
}
2017-11-03 19:10:12 +00:00
/** @hidden */
//#content_helper
function history(n: number) {
window.history.go(n)
}
/** Navigate forward one page in history. */
//#content
export function forward(n = 1) {
history(n)
}
/** Navigate back one page in history. */
//#content
export function back(n = 1) {
history(n * -1)
}
/** Reload the next n tabs, starting with activeTab, possibly bypassingCache */
//#background
export async function reload(n = 1, hard = false) {
let tabstoreload = await getnexttabs(await activeTabId(), n)
let reloadProperties = { bypassCache: hard }
tabstoreload.map(n => browser.tabs.reload(n, reloadProperties))
}
/** Reloads all tabs, bypassing the cache if hard is set to true */
//#background
export async function reloadall(hard = false) {
let tabs = await browser.tabs.query({ currentWindow: true })
let reloadprops = { bypassCache: hard }
tabs.map(tab => browser.tabs.reload(tab.id, reloadprops))
}
/** Reload the next n tabs, starting with activeTab. bypass cache for all */
//#background
export async function reloadhard(n = 1) {
reload(n, true)
}
// I went through the whole list https://developer.mozilla.org/en-US/Firefox/The_about_protocol
// about:blank is even more special
/** @hidden */
export const ABOUT_WHITELIST = ["about:home", "about:license", "about:logo", "about:rights"]
/** Open a new page in the current tab.
2018-04-27 21:43:58 +01:00
*
* @param urlarr
* - if first word looks like it has a schema, treat as a URI
* - else if the first word contains a dot, treat as a domain name
* - else if the first word is a key of [[SEARCH_URLS]], treat all following terms as search parameters for that provider
* - else treat as search parameters for google
*
2018-04-27 21:43:58 +01:00
* Related settings:
* "searchengine": "google" or any of [[SEARCH_URLS]]
* "historyresults": the n-most-recent results to ask Firefox for before they are sorted by frequency. Reduce this number if you find your results are bad.
2018-04-27 21:43:58 +01:00
* Can only open about:* or file:* URLs if you have the native messenger installed, and on OSX you must set `browser` to something that will open Firefox from a terminal pass it commmand line options.
*
*/
//#content
export async function open(...urlarr: string[]) {
2017-11-09 15:30:09 +00:00
let url = urlarr.join(" ")
// Setting window.location to about:blank results in a page we can't access, tabs.update works.
2018-04-26 09:10:25 +01:00
if (["about:blank"].includes(url)) {
url = url || undefined
browserBg.tabs.update(await activeTabId(), { url })
// Open URLs that firefox won't let us by running `firefox <URL>` on the command line
} else if (!ABOUT_WHITELIST.includes(url) && url.match(/^(about|file):.*/)) {
Messaging.message("commandline_background", "recvExStr", ["nativeopen " + url])
2018-04-26 09:10:25 +01:00
} else if (url !== "") {
window.location.href = forceURI(url)
}
}
/** @hidden */
//#content_helper
let sourceElement = undefined
/** @hidden */
//#content_helper
function removeSource() {
if (sourceElement) {
sourceElement.remove()
sourceElement = undefined
}
}
/** Display the (HTML) source of the current page.
Behaviour can be changed by the 'viewsource' setting.
If the 'viewsource' setting is set to 'default' rather than 'tridactyl',
the url the source of which should be displayed can be given as argument.
Otherwise, the source of the current document will be displayed.
*/
//#content
export function viewsource(url = "") {
if (url === "") url = window.location.href
if (config.get("viewsource") === "default") {
window.location.href = "view-source:" + url
return
}
if (!sourceElement) {
sourceElement = executeWithoutCommandLine(() => {
let pre = document.createElement("pre")
pre.id = "TridactylViewsourceElement"
pre.className = "cleanslate " + config.get("theme")
pre.innerText = document.documentElement.innerHTML
document.documentElement.appendChild(pre)
window.addEventListener("popstate", removeSource)
return pre
})
} else {
sourceElement.parentNode.removeChild(sourceElement)
sourceElement = undefined
window.removeEventListener("popstate", removeSource)
}
}
/** Go to your homepage(s)
@param all
- if "true", opens all homepages in new tabs
- if "false" or not given, opens the last homepage in the current tab
*/
//#background
export function home(all: "false" | "true" = "false") {
let homepages = config.get("homepages")
if (homepages.length > 0) {
if (all === "false") open(homepages[homepages.length - 1])
else {
homepages.map(t => tabopen(t))
}
}
}
/** Show this page.
`:help <excmd>` jumps to the entry for that command.
e.g. `:help bind`
*/
//#background
export async function help(excmd?: string) {
const docpage = browser.extension.getURL("static/docs/modules/_excmds_.html")
2018-05-01 14:02:53 +01:00
if (excmd === undefined) excmd = ""
if ((await activeTab()).url.startsWith(docpage)) {
open(docpage + "#" + excmd)
} else {
tabopen(docpage + "#" + excmd)
}
}
/** Start the tutorial
* @param newtab - whether to start the tutorial in a newtab. Defaults to current tab.
*/
//#background
export async function tutor(newtab?: string) {
const tutor = browser.extension.getURL("static/clippy/tutor.html")
if (newtab) tabopen(tutor)
else open(tutor)
}
2017-11-03 19:10:12 +00:00
/** @hidden */
// Find clickable next-page/previous-page links whose text matches the supplied pattern,
// and return the last such link.
//
2018-02-18 18:21:59 +00:00
// If no matching link is found, return undefined.
//
// We return the last link that matches because next/prev buttons tend to be at the end of the page
// whereas lots of blogs have "VIEW MORE" etc. plastered all over their pages.
2018-02-18 18:21:59 +00:00
//#content_helper
function findRelLink(pattern: RegExp): HTMLAnchorElement | null {
2018-02-18 18:21:59 +00:00
// querySelectorAll returns a "non-live NodeList" which is just a shit array without working reverse() or find() calls, so convert it.
const links = Array.from(<NodeListOf<HTMLAnchorElement>>document.querySelectorAll("a[href]"))
2018-02-18 18:21:59 +00:00
// Find the last link that matches the test
return links.reverse().find(link => pattern.test(link.innerText))
2018-02-18 18:21:59 +00:00
// Note:
// `innerText` gives better (i.e. less surprising) results than `textContent`
// at the expense of being much slower, but that shouldn't be an issue here
// as it's a one-off operation that's only performed when we're leaving a page
}
/** @hidden */
// Return the last element in the document matching the supplied selector,
// or null if there are no matches.
function selectLast(selector: string): HTMLElement | null {
const nodes = <NodeListOf<HTMLElement>>document.querySelectorAll(selector)
return nodes.length ? nodes[nodes.length - 1] : null
}
/** Find a likely next/previous link and follow it
2018-02-18 18:23:21 +00:00
If a link or anchor element with rel=rel exists, use that, otherwise fall back to:
2018-03-14 21:34:30 +08:00
1) find the last anchor on the page with innerText matching the appropriate `followpagepattern`.
2) call [[urlincrement]] with 1 or -1
2018-02-18 18:23:21 +00:00
If you want to support e.g. French:
```
set followpagepatterns.next ^(next|newer|prochain)\b|»|>>
set followpagepatterns.prev ^(prev(ious)?|older|précédent)\b|»|>>
```
@param rel the relation of the target page to the current page: "next" or "prev"
*/
//#content
export function followpage(rel: "next" | "prev" = "next") {
const link = <HTMLLinkElement>selectLast(`link[rel~=${rel}][href]`)
if (link) {
window.location.href = link.href
return
}
const anchor = <HTMLAnchorElement>selectLast(`a[rel~=${rel}][href]`) || findRelLink(new RegExp(config.get("followpagepatterns", rel), "i"))
if (anchor) {
2018-02-18 18:23:21 +00:00
DOM.mouseEvent(anchor, "click")
} else {
urlincrement(rel === "next" ? 1 : -1)
}
}
2017-11-15 12:40:26 +00:00
/** Increment the current tab URL
*
* @param count the increment step, can be positive or negative
*/
//#content
export function urlincrement(count = 1) {
let newUrl = UrlUtil.incrementUrl(window.location.href, count)
if (newUrl !== null) {
window.location.href = newUrl
}
}
/** Go to the root domain of the current URL
*/
//#content
export function urlroot() {
let rootUrl = UrlUtil.getUrlRoot(window.location)
if (rootUrl !== null) {
window.location.href = rootUrl.href
}
}
/** Go to the parent URL of the current tab's URL
*/
//#content
export function urlparent(count = 1) {
let parentUrl = UrlUtil.getUrlParent(window.location, count)
if (parentUrl !== null) {
window.location.href = parentUrl.href
}
}
/**
* Open a URL made by modifying the current URL
*
* There are several modes:
*
* * Text replace mode: `urlmodify -t <old> <new>`
*
* Replaces the first instance of the text `old` with `new`.
* * `http://example.com` -> (`-t exa peta`) -> `http://petample.com`
*
* * Regex replacment mode: `urlmodify -r <regexp> <new> [flags]`
*
* Replaces the first match of the `regexp` with `new`. You can use
* flags `i` and `g` to match case-insensitively and to match
* all instances respectively
* * `http://example.com` -> (`-r [ea] X g`) -> `http://XxXmplX.com`
*
* * Query replace mode: `urlmodify -q <query> <new_val>`
*
* Replace the value of a query with a new one:
* * `http://e.com?id=foo` -> (`-q id bar`) -> `http://e.com?id=bar
*
* * Query delete mode: `urlmodify -Q <query>`
*
* Deletes the given query (and the value if any):
* * `http://e.com?id=foo&page=1` -> (`-Q id`) -> `http://e.com?page=1`
*
* * Graft mode: `urlmodify -g <graft_point> <new_path_tail>`
*
* "Grafts" a new tail on the URL path, possibly removing some of the old
* tail. Graft point indicates where the old URL is truncated before adding
* the new path.
*
* * `graft_point` >= 0 counts path levels, starting from the left
* (beginning). 0 will append from the "root", and no existing path will
* remain, 1 will keep one path level, and so on.
* * `graft_point` < 0 counts from the right (i.e. the end of the current
* path). -1 will append to the existing path, -2 will remove the last path
* level, and so on.
*
* ```text
* http://website.com/this/is/the/path/component
* Graft point: ^ ^ ^ ^ ^ ^
* From left: 0 1 2 3 4 5
* From right: -6 -5 -4 -3 -2 -1
* ```
*
* Examples:
*
* * `http://e.com/issues/42` -> (`-g 0 foo`) -> `http://e.com/foo`
* * `http://e.com/issues/42` -> (`-g 1 foo`) -> `http://e.com/issues/foo`
* * `http://e.com/issues/42` -> (`-g -1 foo`) -> `http://e.com/issues/42/foo`
* * `http://e.com/issues/42` -> (`-g -2 foo`) -> `http://e.com/issues/foo`
*
* @param mode The replace mode:
* * -t text replace
* * -r regexp replace
* * -q replace the value of the given query
* * -Q delete the given query
* * -g graft a new path onto URL or parent path of it
* @param replacement the replacement arguments (depends on mode):
* * -t <old> <new>
* * -r <regexp> <new> [flags]
* * -q <query> <new_val>
* * -Q <query>
* * -g <graftPoint> <newPathTail>
*/
//#content
export function urlmodify(mode: "-t" | "-r" | "-q" | "-Q" | "-g", ...args: string[]) {
let oldUrl = new URL(window.location.href)
let newUrl = undefined
switch (mode) {
case "-t":
if (args.length !== 2) {
throw new Error("Text replacement needs 2 arguments:" + "<old> <new>")
}
newUrl = oldUrl.href.replace(args[0], args[1])
break
case "-r":
if (args.length < 2 || args.length > 3) {
throw new Error("RegExp replacement takes 2 or 3 arguments: " + "<regexp> <new> [flags]")
}
if (args[2] && args[2].search(/^[gi]+$/) === -1) {
throw new Error("RegExp replacement flags can only include 'g', 'i'" + ", Got '" + args[2] + "'")
}
let regexp = new RegExp(args[0], args[2])
newUrl = oldUrl.href.replace(regexp, args[1])
break
case "-q":
if (args.length !== 2) {
throw new Error("Query replacement needs 2 arguments:" + "<query> <new_val>")
}
newUrl = UrlUtil.replaceQueryValue(oldUrl, args[0], args[1])
break
case "-Q":
if (args.length !== 1) {
throw new Error("Query deletion needs 1 argument:" + "<query>")
}
newUrl = UrlUtil.deleteQuery(oldUrl, args[0])
break
case "-g":
if (args.length !== 2) {
throw new Error("URL path grafting needs 2 arguments:" + "<graft point> <new path tail>")
}
newUrl = UrlUtil.graftUrlPath(oldUrl, args[1], Number(args[0]))
break
}
if (newUrl && newUrl !== oldUrl) {
window.location.href = newUrl
}
}
/** Returns the url of links that have a matching rel.
Don't bind to this: it's an internal function.
@hidden
*/
//#content
export function geturlsforlinks(reltype = "rel", rel: string) {
let elems = document.querySelectorAll("link[" + reltype + "='" + rel + "']") as NodeListOf<HTMLLinkElement>
if (elems) return Array.prototype.map.call(elems, x => x.href)
return []
}
2017-11-15 12:40:26 +00:00
//#background
export async function zoom(level = 0, rel = "false") {
2017-11-15 12:40:26 +00:00
level = level > 3 ? level / 100 : level
if (rel == "true") level += await browser.tabs.getZoom()
2017-11-15 12:40:26 +00:00
browser.tabs.setZoom(level)
}
/** Opens the current page in Firefox's reader mode.
* You currently cannot use Tridactyl while in reader mode.
*/
//#background
export async function reader() {
if (await l(firefoxVersionAtLeast(58))) {
let aTab = await activeTab()
if (aTab.isArticle) {
browser.tabs.toggleReaderMode()
} // else {
// // once a statusbar exists an error can be displayed there
// }
}
}
//@hidden
//#content_helper
loadaucmds()
/** @hidden */
//#content
export async function loadaucmds() {
// for some reason, this never changes from the default, even when there is user config (e.g. set via `aucmd bbc.co.uk mode ignore`)
let aucmds = await config.getAsync("autocmds", "DocStart")
const ausites = Object.keys(aucmds)
// yes, this is lazy
const aukey = ausites.find(e => window.document.location.href.includes(e))
if (aukey !== undefined) {
Messaging.message("commandline_background", "recvExStr", [aucmds[aukey]])
}
}
/** The kinds of input elements that we want to be included in the "focusinput"
* command (gi)
* @hidden
*/
export const INPUTTAGS_selectors = `
input:not([disabled]):not([readonly]):-moz-any(
:not([type]),
[type='text'],
[type='search'],
[type='password'],
[type='datetime'],
[type='datetime-local'],
[type='date'],
[type='month'],
[type='time'],
[type='week'],
[type='number'],
[type='range'],
[type='email'],
[type='url'],
[type='tel'],
[type='color']
),
textarea:not([disabled]):not([readonly]),
object,
[role='application']
`
/** Password field selectors
* @hidden
*/
const INPUTPASSWORD_selectors = `
input[type='password']
`
/** Focus the last used input on the page
*
* @param nth focus the nth input on the page, or "special" inputs:
* "-l": last focussed input
* "-n": input after last focussed one
* "-N": input before last focussed one
* "-p": first password field
* "-b": biggest input field
*/
//#content
export function focusinput(nth: number | string) {
let inputToFocus: HTMLElement = null
// set to false to avoid falling back on the first available input
// if a special finder fails
let fallbackToNumeric = true
// nth = "-l" -> use the last used input for this page
if (nth === "-l") {
// try to recover the last used input stored as a
// DOM node, which should be exactly the one used before (or null)
if (DOM.getLastUsedInput()) {
inputToFocus = DOM.getLastUsedInput()
} else {
// Pick the first input in the DOM.
inputToFocus = DOM.getElemsBySelector(INPUTTAGS_selectors, [DOM.isSubstantial])[0] as HTMLElement
// We could try to save the last used element on page exit, but
// that seems like a lot of faff for little gain.
}
} else if (nth === "-n" || nth === "-N") {
// attempt to find next/previous input
let inputs = DOM.getElemsBySelector(INPUTTAGS_selectors, [DOM.isSubstantial]) as HTMLElement[]
if (inputs.length) {
let index = inputs.indexOf(DOM.getLastUsedInput())
if (DOM.getLastUsedInput()) {
if (nth === "-n") {
index++
} else {
index--
}
index = index.mod(inputs.length)
} else {
index = 0
}
inputToFocus = inputs[index]
}
} else if (nth === "-p") {
// attempt to find a password input
fallbackToNumeric = false
let inputs = DOM.getElemsBySelector(INPUTPASSWORD_selectors, [DOM.isSubstantial])
if (inputs.length) {
inputToFocus = <HTMLElement>inputs[0]
}
} else if (nth === "-b") {
let inputs = DOM.getElemsBySelector(INPUTTAGS_selectors, [DOM.isSubstantial]) as HTMLElement[]
inputToFocus = inputs.sort(DOM.compareElementArea).slice(-1)[0]
}
// either a number (not special) or we failed to find a special input when
// asked and falling back is acceptable
if ((!inputToFocus || !document.contains(inputToFocus)) && fallbackToNumeric) {
let index = isNaN(<number>nth) ? 0 : <number>nth
inputToFocus = DOM.getNthElement(INPUTTAGS_selectors, index, [DOM.isSubstantial])
}
if (inputToFocus) {
DOM.focus(inputToFocus)
if (config.get("gimode") === "nextinput" && state.mode !== "input") {
state.mode = "input"
}
}
}
/**
* Focus the tab which contains the last focussed input element. If you're lucky, it will focus the right input, too.
*
* Currently just goes to the last focussed input; being able to jump forwards and backwards is planned.
*/
//#background
export async function changelistjump(n?: number) {
let tail = state.prevInputs[state.prevInputs.length - 1]
let jumppos = tail.jumppos ? tail.jumppos : state.prevInputs.length - 1
const input = state.prevInputs[jumppos]
await browser.tabs.update(input.tab, { active: true })
const id = input.inputId
// Not all elements have an ID, so this will do for now.
if (id) focusbyid(input.inputId)
else focusinput("-l")
// Really want to bin the input we just focussed ^ and edit the real last input to tell us where to jump to next.
// It doesn't work in practice as the focus events get added after we try to delete them.
// Even editing focusbyid/focusinput doesn't work to try to delete their own history doesn't work.
// I'm bored of working on it for now, though.
// Probable solution: add an event listener to state.prevInputs changing, delete the focussed element, then delete event listener.
//
// let arr = state.prevInputs
// arr.splice(-2,2)
// tail.jumppos = jumppos - 1
// arr = arr.concat(tail)
// state.prevInputs = arr
}
//#content
export function focusbyid(id: string) {
document.getElementById(id).focus()
}
// }}}
// {{{ TABS
/** Switch to the tab by index (position on tab bar), wrapping round.
2017-11-28 00:01:41 +00:00
@param index
1-based index of the tab to target. Wraps such that 0 = last tab, -1 =
penultimate tab, etc.
if undefined, return activeTabId()
*/
2017-11-27 17:27:17 +11:00
/** @hidden */
//#background_helper
async function tabIndexSetActive(index: number | string) {
2017-11-28 00:01:41 +00:00
tabSetActive(await idFromIndex(index))
}
2017-11-27 17:27:17 +11:00
/** Switch to the next tab, wrapping round.
If increment is specified, move that many tabs forwards.
*/
//#background
export async function tabnext(increment = 1) {
2017-11-28 00:01:41 +00:00
tabIndexSetActive((await activeTab()).index + increment + 1)
2017-11-27 17:27:17 +11:00
}
/** Switch to the next tab, wrapping round.
If an index is specified, go to the tab with that number (this mimics the
behaviour of `{count}gt` in vim, except that this command will accept a
count that is out of bounds (and will mod it so that it is within bounds as
per [[tabmove]], etc)).
*/
//#background
export async function tabnext_gt(index?: number) {
if (index === undefined) {
tabnext()
} else {
tabIndexSetActive(index)
}
}
2017-11-27 17:27:17 +11:00
/** Switch to the previous tab, wrapping round.
If increment is specified, move that many tabs backwards.
*/
//#background
export async function tabprev(increment = 1) {
2017-11-28 00:01:41 +00:00
tabIndexSetActive((await activeTab()).index - increment + 1)
2017-11-27 17:27:17 +11:00
}
/** Switch to the first tab. */
//#background
export async function tabfirst() {
2017-11-28 00:01:41 +00:00
tabIndexSetActive(1)
2017-11-27 17:27:17 +11:00
}
/** Switch to the last tab. */
//#background
2017-11-27 17:27:17 +11:00
export async function tablast() {
2017-11-28 00:01:41 +00:00
tabIndexSetActive(0)
}
/** Like [[open]], but in a new tab. If no address is given, it will open the newtab page, which can be set with `set newtab [url]`
Use the `-b` flag as the first argument to open the tab in the background.
Unlike Firefox's Ctrl-t shortcut, this opens tabs immediately after the
currently active tab rather than at the end of the tab list because that is
2018-04-15 19:08:42 +01:00
the authors' preference.
If you would rather the Firefox behaviour `set tabopenpos last`. This
preference also affects the clipboard, quickmarks, home, help, etc.
If you would rather the URL be opened as if you'd middle clicked it, `set
tabopenpos related`.
2018-04-15 19:08:42 +01:00
Hinting is controlled by `relatedopenpos`
*/
//#background
export async function tabopen(...addressarr: string[]) {
let active
if (addressarr[0] === "-b") {
addressarr.shift()
active = false
}
let url: string
let address = addressarr.join(" ")
if (!ABOUT_WHITELIST.includes(address) && address.match(/^(about|file):.*/)) {
nativeopen(address)
return
} else if (address != "") url = forceURI(address)
else url = forceURI(config.get("newtab"))
activeTabContainerId().then(containerId => {
if (containerId && config.get("tabopencontaineraware") === "true") openInNewTab(url, { active: active, cookieStoreId: containerId })
else openInNewTab(url, { active })
})
}
2017-11-28 00:01:41 +00:00
/** Resolve a tab index to the tab id of the corresponding tab in this window.
@param index
1-based index of the tab to target. Wraps such that 0 = last tab, -1 =
penultimate tab, etc.
2018-04-12 13:17:17 +01:00
also supports # for previous tab, % for current tab.
2017-11-28 00:01:41 +00:00
if undefined, return activeTabId()
@hidden
*/
//#background_helper
async function idFromIndex(index?: number | "%" | "#" | string): Promise<number> {
2018-04-12 13:17:17 +01:00
if (index === "#") {
// Support magic previous/current tab syntax everywhere
return (await getSortedWinTabs())[1].id
} else if (index !== undefined && index !== "%") {
2017-11-28 15:47:12 +00:00
// Wrap
2018-04-12 13:17:17 +01:00
index = Number(index)
index = (index - 1).mod((await l(browser.tabs.query({ currentWindow: true }))).length) + 1
2017-11-28 00:01:41 +00:00
// Return id of tab with that index.
return (await l(
browser.tabs.query({
currentWindow: true,
index: index - 1,
}),
))[0].id
2017-11-28 00:01:41 +00:00
} else {
return await activeTabId()
}
}
2017-11-29 00:36:53 +00:00
/** Close all other tabs in this window */
//#background
export async function tabonly() {
2017-11-29 00:36:53 +00:00
const tabs = await browser.tabs.query({
pinned: false,
active: false,
currentWindow: true,
})
2017-11-29 00:36:53 +00:00
const tabsIds = tabs.map(tab => tab.id)
browser.tabs.remove(tabsIds)
}
2017-11-28 00:01:41 +00:00
/** Duplicate a tab.
@param index
The 1-based index of the tab to target. index < 1 wraps. If omitted, this tab.
*/
//#background
2017-11-28 00:01:41 +00:00
export async function tabduplicate(index?: number) {
browser.tabs.duplicate(await idFromIndex(index))
}
2017-11-28 00:01:41 +00:00
/** Detach a tab, opening it in a new window.
@param index
The 1-based index of the tab to target. index < 1 wraps. If omitted, this tab.
*/
//#background
2017-11-28 00:01:41 +00:00
export async function tabdetach(index?: number) {
browser.windows.create({ tabId: await idFromIndex(index) })
}
/** Get list of tabs sorted by most recent use
@hidden
*/
2018-03-14 21:34:30 +08:00
//#background_helper
async function getSortedWinTabs(): Promise<browser.tabs.Tab[]> {
const tabs = await browser.tabs.query({ currentWindow: true })
tabs.sort((a, b) => (a.lastAccessed < b.lastAccessed ? 1 : -1))
2018-03-14 21:34:30 +08:00
return tabs
}
/** Toggle fullscreen state
*/
//#background
export async function fullscreen() {
// Could easily extend this to fullscreen / minimise any window but seems like that would be a tiny use-case.
const currwin = await browser.windows.getCurrent()
const wid = currwin.id
// This might have odd behaviour on non-tiling window managers, but no-one uses those, right?
const state = currwin.state == "fullscreen" ? "normal" : "fullscreen"
browser.windows.update(wid, { state })
}
2017-11-28 00:01:41 +00:00
/** Close a tab.
Known bug: autocompletion will make it impossible to close more than one tab at once if the list of numbers looks enough like an open tab's title or URL.
@param indexes
The 1-based indexes of the tabs to target. indexes < 1 wrap. If omitted, this tab.
*/
//#background
2017-11-28 00:01:41 +00:00
export async function tabclose(...indexes: string[]) {
if (indexes.length > 0) {
2018-03-14 21:34:30 +08:00
let ids: number[]
2018-04-12 13:17:17 +01:00
ids = await Promise.all(indexes.map(index => idFromIndex(index)))
2018-03-14 21:34:30 +08:00
browser.tabs.remove(ids)
} else {
2017-11-28 00:01:41 +00:00
// Close current tab
browser.tabs.remove(await activeTabId())
}
}
/** Close all tabs to the right of the current one
*
*/
//#background
export async function tabclosealltoright() {
const tabs = await browser.tabs.query({
pinned: false,
currentWindow: true,
})
const atab = await activeTab()
let ids = tabs.filter(tab => tab.index > atab.index).map(tab => tab.id)
browser.tabs.remove(ids)
}
/** Close all tabs to the left of the current one
*
*/
//#background
export async function tabclosealltoleft() {
const tabs = await browser.tabs.query({
pinned: false,
currentWindow: true,
})
const atab = await activeTab()
let ids = tabs.filter(tab => tab.index < atab.index).map(tab => tab.id)
browser.tabs.remove(ids)
}
/** restore most recently closed tab in this window unless the most recently closed item was a window */
//#background
export async function undo() {
const current_win_id: number = (await browser.windows.getCurrent()).id
const sessions = await browser.sessions.getRecentlyClosed()
// The first session object that's a window or a tab from this window. Or undefined if sessions is empty.
let closed = sessions.find(s => {
return "window" in s || (s.tab && s.tab.windowId == current_win_id)
})
if (closed) {
if (closed.tab) {
browser.sessions.restore(closed.tab.sessionId)
} else if (closed.window) {
browser.sessions.restore(closed.window.sessionId)
}
}
}
2017-11-28 00:01:41 +00:00
/** Move the current tab to be just in front of the index specified.
Known bug: This supports relative movement, but autocomple doesn't know
that yet and will override positive and negative indexes.
Put a space in front of tabmove if you want to disable completion and have
the relative indexes at the command line.
Binds are unaffected.
@param index
New index for the current tab.
1 is the first index. 0 is the last index. -1 is the penultimate, etc.
*/
//#background
2017-11-28 00:01:41 +00:00
export async function tabmove(index = "0") {
const aTab = await activeTab()
let newindex: number
if (index.startsWith("+") || index.startsWith("-")) {
newindex = Math.max(0, Number(index) + aTab.index)
} else newindex = Number(index) - 1
browser.tabs.move(aTab.id, { index: newindex })
}
/** Pin the current tab */
//#background
export async function pin() {
let aTab = await activeTab()
browser.tabs.update(aTab.id, { pinned: !aTab.pinned })
}
// }}}
// {{{ WINDOWS
/** Like [[tabopen]], but in a new window */
//#background
export async function winopen(...args: string[]) {
let address: string
const createData = {}
let firefoxArgs = "--new-window"
if (args[0] === "-private") {
createData["incognito"] = true
address = args.slice(1, args.length).join(" ")
firefoxArgs = "--private-window"
} else address = args.join(" ")
createData["url"] = address != "" ? forceURI(address) : forceURI(config.get("newtab"))
if (!ABOUT_WHITELIST.includes(address) && address.match(/^(about|file):.*/)) {
nativeopen(address, firefoxArgs)
return
}
browser.windows.create(createData)
}
//#background
export async function winclose() {
browser.windows.remove((await browser.windows.getCurrent()).id)
}
/** Close all windows */
// It's unclear if this will leave a session that can be restored.
// We might have to do it ourselves.
//#background
export async function qall() {
let windows = await browser.windows.getAll()
windows.map(window => browser.windows.remove(window.id))
}
/** Convenience shortcut for [[qall]]. */
//#background
export async function qa() {
qall()
}
// }}}
// {{{ MISC
/** Deprecated
* @hidden
*/
//#background
export function suppress(preventDefault?: boolean, stopPropagation?: boolean) {
mode("ignore")
}
//#background
export function version() {
fillcmdline_notrail("REPLACE_ME_WITH_THE_VERSION_USING_SED")
}
/** Example:
- `mode ignore` to ignore all keys.
*/
//#background
export function mode(mode: ModeName) {
// TODO: event emition on mode change.
2017-11-19 07:57:30 +00:00
if (mode === "hint") {
hint()
2018-01-28 21:18:29 +00:00
} else if (mode === "find") {
find()
} else {
state.mode = mode
}
}
/** @hidden */
//#background_helper
async function getnexttabs(tabid: number, n?: number) {
const curIndex: number = (await browser.tabs.get(tabid)).index
const tabs: browser.tabs.Tab[] = await browser.tabs.query({
currentWindow: true,
})
const indexFilter = ((tab: browser.tabs.Tab) => {
return curIndex <= tab.index && (n ? tab.index < curIndex + Number(n) : true)
}).bind(n)
return tabs.filter(indexFilter).map((tab: browser.tabs.Tab) => {
return tab.id
})
}
// Moderately slow; should load in results as they arrive, perhaps
// Todo: allow jumping to buffers once they are found
// Consider adding to buffers with incremental search
// maybe only if no other results in URL etc?
// Find out how to return context of each result
//#background
/* export async function findintabs(query: string) { */
/* const tabs = await browser.tabs.query({currentWindow: true}) */
/* console.log(query) */
/* const findintab = async tab => */
/* await browser.find.find(query, {tabId: tab.id}) */
/* let results = [] */
/* for (let tab of tabs) { */
/* let result = await findintab(tab) */
/* if (result.count > 0) { */
/* results.push({tab, result}) */
/* } */
/* } */
/* results.sort(r => r.result.count) */
/* console.log(results) */
/* return results */
/* } */
// }}}
// {{{ CMDLINE
//#background_helper
import * as controller from "./controller"
/** Repeats a `cmd` `n` times.
Falls back to the last executed command if `cmd` doesn't exist.
Executes the command once if `n` isn't defined either.
*/
//#background
export function repeat(n = 1, ...exstr: string[]) {
let cmd = state.last_ex_str
if (exstr.length > 0) cmd = exstr.join(" ")
2017-12-30 00:46:26 +00:00
logger.debug("repeating " + cmd + " " + n + " times")
for (let i = 0; i < n; i++) controller.acceptExCmd(cmd)
}
/**
2018-05-16 17:12:29 +01:00
* Split `cmds` on pipes (|) and treat each as its own command. Return values are cast to strings and passed to the appended to the arguments of the next ex command, e.g,
*
* `composite echo yes | fillcmdline` becomes `fillcmdline yes`. A more complicated example is the ex alias, `command current_url composite get_current_url | fillcmdline_notrail `, which is used in, e.g. `bind T current_url tabopen`.
*
* Workaround: this should clearly be in the parser, but we haven't come up with a good way to deal with |s in URLs, search terms, etc. yet.
*
* `cmds` are also split with semicolons (;) and don't pass things along to each other.
*
* The behaviour of combining ; and | in the same composite command is left as an exercise for the reader.
*/
//#background
export async function composite(...cmds: string[]) {
cmds = cmds.join(" ").split("|")
let val = ""
for (let c of cmds) {
let dmds = c.split(";")
if (dmds.length > 1) {
for (let d of dmds) {
await controller.acceptExCmd(d)
}
} else val = await controller.acceptExCmd(dmds[0] + val)
2018-05-16 17:31:33 +01:00
try {
if (val == undefined || val.includes("undefined")) val = ""
else val = " " + val
} catch (e) {
if (e instanceof TypeError) {
val = " " + val
} else throw e
}
}
}
//#background
export async function sleep(time_ms: number) {
await new Promise(resolve => setTimeout(resolve, time_ms))
}
/** @hidden */
2017-11-22 18:05:54 +00:00
//#background
function showcmdline() {
2017-11-22 18:05:54 +00:00
CommandLineBackground.show()
}
/** Set the current value of the commandline to string *with* a trailing space */
//#background
export function fillcmdline(...strarr: string[]) {
let str = strarr.join(" ")
showcmdline()
messageActiveTab("commandline_frame", "fillcmdline", [str])
}
/** Set the current value of the commandline to string *without* a trailing space */
2017-11-09 15:30:09 +00:00
//#background
export function fillcmdline_notrail(...strarr: string[]) {
let str = strarr.join(" ")
let trailspace = false
showcmdline()
messageActiveTab("commandline_frame", "fillcmdline", [str, trailspace])
}
2018-05-16 17:12:29 +01:00
/**
* Returns the current URL. For use with [[composite]].
*/
2017-11-09 15:30:09 +00:00
//#background
2018-05-16 17:12:29 +01:00
export async function get_current_url() {
return (await activeTab()).url
2017-11-09 15:30:09 +00:00
}
/** Use the system clipboard.
If `excmd == "open"`, call [[open]] with the contents of the clipboard. Similarly for [[tabopen]].
If `excmd == "yank"`, copy the current URL, or if given, the value of toYank, into the system clipboard.
2017-11-27 19:15:04 +00:00
If `excmd == "yankcanon"`, copy the canonical URL of the current page if it exists, otherwise copy the current URL.
If `excmd == "yankshort"`, copy the shortlink version of the current URL, and fall back to the canonical then actual URL. Known to work on https://yankshort.neocities.org/.
If `excmd == "yanktitle"`, copy the title of the open page.
If `excmd == "yankmd"`, copy the title and url of the open page formatted in Markdown for easy use on sites such as reddit.
Unfortunately, javascript can only give us the `clipboard` clipboard, not e.g. the X selection clipboard.
*/
2017-10-28 19:20:31 +08:00
//#background
export async function clipboard(excmd: "open" | "yank" | "yankshort" | "yankcanon" | "yanktitle" | "yankmd" | "tabopen" = "open", ...toYank: string[]) {
let content = toYank.join(" ")
let url = ""
let urls = []
2017-10-28 19:20:31 +08:00
switch (excmd) {
case "yankshort":
urls = await geturlsforlinks("rel", "shortlink")
if (urls.length == 0) {
urls = await geturlsforlinks("rev", "canonical")
}
if (urls.length > 0) {
messageActiveTab("commandline_frame", "setClipboard", [urls[0]])
break
}
case "yankcanon":
urls = await geturlsforlinks("rel", "canonical")
if (urls.length > 0) {
messageActiveTab("commandline_frame", "setClipboard", [urls[0]])
break
}
case "yank":
await messageActiveTab("commandline_content", "focus")
content = content == "" ? (await activeTab()).url : content
messageActiveTab("commandline_frame", "setClipboard", [content])
2017-10-28 19:20:31 +08:00
break
case "yanktitle":
messageActiveTab("commandline_frame", "setClipboard", [content])
break
case "yankmd":
content = "[" + (await activeTab()).title + "](" + (await activeTab()).url + ")"
messageActiveTab("commandline_frame", "setClipboard", [content])
2017-10-28 19:20:31 +08:00
break
case "open":
await messageActiveTab("commandline_content", "focus")
url = await messageActiveTab("commandline_frame", "getClipboard")
url && open(url)
break
case "tabopen":
await messageActiveTab("commandline_content", "focus")
url = await messageActiveTab("commandline_frame", "getClipboard")
url && tabopen(url)
2017-10-28 19:20:31 +08:00
break
default:
// todo: maybe we should have some common error and error handler
throw new Error(`[clipboard] unknown excmd: ${excmd}`)
2017-10-19 20:15:01 +01:00
}
2017-11-22 18:05:54 +00:00
CommandLineBackground.hide()
2017-10-19 20:15:01 +01:00
}
/** Change active tab.
2017-11-27 19:54:45 +00:00
@param index
Starts at 1. 0 refers to last tab, -1 to penultimate tab, etc.
"#" means the tab that was last accessed in this window
*/
//#background
export async function buffer(index: number | "#") {
2018-04-12 13:17:17 +01:00
tabIndexSetActive(index)
}
// }}}
// }}}
// {{{ SETTINGS
2018-01-28 15:09:12 +00:00
/**
* Similar to vim's `:command`. Maps one ex-mode command to another.
* If command already exists, this will override it, and any new commands
* added in a future release will be SILENTLY overridden. Aliases are
* expanded recursively.
2018-01-28 15:09:12 +00:00
*
* Examples:
* - `command t tabopen`
* - `command tn tabnext_gt`
* = `command hello t` This will expand recursively into 'hello'->'tabopen'
2018-01-28 15:09:12 +00:00
*
* Note that this is only for excmd->excmd mappings. To map a normal-mode
* command to an excommand, see [[bind]].
2018-01-28 15:09:12 +00:00
*
* See also:
* - [[comclear]]
*/
//#background
export function command(name: string, ...definition: string[]) {
2018-01-28 17:57:46 +00:00
// Test if alias creates an alias loop.
try {
2018-01-28 17:57:46 +00:00
const def = definition.join(" ")
// Set alias
config.set("exaliases", name, def)
aliases.expandExstr(name)
} catch (e) {
2018-01-28 17:57:46 +00:00
// Warn user about infinite loops
fillcmdline_notrail(e, " Alias unset.")
2018-01-28 17:57:46 +00:00
config.unset("exaliases", name)
}
}
2018-01-09 00:20:18 +08:00
/**
* Similar to vim's `comclear` command. Clears an excmd alias defined by
2018-01-28 15:09:12 +00:00
* `command`.
*
* For example: `comclear helloworld` will reverse any changes caused
2018-01-09 00:20:18 +08:00
* by `command helloworld xxx`
2018-01-28 15:09:12 +00:00
*
* See also:
* - [[command]]
2018-01-09 00:20:18 +08:00
*/
//#background
export function comclear(name: string) {
config.unset("exaliases", name)
}
/** Bind a sequence of keys to an excmd or view bound sequence.
This is an easier-to-implement bodge while we work on vim-style maps.
Examples:
- `bind G fillcmdline tabopen google`
2017-11-26 14:56:09 +00:00
- `bind D composite tabclose | buffer #`
- `bind j scrollline 20`
- `bind F hint -b`
You can view binds by omitting the command line:
- `bind j`
- `bind k`
You can bind to modifiers and special keys by enclosing them with angle brackets, for example `bind <C-\>z fullscreen`, `unbind <F1>` (a favourite of people who use TreeStyleTabs :) ), or `bind <Backspace> forward`.
2018-04-16 12:45:40 +01:00
Modifiers are truncated to a single character, so Ctrl -> C, Alt -> A, and Shift -> S. Shift is a bit special as it is only required if Shift does not change the key inputted, e.g. `<S-ArrowDown>` is OK, but `<S-a>` should just be `A`.
You can view all special key names here: https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key/Key_Values
Use [[composite]] if you want to execute multiple excmds. Use
[[fillcmdline]] to put a string in the cmdline and focus the cmdline
(otherwise the string is executed immediately).
See also:
- [[unbind]]
- [[reset]]
*/
//#background
export function bind(key: string, ...bindarr: string[]) {
if (bindarr.length) {
let exstring = bindarr.join(" ")
config.set("nmaps", key, exstring)
2018-02-19 01:23:21 +00:00
} else if (key.length) {
// Display the existing bind
fillcmdline_notrail("#", key, "=", config.get("nmaps", key))
}
}
/**
* Set a search engine keyword for use with *open or `set searchengine`
*
* @deprecated use `set searchurls.KEYWORD URL` instead
*
* @param keyword the keyword to use for this search (e.g. 'esa')
* @param url the URL to interpolate the query into. If %s is found in
* the URL, the query is inserted there, else it is appended.
* If the insertion point is in the "query string" of the URL,
* the query is percent-encoded, else it is verbatim.
**/
//#background
export function searchsetkeyword(keyword: string, url: string) {
config.set("searchurls", keyword, forceURI(url))
}
/** Set a key value pair in config.
Use to set any string values found [here](/static/docs/modules/_config_.html#defaults)
e.g.
set searchurls.google https://www.google.com/search?q=
set logging.messaging info
*/
//#background
export function set(key: string, ...values: string[]) {
if (!key || !values[0]) {
throw "Both key and value must be provided!"
}
const target = key.split(".")
// Special case conversions
// TODO: Should we do any special case shit here?
switch (target[0]) {
case "logging":
const map = {
never: Logging.LEVEL.NEVER,
error: Logging.LEVEL.ERROR,
warning: Logging.LEVEL.WARNING,
info: Logging.LEVEL.INFO,
debug: Logging.LEVEL.DEBUG,
}
let level = map[values[0].toLowerCase()]
if (level === undefined) throw "Bad log level!"
else config.set(...target, level)
return
}
const currentValue = config.get(...target)
if (Array.isArray(currentValue)) {
config.set(...target, values)
2018-03-02 17:26:40 +00:00
} else if (currentValue === undefined || typeof currentValue === "string") {
config.set(...target, values.join(" "))
} else {
throw "Unsupported setting type!"
}
}
/** Set autocmds to run when certain events happen.
@param event Curently, only 'TriStart' and 'DocStart' are supported.
@param url For DocStart: the URL on which the events will trigger (currently
just uses "contains").
For TriStart: A regular expression that matches the hostname of the computer
the autocmd should be run on. This requires the native messenger to be
installed, except for the ".*" regular expression which will always be
triggered, even without the native messenger.
@param excmd The excmd to run (use [[composite]] to run multiple commands)
*/
//#background
export function autocmd(event: string, url: string, ...excmd: string[]) {
// rudimentary run time type checking
// TODO: Decide on autocmd event names
if (!["DocStart", "TriStart"].includes(event)) throw event + " is not a supported event."
config.set("autocmds", event, url, excmd.join(" "))
}
/** Unbind a sequence of keys so that they do nothing at all.
See also:
- [[bind]]
- [[reset]]
*/
//#background
export async function unbind(key: string) {
2018-02-19 15:59:56 +00:00
config.set("nmaps", key, "")
}
/** Restores a sequence of keys to their default value.
See also:
- [[bind]]
- [[unbind]]
*/
//#background
export async function reset(key: string) {
config.unset("nmaps", key)
// Code for dealing with legacy binds
let nmaps = (await browser.storage.sync.get("nmaps"))["nmaps"]
nmaps = nmaps == undefined ? {} : nmaps
delete nmaps[key]
browser.storage.sync.set({ nmaps })
}
/** Deletes various privacy-related items.
The list of possible arguments can be found here:
https://developer.mozilla.org/en-US/Add-ons/WebExtensions/API/browsingData/DataTypeSet
Additional, tridactyl-specific arguments are:
- commandline: Removes the in-memory commandline history.
2017-12-02 13:27:02 +00:00
- tridactyllocal: Removes all tridactyl storage local to this machine. Use it with
commandline if you want to delete your commandline history.
2017-12-02 13:27:02 +00:00
- tridactylsync: Removes all tridactyl storage associated with your Firefox Account (i.e, all user configuration, by default).
These arguments aren't affected by the timespan parameter.
Timespan parameter:
-t [0-9]+(m|h|d|w)
Examples:
2018-04-15 14:11:00 +01:00
- `sanitise all` -> Deletes everything
- `sanitise history` -> Deletes all history
- `sanitise commandline tridactyllocal tridactylsync` -> Deletes every bit of data Tridactyl holds
- `sanitise cookies -t 3d` -> Deletes cookies that were set during the last three days.
*/
//#background
export async function sanitise(...args: string[]) {
let flagpos = args.indexOf("-t")
let since = {}
// If the -t flag has been given and there is an arg after it
if (flagpos > -1) {
if (flagpos < args.length - 1) {
let match = args[flagpos + 1].match("^([0-9])+(m|h|d|w)$")
// If the arg of the flag matches Pentadactyl's sanitisetimespan format
if (match !== null && match.length == 3) {
// Compute the timespan in milliseconds and get a Date object
let millis = parseInt(match[1]) * 1000
switch (match[2]) {
case "w":
millis *= 7
case "d":
millis *= 24
case "h":
millis *= 60
case "m":
millis *= 60
}
since = { since: new Date().getTime() - millis }
} else {
throw new Error(":sanitise error: expected time format: ^([0-9])+(m|h|d|w)$, given format:" + args[flagpos + 1])
}
} else {
throw new Error(":sanitise error: -t given but no following arguments")
}
}
let dts = {
cache: false,
cookies: false,
downloads: false,
formData: false,
history: false,
localStorage: false,
passwords: false,
serviceWorkers: false,
// These are Tridactyl-specific
commandline: false,
tridactyllocal: false,
tridactylsync: false,
/* When this one is activated, a lot of errors seem to pop up in
the console. Keeping it disabled is probably a good idea.
"pluginData": false,
*/
/* These 3 are supported by Chrome and Opera but not by Firefox yet.
"fileSystems": false,
"indexedDB": false,
"serverBoundCertificates": false,
*/
}
if (args.find(x => x == "all") !== undefined) {
for (let attr in dts) dts[attr] = true
} else {
// We bother checking if dts[x] is false because
// browser.browsingData.remove() is very strict on the format of the
// object it expects
args.map(x => {
if (dts[x] === false) dts[x] = true
})
}
// Tridactyl-specific items
if (dts.commandline === true) state.cmdHistory = []
delete dts.commandline
if (dts.tridactyllocal === true) browser.storage.local.clear()
delete dts.tridactyllocal
if (dts.tridactylsync === true) browser.storage.sync.clear()
delete dts.tridactylsync
// Global items
browser.browsingData.remove(since, dts)
}
/** Bind a quickmark for the current URL or space-separated list of URLs to a key on the keyboard.
2017-11-20 23:32:24 +00:00
Afterwards use go[key], gn[key], or gw[key] to [[open]], [[tabopen]], or
[[winopen]] the URL respectively.
2017-11-20 23:32:24 +00:00
*/
2017-11-19 13:45:18 +01:00
//#background
2017-12-08 11:56:21 +00:00
export async function quickmark(key: string, ...addressarr: string[]) {
2017-11-19 13:45:18 +01:00
// ensure we're binding to a single key
if (key.length !== 1) {
return
}
2017-12-08 11:56:21 +00:00
if (addressarr.length <= 1) {
let address = addressarr.length == 0 ? (await activeTab()).url : addressarr[0]
// Have to await these or they race!
await bind("gn" + key, "tabopen", address)
await bind("go" + key, "open", address)
await bind("gw" + key, "winopen", address)
} else {
let compstring = addressarr.join(" | tabopen ")
let compstringwin = addressarr.join(" | winopen ")
await bind("gn" + key, "composite tabopen", compstring)
await bind("go" + key, "composite open", compstring)
await bind("gw" + key, "composite winopen", compstringwin)
}
2017-11-19 13:45:18 +01:00
}
/** Puts the contents of config value with keys `keys` into the commandline and the background page console
It's a bit rubbish, but we don't have a good way to provide feedback to the commandline yet.
You can view the log entry in the browser console (Ctrl-Shift-j).
For example, you might try `get nmaps` to see all of your current binds.
*/
//#background
export function get(...keys: string[]) {
const target = keys.join(".").split(".")
const value = config.get(...target)
console.log(value)
if (typeof value === "object") {
fillcmdline_notrail(`# ${keys.join(".")} = ${JSON.stringify(value)}`)
} else {
fillcmdline_notrail(`# ${keys.join(".")} = ${value}`)
}
}
2018-04-15 18:00:14 +01:00
/** Opens the current configuration in Firefox's native JSON viewer in the current tab.
*
* NB: Tridactyl cannot run on this page!
*
* @param key - The specific key you wish to view (e.g, nmaps).
*
*/
//#content
export function viewconfig(key?: string) {
// # and white space don't agree with FF's JSON viewer.
// Probably other symbols too.
if (!key)
window.location.href =
"data:application/json," +
JSON.stringify(config.get())
.replace(/#/g, "%23")
.replace(/ /g, "%20")
// I think JS casts key to the string "undefined" if it isn't given.
else
window.location.href =
"data:application/json," +
JSON.stringify(config.get(key))
.replace(/#/g, "%23")
.replace(/ /g, "%20")
// base 64 encoding is a cleverer way of doing this, but it doesn't seem to work for the whole config.
//window.location.href = "data:application/json;base64," + btoa(JSON.stringify(config.get()))
}
//#background
export function unset(...keys: string[]) {
const target = keys.join(".").split(".")
if (target === undefined) throw "You must define a target!"
config.unset(...target)
}
// not required as we automatically save all config
////#background
//export function saveconfig(){
// config.save(config.get("storageloc"))
//}
////#background
//export function mktridactylrc(){
// saveconfig()
//}
// }}}
// {{{ HINTMODE
//#background_helper
import * as hinting from "./hinting_background"
/** Hint a page.
2017-11-28 02:12:07 +00:00
@param option
- -b open in background
- -y copy (yank) link's target to clipboard
- -p copy an element's text to the clipboard
- -r read an element's text with text-to-speech
2017-11-28 02:12:07 +00:00
- -i view an image
- -I view an image in a new tab
- -k delete an element from the page
2017-12-24 11:35:39 +00:00
- -s save (download) the linked resource
- -S save the linked image
- -a save-as the linked resource
- -A save-as the linked image
2017-11-28 02:12:07 +00:00
- -; focus an element
- -# yank an element's anchor URL to clipboard
- -c [selector] hint links that match the css selector
- `bind ;c hint -c [class*="expand"],[class="togg"]` works particularly well on reddit and HN
- -w open in new window
-wp open in new private window
- `-W excmd...` append hint href to excmd and execute, e.g, `hint -W exclaim mpv` to open YouTube videos
2017-12-24 11:35:39 +00:00
Excepting the custom selector mode and background hint mode, each of these
hint modes is available by default as `;<option character>`, so e.g. `;y`
to yank a link's target.
To open a hint in the background, the default bind is `F`.
Related settings:
"hintchars": "hjklasdfgyuiopqwertnmzxcvb"
"hintfiltermode": "simple" | "vimperator" | "vimperator-reflow"
"relatedopenpos": "related" | "next" | "last"
2017-11-28 02:12:07 +00:00
*/
//#background
export function hint(option?: string, selectors = "", ...rest: string[]) {
if (option === "-b") hinting.hintPageOpenInBackground()
else if (option === "-y") hinting.hintPageYank()
2017-11-22 20:47:35 +00:00
else if (option === "-p") hinting.hintPageTextYank()
else if (option === "-i") hinting.hintImage(false)
else if (option === "-I") hinting.hintImage(true)
else if (option === "-k") hinting.hintKill()
else if (option === "-s") hinting.hintSave("link", false)
else if (option === "-S") hinting.hintSave("img", false)
else if (option === "-a") hinting.hintSave("link", true)
else if (option === "-A") hinting.hintSave("img", true)
else if (option === "-;") hinting.hintFocus()
else if (option === "-#") hinting.hintPageAnchorYank()
else if (option === "-c") hinting.hintPageSimple(selectors)
else if (option === "-r") hinting.hintRead()
else if (option === "-w") hinting.hintPageWindow()
else if (option === "-W") hinting.hintPageExStr([selectors, ...rest].join(" "))
else if (option === "-wp") hinting.hintPageWindowPrivate()
2017-11-18 01:51:46 +00:00
else hinting.hintPageSimple()
}
// }}}
2017-11-19 13:45:18 +01:00
// {{{ GOBBLE mode
//#background_helper
import * as gobbleMode from "./parsers/gobblemode"
2017-11-19 13:45:18 +01:00
2017-11-20 23:32:24 +00:00
/** Initialize gobble mode.
It will read `nChars` input keys, append them to `endCmd` and execute that
string.
*/
2017-11-19 13:45:18 +01:00
//#background
export async function gobble(nChars: number, endCmd: string) {
gobbleMode.init(nChars, endCmd)
}
// }}}
// {{{TEXT TO SPEECH
import * as TTS from "./text_to_speech"
/**
* Read text content of elements matching the given selector
*
* @param selector the selector to match elements
*/
//#content_helper
function tssReadFromCss(selector: string): void {
let elems = DOM.getElemsBySelector(selector, [])
elems.forEach(e => {
TTS.readText(e.textContent)
})
}
/**
* Read the given text using the browser's text to speech functionality and
* the settings currently set
*
* @param mode the command mode
* -t read the following args as text
* -c read the content of elements matching the selector
*/
//#content
export async function ttsread(mode: "-t" | "-c", ...args: string[]) {
if (mode === "-t") {
// really should quote args, but for now, join
TTS.readText(args.join(" "))
} else if (mode === "-c") {
if (args.length > 0) {
tssReadFromCss(args[0])
} else {
throw "Error: no CSS selector supplied"
}
} else {
throw "Unknown mode for ttsread command: " + mode
}
}
/**
* Show a list of the voices available to the TTS system. These can be
* set in the config using `ttsvoice`
*/
//#background
export async function ttsvoices() {
let voices = TTS.listVoices()
// need a better way to show this to the user
fillcmdline_notrail("#", voices.sort().join(", "))
}
/**
* Cancel current reading and clear pending queue
*
* Arguments:
* - stop: cancel current and pending utterances
*/
//#content
export async function ttscontrol(action: string) {
let ttsAction: TTS.Action = null
// convert user input to TTS.Action
// only pause seems to be working, so only provide access to that
// to avoid exposing users to things that won't work
switch (action) {
case "stop":
ttsAction = "stop"
break
}
if (ttsAction) {
TTS.doAction(ttsAction)
} else {
throw new Error("Unknown text-to-speech action: " + action)
}
}
//}}}
// unsupported on android
/**
* Add or remove a bookmark.
*
* Optionally, you may give the bookmark a title. If no URL is given, a bookmark is added for the current page.
*
* If a bookmark already exists for the URL, it is removed, even if a title is given.
*
* Does not support creation of folders: you'll need to use the Firefox menus for that.
*
* @param titlearr Title for the bookmark (can include spaces but not forward slashes, as these are interpreted as folders). If you want to put the bookmark in a folder, you can:
* - Specify it exactly: `/Bookmarks Menu/Mozilla Firefox/My New Bookmark Title`
* - Specify it by a subset: `Firefox/My New Bookmark Title`
* - and leave out the title if you want: `Firefox/`
*/
//#background
export async function bmark(url?: string, ...titlearr: string[]) {
url = url === undefined ? (await activeTab()).url : url
let title = titlearr.join(" ")
// if titlearr is given and we have duplicates, we probably want to give an error here.
const dupbmarks = await browser.bookmarks.search({ url })
dupbmarks.map(bookmark => browser.bookmarks.remove(bookmark.id))
if (dupbmarks.length != 0) return
const path = title.substring(0, title.lastIndexOf("/") + 1)
// TODO: if title is blank, get it from the page.
if (path != "") {
const tree = (await browser.bookmarks.getTree())[0] // Why would getTree return a tree? Obviously it returns an array of unit length.
// I hate recursion.
const treeClimber = (tree, treestr) => {
if (tree.type !== "folder") return {}
treestr += tree.title + "/"
if (!("children" in tree) || tree.children.length === 0) return { path: treestr, id: tree.id }
return [{ path: treestr, id: tree.id }, tree.children.map(child => treeClimber(child, treestr))]
}
const validpaths = flatten(treeClimber(tree, "")).filter(x => "path" in x)
title = title.substring(title.lastIndexOf("/") + 1)
let pathobj = validpaths.find(p => p.path == path)
// If strict look doesn't find it, be a bit gentler
if (pathobj === undefined) pathobj = validpaths.find(p => p.path.includes(path))
if (pathobj !== undefined) {
browser.bookmarks.create({ url, title, parentId: pathobj.id })
return
} // otherwise, give the user an error, probably with [v.path for v in validpaths]
}
browser.bookmarks.create({ url, title })
}
//#background
export async function echo(...str: string[]) {
return str.join(" ")
}
/**
* Lets you execute JavaScript in the page context. If you want to get the result back, use `composite js ... | fillcmdline`
*
2018-05-16 17:31:33 +01:00
* Some of Tridactyl's functions are accessible here via the `tri` object. Just do `console.log(tri)` in the web console on the new tab page to see what's available.
*
2018-05-16 17:31:33 +01:00
* Aliased to `!js`
*
*/
//#content
export async function js(...str: string[]) {
return eval(str.join(" "))
}
/** Open a welcome page on first install.
*
* @hidden
*/
//#background_helper
browser.runtime.onInstalled.addListener(details => {
if (details.reason == "install") tutor("newtab")
else if ((details as any).temporary !== true && details.reason == "update") updatenative(false)
// could add elif "update" and show a changelog. Hide it behind a setting to make it less annoying?
})
2017-10-21 12:54:15 +02:00
// vim: tabstop=4 shiftwidth=4 expandtab