X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/6d29b81537b9a6b32bd5415d0c4ff3323faa51a0..9e0a0c89939a75eccb7b6ae925707d404b287b78:/project/static/js/app.js diff --git a/project/static/js/app.js b/project/static/js/app.js index 7586f3fb..e8875c93 100644 --- a/project/static/js/app.js +++ b/project/static/js/app.js @@ -70,6 +70,7 @@ var panel_hooks; }; })(); + (function() { var slice = Array.prototype.slice; @@ -97,137 +98,80 @@ var panel_hooks; } })(); - -var panels = []; -var documentsUrl = '/api/documents/'; +var Editor = Editor || {}; -var Model = Class.extend({ - observers: {}, +// Obiekt implementujący wzorzec KVC/KVO +Editor.Object = Class.extend({ + _className: 'Editor.Object', + _observers: {}, + _guid: null, - init: function() {}, + init: function() { + this._observers = {}; + }, - signal: function(event, data) { - console.log('signal', this, event, data); - if (this.observers[event]) { - for (observer in this.observers[event]) { - observer.handle(event, data); - } - }; - return this; + description: function() { + return this._className + '(guid = ' + this.guid() + ')'; }, - addObserver: function(observer, event) { - if (!this.observers[event]) { - this.observers[event] = []; + addObserver: function(observer, property, callback) { + // console.log('Add observer', observer.description(), 'to', this.description(), '[', property, ']'); + if (!this._observers[property]) { + this._observers[property] = {} } - this.observers[event][observer] = observer; + this._observers[property][observer.guid()] = callback; return this; }, - removeObserver: function(observer, event) { - if (!event) { - for (e in this.observers) { - this.removeObserver(observer, e); + removeObserver: function(observer, property) { + if (!property) { + for (var property in this._observers) { + this.removeObserver(observer, property) } } else { - delete this.observers[event][observer]; + // console.log('Remove observer', observer.description(), 'from', this.description(), '[', property, ']'); + delete this._observers[property][observer.guid()]; } return this; - } -}); - - -var XMLModel = Model.extend({ - parent: null, - data: null, - serverURL: null, - - init: function(parent, serverURL) { - this.parent = parent; - this.serverURL = serverURL; - }, - - reload: function() { - $.ajax({ - url: this.serverURL, - dataType: 'text', - success: this.reloadSucceeded.bind(this) - }); - }, - - reloadSucceeded: function(data) { - this.data = data; - this.signal('reloaded'); }, -}) - -var DocumentModel = Model.extend({ - data: null, // name, text_url, latest_rev, latest_shared_rev, parts_url, dc_url, size - xml: null, - html: null, - init: function() {}, - - getData: function(callback) { - console.log('get:', documentsUrl + fileId); - $.ajax({ - cache: false, - url: documentsUrl + fileId, - dataType: 'json', - success: this.successfulGetData.bind(this, callback) - }); - }, - - successfulGetData: function(callback, data) { - this.data = data; - this.signal('changed'); - if (callback) { - (callback.bind(this))(data); + 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; }, - load: function(key) { - if (!this.data) { - this.getData(function() { this.load(key); }.bind(this)); - } else { - console.log('load', key, this.data[key + 'url']); - $.ajax({ - url: this.data[key + '_url'], - dataType: 'text', - success: this.loadSucceeded.bind(this, key) - }); + guid: function() { + if (!this._guid) { + this._guid = ('editor-' + Editor.Object._lastGuid++); } + return this._guid; }, - loadSucceeded: function(key, data) { - console.log('loadSucceeded', key, data); - this.set(key, data); + get: function(property) { + return this[property]; }, - get: function(key) { - console.log(this[key]); - if (this[key]) { - return this[key] - } else { - this.load(key); - return ''; + set: function(property, value) { + if (this[property] != value) { + this[property] = value; + this.notifyObservers(property); } + return this; }, - set: function(key, value) { - this[key] = value; - this.signal(key + '-changed'); - 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 = [];