@PublicApi
public interface KeyboardShortcutManager
KeyboardShortcut
plugin point. In order for keyboard shortcuts to remain consistent across a cluster, they
should be added or removed simultaneously across the cluster, e.g. upon startup, not at arbitrary times such as in
response to user input.Modifier and Type | Interface and Description |
---|---|
static class |
KeyboardShortcutManager.Context
Defines the context under which a keyboard shortcut is valid.
|
static class |
KeyboardShortcutManager.Operation
Defines the different operations that can be taken using a
KeyboardShortcut . |
Modifier and Type | Method and Description |
---|---|
List<KeyboardShortcut> |
getActiveShortcuts()
Deprecated.
|
List<KeyboardShortcut> |
getAllShortcuts()
Returns an ordered list of all
KeyboardShortcut s available
using the plugin descriptor's 'order' attribute for sorting. |
String |
includeShortcuts()
Returns a URL to be used to include the currently registered keyboard shortcuts in a page.
|
boolean |
isKeyboardShortcutsEnabled()
Returns if the user has keyboard shortcuts enabled.
|
List<KeyboardShortcut> |
listActiveShortcutsUniquePerContext(Map<String,Object> userContext)
Returns an ordered list of active
KeyboardShortcut s, sorted using the plugin descriptor's
order attribute. |
void |
registerShortcut(String pluginModuleKey,
KeyboardShortcut shortcut)
Given a complete plugin module key, this method registers a keyboard shortcut with the manager, which will make
it available in the UI to end-users.
|
void |
requireShortcutsForContext(KeyboardShortcutManager.Context context)
Register that the keyboard shortcuts for the context should be included by
includeShortcuts() (in
addition to the global shortcuts, which are always included). |
void |
unregisterShortcut(String pluginModuleKey)
Removes a keyboard shortcut by its complete plugin module key.
|
void registerShortcut(String pluginModuleKey, KeyboardShortcut shortcut)
pluginModuleKey
- the complete plugin module key for this keyboard shortcutshortcut
- the shortcut to registervoid unregisterShortcut(String pluginModuleKey)
pluginModuleKey
- the key to remove@Deprecated List<KeyboardShortcut> getActiveShortcuts()
listActiveShortcutsUniquePerContext(java.util.Map<java.lang.String, java.lang.Object>)
under the hoodKeyboardShortcut
s, sorted using the plugin descriptor's
order
attribute.
A shortcut is active if it has not been overriden by another shortcut that uses the same key combination and has
a greater value in its order
attribute (see the keyboard shortcut plugin module documentation).
List<KeyboardShortcut> listActiveShortcutsUniquePerContext(Map<String,Object> userContext)
KeyboardShortcut
s, sorted using the plugin descriptor's
order
attribute.
A shortcut is considered active if
KeyboardShortcutManager.Context
that
uses the same key combination and has a greater value in its order
attribute (see the
keyboard
shortcut plugin module documentation). Thus this list can contain multiple shortcuts with the same
key combination, which all belong to a different context.
Be aware, that this operation is potentially expensive, depending on the number and type of conditions attached to the keyboard shortcuts. So store the result in favour of recalculating it.
userContext
- the context to be used when evaluating, whether the user is allowed to use the shortcut; not
null
KeyboardShortcutManager.Context
; not null
List<KeyboardShortcut> getAllShortcuts()
KeyboardShortcut
s available
using the plugin descriptor's 'order' attribute for sorting. Implementations should take care to implement this
method as quickly as possible since it will be called very often.
Note this method returns all registered shortcuts, even if they are not in effect (e.g. they have been overridden). This means that this method may return duplicate shortcuts.
getActiveShortcuts()
void requireShortcutsForContext(KeyboardShortcutManager.Context context)
includeShortcuts()
(in
addition to the global
shortcuts, which are always included).context
- the context whose keyboard shorcuts should be included (in addition to global
).String includeShortcuts()
/rest/api/1.0/shortcuts/500/f1e3b05a6e6db41e5b77fb8afd7ddde9/shortcuts.js
It has been suggested that webresources (with say the systemcounter) would be a good fit for this, however the problem is that the systemcounter would have to be updated everytime a plugin is enabled/disabled (so everytime JIRA is started up), which would have some adverse side effects:
It does not contain the applications context path. Also, the hash included at the end of the URL should be a hash of all keyboard shortcuts currently available such that the resource can be cached indefinitely. If a new shortcut is registered (or an old shortcut unregistered), then the hash should obviously change.
requireShortcutsForContext(com.atlassian.jira.plugin.keyboardshortcut.KeyboardShortcutManager.Context)
boolean isKeyboardShortcutsEnabled()
Copyright © 2002-2017 Atlassian. All Rights Reserved.