};
})();
+
(function() {
var slice = Array.prototype.slice;
}
})();
-
-var panels = [];
-var documentsUrl = '/api/documents/';
-var DocumentModel = Class.extend({
- data: null, // name, text_url, latest_rev, latest_shared_rev, parts_url, dc_url, size
- xml: '',
- html: '',
+var Editor = Editor || {};
+
+// Obiekt implementujący wzorzec KVC/KVO
+Editor.Object = Class.extend({
+ _className: 'Editor.Object',
+ _observers: {},
+ _guid: null,
- init: function() {},
+ init: function() {
+ this._observers = {};
+ },
- getData: function(callback) {
- console.log('get:', documentsUrl + fileId);
- $.ajax({
- cache: false,
- url: documentsUrl + fileId,
- dataType: 'json',
- success: this.successfulGetData.bind(this, callback)
- });
+ description: function() {
+ return this._className + '(guid = ' + this.guid() + ')';
},
- successfulGetData: function(callback, data) {
- this.data = data;
- this.modelChanged();
- if (callback) {
- (callback.bind(this))(data);
+ addObserver: function(observer, property, callback) {
+ // console.log('Add observer', observer.description(), 'to', this.description(), '[', property, ']');
+ if (!this._observers[property]) {
+ this._observers[property] = {}
}
+ this._observers[property][observer.guid()] = callback;
+ return this;
},
- getXML: function(callback) {
- if (!this.data) {
- this.getData(this.getXML);
+ removeObserver: function(observer, property) {
+ if (!property) {
+ for (var property in this._observers) {
+ this.removeObserver(observer, property)
+ }
} else {
- console.log('getXML:', this.data.text_url);
- $.ajax({
- cache: false,
- url: this.data.text_url,
- dataType: 'text',
- success: this.successfulGetXML.bind(this, callback)
- });
- };
+ // console.log('Remove observer', observer.description(), 'from', this.description(), '[', property, ']');
+ delete this._observers[property][observer.guid()];
+ }
+ return this;
+ },
+
+ notifyObservers: function(property) {
+ var currentValue = this[property];
+ for (var guid in this._observers[property]) {
+ // console.log(this._observers[property][guid]);
+ // console.log('Notifying', guid, 'of', this.description(), '[', property, ']');
+ this._observers[property][guid](property, currentValue, this);
+ }
+ return this;
},
- successfulGetXML: function(callback, data) {
- if (data != this.xml) {
- this.xml = data;
- this.modelChanged();
- $(this).trigger('modelxmlchanged');
+ guid: function() {
+ if (!this._guid) {
+ this._guid = ('editor-' + Editor.Object._lastGuid++);
}
+ return this._guid;
},
- modelChanged: function() {
- $(this).trigger('modelchanged');
+ get: function(property) {
+ return this[property];
+ },
+
+ set: function(property, value) {
+ if (this[property] != value) {
+ this[property] = value;
+ this.notifyObservers(property);
+ }
+ return this;
+ },
+
+ dispose: function() {
+ delete this._observers;
}
});
-var leftPanelView, rightPanelContainer, doc;
+Editor.Object._lastGuid = 0;
-$(function() {
- doc = new DocumentModel();
- var splitView = new SplitView('#splitview', doc);
- leftPanelView = new PanelContainerView('#left-panel-container', doc);
- rightPanelContainer = new PanelContainerView('#right-panel-container', doc);
-});
+
+var panels = [];