58 lines
1.5 KiB
JavaScript
58 lines
1.5 KiB
JavaScript
/* Copyright (c) 2010, Diaspora Inc. This file is
|
|
* licensed under the Affero General Public License version 3 or later. See
|
|
* the COPYRIGHT file.
|
|
*/
|
|
|
|
(function() {
|
|
if(typeof window.Diaspora !== "undefined") {
|
|
return;
|
|
}
|
|
|
|
var Diaspora = { };
|
|
|
|
Diaspora.WidgetCollection = function() {
|
|
this.initialized = false;
|
|
this.collection = { };
|
|
this.eventsContainer = $({});
|
|
};
|
|
|
|
Diaspora.WidgetCollection.prototype.add = function(widgetId, widget) {
|
|
this[widgetId] = this.collection[widgetId] = new widget();
|
|
if(this.initialized) {
|
|
this.collection[widgetId].start();
|
|
}
|
|
};
|
|
|
|
Diaspora.WidgetCollection.prototype.remove = function(widgetId) {
|
|
delete this.collection[widgetId];
|
|
};
|
|
|
|
Diaspora.WidgetCollection.prototype.init = function() {
|
|
this.initialized = true;
|
|
|
|
for(var widgetId in this.collection) {
|
|
if(typeof this.collection[widgetId].start !== "undefined") {
|
|
this.collection[widgetId].start();
|
|
}
|
|
};
|
|
|
|
};
|
|
|
|
Diaspora.WidgetCollection.prototype.subscribe = function(id, callback, context) {
|
|
var ids = id.split(" ");
|
|
for(var id in ids) {
|
|
this.eventsContainer.bind(ids[id], $.proxy(callback, context));
|
|
}
|
|
};
|
|
|
|
Diaspora.WidgetCollection.prototype.publish = function(id, args) {
|
|
this.eventsContainer.trigger(id, args);
|
|
};
|
|
|
|
Diaspora.widgets = new Diaspora.WidgetCollection();
|
|
|
|
window.Diaspora = Diaspora;
|
|
})();
|
|
|
|
|
|
$(document).ready(function() { Diaspora.widgets.init(); });
|