1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-08-17 14:37:58 +00:00
seahub/media/aloha-0.22.7/lib/aloha/pluginmanager.js
llj 720ac28c22 [aloha] upgraded to 0.22.7 and added textcolor plugin
* textcolor: fixed plugin bugs, added translation for zh
* image: fixed default.jpg src bug
* added 'ru' support for seaf edit
* rm aloha-0.22.3 and ununsed files in aloha-0.22.7
2013-01-15 14:48:04 +08:00

196 lines
5.3 KiB
JavaScript

/* pluginmanager.js is part of Aloha Editor project http://aloha-editor.org
*
* Aloha Editor is a WYSIWYG HTML5 inline editing library and editor.
* Copyright (c) 2010-2012 Gentics Software GmbH, Vienna, Austria.
* Contributors http://aloha-editor.org/contribution.php
*
* Aloha Editor is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or any later version.
*
* Aloha Editor is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* As an additional permission to the GNU GPL version 2, you may distribute
* non-source (e.g., minimized or compacted) forms of the Aloha-Editor
* source code without the copy of the GNU GPL normally required,
* provided you include this license notice and a URL through which
* recipients can access the Corresponding Source.
*/
// Do not add dependencies that require depend on aloha/core
define([
'jquery',
'util/class'
], function (
$,
Class
) {
'use strict';
var Aloha = window.Aloha;
/**
* For each plugin setting, assigns it into its corresponding plugin.
*
* @param {Array.<Plugin>} plugins
* @param {object<string, object>} settings
*/
function mapSettingsIntoPlugins(plugins, settings) {
var plugin;
for (plugin in settings) {
if (settings.hasOwnProperty(plugin) && plugins[plugin]) {
plugins[plugin].settings = settings[plugin] || {};
}
}
}
/**
* Retrieves a set of plugins or the given `names' list, from among those
* specified in `plugins'.
*
* @param {object<string, object>} plugins
* @param {Array.<string>} names List of plugins names.
* @return {Array.<Plugins>} List of available plugins.
*/
function getPlugins(plugins, names) {
var available = [];
var plugin;
var i;
for (i = 0; i < names.length; i++) {
plugin = plugins[names[i]];
if (plugin) {
available.push(plugin);
}
}
return available;
}
/**
* Initializes the plugins in the given list.
*
* @param {Array.<Plugins>} plugins Plugins to initialize.
* @param {function} callback Function to invoke once all plugins have been
* successfully initialized.
*/
function initializePlugins(plugins, callback) {
var numToEnable = plugins.length;
var onInit = function () {
if (0 === --numToEnable && callback) {
callback();
}
};
var i;
var ret;
var plugin;
for (i = 0; i < plugins.length; i++) {
plugin = plugins[i];
plugin.settings = plugin.settings || {};
if (typeof plugin.settings.enabled === 'undefined') {
plugin.settings.enabled = true;
}
if (plugin.settings.enabled && plugin.checkDependencies()) {
ret = plugin.init();
if (ret && typeof ret.done === 'function') {
ret.done(onInit);
} else {
onInit();
}
}
}
}
/**
* The Plugin Manager controls the lifecycle of all Aloha Plugins.
*
* @namespace Aloha
* @class PluginManager
* @singleton
*/
return new (Class.extend({
plugins: {},
/**
* Initialize all registered plugins.
*
* @param {function} next Callback to invoke after plugins have
* succefully initialized.
* @param {Array.<string>} enabled A list of plugin names which are to
* be enable.
*/
init: function (next, enabled) {
var manager = this;
var plugins = manager.plugins;
mapSettingsIntoPlugins(plugins,
Aloha && Aloha.settings && Aloha.settings.plugins);
// Because all plugins are enabled by default if specific plugins
// are not specified.
var plugin;
if (!plugins || 0 === enabled.length) {
enabled = [];
for (plugin in plugins) {
if (plugins.hasOwnProperty(plugin)) {
enabled.push(plugin);
}
}
}
initializePlugins(getPlugins(plugins, enabled), next);
},
/**
* Register a plugin
* @param {Plugin} plugin plugin to register
*/
register: function (plugin) {
if (!plugin.name) {
throw new Error('Plugin does not have an name.');
}
if (this.plugins[plugin.name]) {
throw new Error('Already registered the plugin "' + plugin.name + '"!');
}
this.plugins[plugin.name] = plugin;
},
/**
* Pass the given jQuery object, which represents an editable to all plugins, so that they can make the content clean (prepare for saving)
* @param obj jQuery object representing an editable
* @return void
* @hide
*/
makeClean: function (obj) {
var i, plugin;
// iterate through all registered plugins
for (plugin in this.plugins) {
if (this.plugins.hasOwnProperty(plugin)) {
if (Aloha.Log.isDebugEnabled()) {
Aloha.Log.debug(this, 'Passing contents of HTML Element with id { ' + obj.attr('id') + ' } for cleaning to plugin { ' + plugin + ' }');
}
this.plugins[plugin].makeClean(obj);
}
}
},
/**
* Expose a nice name for the Plugin Manager
* @hide
*/
toString: function () {
return 'pluginmanager';
}
}))();
});