X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/588d7e070dc10575a1c4dc3cba3b7c777142617b..HEAD:/src/fnpjs/runner.js diff --git a/src/fnpjs/runner.js b/src/fnpjs/runner.js index 2f00170..0dd52e5 100644 --- a/src/fnpjs/runner.js +++ b/src/fnpjs/runner.js @@ -1,4 +1,4 @@ -define(['libs/jquery', 'libs/underscore', 'fnpjs/logging/logging'], function($, _, logging) { +define(['libs/jquery', 'libs/underscore', 'fnpjs/logging/logging', 'fnpjs/actions'], function($, _, logging, actions) { 'use strict'; @@ -13,7 +13,10 @@ var Runner = function(app, modules) { moduleInstances = {}, eventListeners = [], plugins = [], - config; + actionDefinitions = {}, + config, + actionsAppObject, + currentContextMenu; _.each(_.keys(modules || {}), function(moduleName) { if(_.contains(app.permissions[moduleName] || [], 'handleEvents')) { @@ -31,10 +34,6 @@ var Runner = function(app, modules) { return bootstrappedData[moduleName]; }; - this.getTemplate = function(templateName) { - return _.template($('[data-template-name="' + moduleName + '.' + templateName + '"]').html().trim()); - }; - this.publish = function(eventName) { var eventArgs = Array.prototype.slice.call(arguments, 1); _.each(eventListeners, function(listenerModuleName) { @@ -62,15 +61,46 @@ var Runner = function(app, modules) { this.getConfig = function() { return config; }; + + this.createAction = function(fqName, config) { + var definition = actionDefinitions[fqName]; + if(!definition) { + throw new Error('Invalid action: ' + fqName); + } + return new actions.Action(fqName, definition, config, actionsAppObject); + }; + + this.registerKeyHandler = function(eventName, handler) { + $('body').on(eventName, function(e) { + handler(e); + }); + }; + + this.registerActionsAppObject = function(_actionsAppObject) { + actionsAppObject = _actionsAppObject; + }; + + this.showContextMenu = function(menu, coors) { + if(currentContextMenu) { + currentContextMenu.close(); + } + currentContextMenu = menu; + $(config.rootSelector).append(menu.dom); + menu.dom.css({top: coors.y, left: coors.x}); + menu.show(); + }; }; - - + this.setBootstrappedData = function(moduleName, data) { bootstrappedData[moduleName] = data; }; this.registerPlugin = function(plugin) { plugins.push(plugin); + (plugin.actions || []).forEach(function(definition) { + var actionFqName = plugin.name + '.' + definition.name; + actionDefinitions[actionFqName] = definition; + }); }; this.start = function(_config) { @@ -83,9 +113,30 @@ var Runner = function(app, modules) { logging.setConfig(config.logging); } + _.pairs(config.plugins || {}).forEach(function(pair) { + var pluginName = pair[0], + pluginConfig = pair[1]; + + plugins.some(function(plugin) { + if(plugin.name === pluginName) { + if(_.isFunction(plugin.config)) { + plugin.config(pluginConfig); + } + return true; //break + } + }); + }); + app.initModules.forEach(function(moduleName) { getModuleInstance(moduleName).start(); }); + + $(config.rootSelector)[0].addEventListener('click', function(e) { + if(currentContextMenu && !currentContextMenu.dom[0].contains(e.target)) { + currentContextMenu.close(); + currentContextMenu = null; + } + }, true); }; };