mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
36 lines
915 B
JavaScript
36 lines
915 B
JavaScript
RED.actions = (function() {
|
|
var actions = {
|
|
|
|
}
|
|
|
|
function addAction(name,handler) {
|
|
actions[name] = handler;
|
|
}
|
|
function removeAction(name) {
|
|
delete actions[name];
|
|
}
|
|
function getAction(name) {
|
|
return actions[name];
|
|
}
|
|
function invokeAction(name) {
|
|
if (actions.hasOwnProperty(name)) {
|
|
actions[name]();
|
|
}
|
|
}
|
|
function listActions() {
|
|
var result = [];
|
|
Object.keys(actions).forEach(function(action) {
|
|
var shortcut = RED.keyboard.getShortcut(action);
|
|
result.push({id:action,scope:shortcut?shortcut.scope:undefined,key:shortcut?shortcut.key:undefined,user:shortcut?shortcut.user:undefined})
|
|
})
|
|
return result;
|
|
}
|
|
return {
|
|
add: addAction,
|
|
remove: removeAction,
|
|
get: getAction,
|
|
invoke: invokeAction,
|
|
list: listActions
|
|
}
|
|
})();
|