Module: HotkeyClient
This module contains Finsemble's Hotkey Client. Use this API to register event handlers for hotkeys (key combinations).
Key combinations (sometimes referred to as "key chords") are defined as arrays. An example key combination is ["shift","ctrl","f"]
which would trigger whenever a user presses those three keys simultaneously.
Common keys include "shift","ctrl","alt","backspace","tab","esc","enter","left","right,"up","down","space","pgup","pgdn". A complete list can be output by running: console.log(FSBL.Clients.HotkeyClient.keyMap)
. Take care to consider that not every keyboard contains every key.
Two types of hotkeys are supported: local hotkeys, which will only be triggered when the window which defined the hotkey is in focus, and global hotkeys, which will are triggered anytime, regardless of whether the window is in focus or not.
For more information, see the Hotkey tutorial.
Functions
addGlobalHotkey
▸ addGlobalHotkey(keyArr
, handler
, cb?
): StandardPromise
<void
>
Adds a global hotkey which fires regardless of what window is in focus. If you execute this function more than once for the same key combination, both hotkeys will coexist, and would need to be removed separately.
var myFunction = function () {...}
FSBL.Clients.HotkeyClient.addGlobalHotkey(["ctrl", "shift", "s"], myFunction, cb)
Parameters
Name | Type | Description |
---|---|---|
keyArr | string [] | Array of strings representing a hotkey key combination. |
handler | any | Function to be executed when the hotkey combination is pressed. It is recommended that you define a variable to represent the handler function, as the same function must be passed in order to remove the hotkey. |
cb? | StandardErrorCallback <void > | Callback to be called after local hotkey is added. |
Returns
StandardPromise
<void
>
addLocalHotkey
▸ addLocalHotkey(keyArr
, handler
, cb?
): StandardPromise
<void
>
This method is deprecated. Use HTML5 key events when a window is in focus.
Adds a local hotkey which fires only when the window calling the method is in focus. If you execute this function more than once for the same key combination, both hotkeys will coexist, and would need to be removed separately.
var myFunction = function () {...}
FSBL.Clients.HotkeyClient.addLocalHotkey(["ctrl", "shift", "s"], myFunction, cb)
deprecated
Parameters
Name | Type | Description |
---|---|---|
keyArr | string [] | Array of strings representing hotkey key combination. |
handler | (...args : any []) => void | Function to be executed when the hotkey combination is pressed. It is recommended that you define a variable to represent the handler function, as the same function must be passed in order to remove the hotkey. |
cb? | StandardErrorCallback <void > | Callback to be called after local hotkey is added. |
Returns
StandardPromise
<void
>
removeAllHotkeys
▸ removeAllHotkeys(cb?
): StandardPromise
<void
>
Unregister all hotkeys, both locally and service-side.
Parameters
Name | Type | Description |
---|---|---|
cb? | StandardErrorCallback <void > | Optional callback function |
Returns
StandardPromise
<void
>
removeGlobalHotkey
▸ removeGlobalHotkey(keyArr
, handler
, cb?
): StandardPromise
<void
>
Removes a global hotkey.
FSBL.Clients.HotkeyClient.removeGlobalHotkey(["ctrl", "shift", "s"], myFunction, cb)
Parameters
Name | Type | Description |
---|---|---|
keyArr | string [] | Array of strings representing hotkey key combination. |
handler | any | Handler registered for the hotkey to be removed. |
cb? | StandardErrorCallback <void > | Callback to be called after local hotkey is removed. |
Returns
StandardPromise
<void
>
removeLocalHotkey
▸ removeLocalHotkey(keyArr
, handler
, cb?
): StandardPromise
<void
>
This method is deprecated. Use HTML5 key events when a window is in focus.
Removes a local hotkey.
FSBL.Clients.HotkeyClient.removeLocalHotkey(["ctrl", "shift", "s"], myFunction, cb)
deprecated
Parameters
Name | Type | Description |
---|---|---|
keyArr | string [] | Array of strings representing hotkey key combination. |
handler | (...args : any []) => void | Handler registered for the hotkey to be removed. |
cb? | StandardErrorCallback <void > | Callback to be called after local hotkey is removed. |
Returns
StandardPromise
<void
>