+++ /dev/null
-/*\r
- * UI related Editor methods\r
- */\r
-Editor.prototype.setupUI = function() {\r
-// // set up the UI visually and attach callbacks\r
- var self = this;\r
-// \r
-// var resize_start = function(event, mydata) {\r
-// $(document).bind('mousemove', mydata, resize_changed).\r
-// bind('mouseup', mydata, resize_stop);\r
-// \r
-// $('.panel-overlay', mydata.root).css('display', 'block');\r
-// return false;\r
-// }\r
-// var resize_changed = function(event) {\r
-// var old_width = parseInt(event.data.overlay.css('width'));\r
-// var delta = event.pageX + event.data.hotspot_x - old_width;\r
-// \r
-// if(old_width + delta < 12) delta = 12 - old_width;\r
-// if(old_width + delta > $(window).width()) \r
-// delta = $(window).width() - old_width;\r
-// \r
-// event.data.overlay.css({\r
-// 'width': old_width + delta\r
-// });\r
-// \r
-// if(event.data.overlay.next) {\r
-// var left = parseInt(event.data.overlay.next.css('left'));\r
-// event.data.overlay.next.css('left', left+delta);\r
-// }\r
-// \r
-// return false;\r
-// };\r
-// \r
-// var resize_stop = function(event) {\r
-// $(document).unbind('mousemove', resize_changed).unbind('mouseup', resize_stop);\r
-// // $('.panel-content', event.data.root).css('display', 'block');\r
-// var overlays = $('.panel-content-overlay', event.data.root);\r
-// $('.panel-content-overlay', event.data.root).each(function(i) {\r
-// if( $(this).data('panel').hasClass('last-panel') )\r
-// $(this).data('panel').css({\r
-// 'left': $(this).css('left'),\r
-// 'right': $(this).css('right')\r
-// });\r
-// else\r
-// $(this).data('panel').css({\r
-// 'left': $(this).css('left'),\r
-// 'width': $(this).css('width')\r
-// });\r
-// });\r
-// $('.panel-overlay', event.data.root).css('display', 'none');\r
-// $(event.data.root).trigger('stopResize');\r
-// };\r
-// \r
-// /*\r
-// * Prepare panels (overlays & stuff)\r
-// */\r
-// /* create an overlay */\r
-// var panel_root = self.rootDiv;\r
-// var overlay_root = $("<div class='panel-overlay'></div>");\r
-// panel_root.append(overlay_root);\r
-// \r
-// var prev = null;\r
-// \r
-// $('*.panel-wrap', panel_root).each( function()\r
-// {\r
-// var panel = $(this);\r
-// var handle = $('.panel-slider', panel);\r
-// var overlay = $("<div class='panel-content-overlay panel-wrap'> </div>");\r
-// overlay_root.append(overlay);\r
-// overlay.data('panel', panel);\r
-// overlay.data('next', null);\r
-// \r
-// if (prev) prev.next = overlay;\r
-// \r
-// if( panel.hasClass('last-panel') )\r
-// {\r
-// overlay.css({\r
-// 'left': panel.css('left'),\r
-// 'right': panel.css('right')\r
-// });\r
-// }\r
-// else {\r
-// overlay.css({\r
-// 'left': panel.css('left'),\r
-// 'width': panel.css('width')\r
-// });\r
-// // $.log('Has handle: ' + panel.attr('id'));\r
-// overlay.append(handle.clone());\r
-// /* attach the trigger */\r
-// handle.mousedown(function(event) {\r
-// var touch_data = {\r
-// root: panel_root,\r
-// overlay: overlay,\r
-// hotspot_x: event.pageX - handle.position().left\r
-// };\r
-// \r
-// $(this).trigger('hpanel:panel-resize-start', touch_data);\r
-// return false;\r
-// });\r
-// $('.panel-content', panel).css('right',\r
-// (handle.outerWidth() || 10) + 'px');\r
-// $('.panel-content-overlay', panel).css('right',\r
-// (handle.outerWidth() || 10) + 'px');\r
-// };\r
-// \r
-// prev = overlay;\r
-// });\r
-// \r
-// panel_root.bind('hpanel:panel-resize-start', resize_start);\r
-// self.rootDiv.bind('stopResize', function() {\r
-// self.savePanelOptions(); \r
-// });\r
-// \r
- /*\r
- * Connect panel actions\r
- */\r
- $('#panels > *.panel-wrap').each(function() {\r
- var panelWrap = $(this);\r
- // $.log('wrap: ', panelWrap);\r
- var panel = new Panel(panelWrap);\r
- panelWrap.data('ctrl', panel); // attach controllers to wraps\r
- panel.load($('.panel-toolbar select', panelWrap).val());\r
-\r
- $('.panel-toolbar select', panelWrap).change(function() {\r
- var url = $(this).val();\r
- panelWrap.data('ctrl').load(url);\r
- self.savePanelOptions();\r
- });\r
-\r
- $('.panel-toolbar button.refresh-button', panelWrap).click(\r
- function() {\r
- panel.refresh();\r
- } );\r
-\r
- self.rootDiv.bind('stopResize', function() {\r
- panel.callHook('toolbarResized');\r
- });\r
- });\r
-\r
- $(document).bind('panel:contentChanged', function() {\r
- self.onContentChanged.apply(self, arguments)\r
- }); \r
-\r
- /*\r
- * Connect various buttons\r
- */\r
-\r
- $('#toolbar-button-quick-save').click( function (event, data) {\r
- self.saveToBranch();\r
- } );\r
-\r
- $('#toolbar-button-save').click( function (event, data) {\r
- $('#commit-dialog').jqmShow( {callback: $.fbind(self, self.saveToBranch)} );\r
- } );\r
-\r
- $('#toolbar-button-update').click( function (event, data) {\r
- if (self.updateUserBranch()) {\r
- // commit/update can be called only after proper, save\r
- // this means all panels are clean, and will get refreshed\r
- // do this only, when there are any changes to local branch\r
- self.refreshPanels();\r
- }\r
- } );\r
-\r
- /* COMMIT DIALOG */\r
- $('#commit-dialog').\r
- jqm({\r
- modal: true,\r
- onShow: $.fbind(self, self.loadRelatedIssues) \r
- });\r
-\r
- $('#toolbar-button-commit').click( function (event, data) {\r
- $('#commit-dialog').jqmShow( {callback: $.fbind(self, self.sendMergeRequest)} );\r
- } );\r
- \r
- /* STATIC BINDS */\r
- $('#commit-dialog-cancel-button').click(function() {\r
- $('#commit-dialog-error-empty-message').hide();\r
- $('#commit-dialog').jqmHide();\r
- }); \r
- \r
-\r
- /* SPLIT DIALOG */\r
- $('#split-dialog').jqm({\r
- modal: true,\r
- onShow: $.fbind(self, self.loadSplitDialog)\r
- }).\r
- jqmAddClose('button.dialog-close-button');\r
-}\r
-\r
-Editor.prototype.loadRelatedIssues = function(hash)\r
-{\r
- var self = this;\r
- var c = $('#commit-dialog-related-issues');\r
-\r
- $('#commit-dialog-save-button').click( function (event, data)\r
- {\r
- if( $('#commit-dialog-message').val().match(/^\s*$/)) {\r
- $('#commit-dialog-error-empty-message').fadeIn();\r
- }\r
- else {\r
- $('#commit-dialog-error-empty-message').hide();\r
- $('#commit-dialog').jqmHide();\r
-\r
- var message = $('#commit-dialog-message').val();\r
- $('#commit-dialog-related-issues input:checked').\r
- each(function() { message += ' refs #' + $(this).val(); });\r
- $.log("COMMIT APROVED", hash.t);\r
- hash.t.callback(message);\r
- }\r
-\r
- return false;\r
- });\r
-\r
- $("div.loading-box", c).show();\r
- $("div.fatal-error-box", c).hide();\r
- $("div.container-box", c).hide();\r
- \r
- $.getJSON( c.attr('ui:ajax-src') + '?callback=?',\r
- function(data, status)\r
- {\r
- var fmt = '';\r
- $(data).each( function() {\r
- fmt += '<label><input type="checkbox" checked="checked"'\r
- fmt += ' value="' + this.id + '" />' + this.subject +'</label>\n'\r
- });\r
- $("div.container-box", c).html(fmt);\r
- $("div.loading-box", c).hide();\r
- $("div.container-box", c).show(); \r
- }); \r
- \r
- hash.w.show();\r
-}\r
-\r
-Editor.prototype.loadSplitDialog = function(hash)\r
-{\r
- var self = this; \r
- \r
- $("div.loading-box", hash.w).show();\r
- $("div.fatal-error-box", hash.w).hide();\r
- $('div.container-box', hash.w).hide();\r
- hash.w.show();\r
-\r
- function onFailure(rq, tstat, err) {\r
- $('div.container-box', hash.w).html('');\r
- $("div.loading-box", hash.w).hide();\r
- $("div.fatal-error-box", hash.w).show();\r
- hash.t.failure();\r
- };\r
-\r
- function onSuccess(data, status) {\r
- // put the form into the window\r
- $('div.container-box', hash.w).html(data);\r
- $("div.loading-box", hash.w).hide();\r
- $('form input[name=splitform-splittext]', hash.w).val(hash.t.selection);\r
- $('form input[name=splitform-fulltext]', hash.w).val(hash.t.fulltext);\r
- $('div.container-box', hash.w).show();\r
-\r
- // connect buttons\r
- $('#split-dialog-button-accept').click(function() {\r
- self.postSplitRequest(onSuccess, onFailure);\r
- return false;\r
- });\r
-\r
- $('#split-dialog-button-close').click(function() {\r
- hash.w.jqmHide();\r
- $('div.container-box', hash.w).html('');\r
- hash.t.failure();\r
- });\r
-\r
- $('#split-dialog-button-dismiss').click(function() {\r
- hash.w.jqmHide();\r
- $('div.container-box', hash.w).html('');\r
- hash.t.success();\r
- });\r
-\r
- /* if($('#id_splitform-autoxml').is(':checked'))\r
- $('#split-form-dc-subform').show();\r
- else\r
- $('#split-form-dc-subform').hide();\r
-\r
- $('#id_splitform-autoxml').change(function() { \r
- if( $(this).is(':checked') )\r
- $('#split-form-dc-subform').show();\r
- else\r
- $('#split-form-dc-subform').hide();\r
- }); */\r
- }; \r
-\r
- $.ajax({\r
- url: 'split',\r
- dataType: 'html',\r
- success: onSuccess,\r
- error: onFailure,\r
- type: 'GET',\r
- data: {}\r
- });\r
-}\r
-\r
-/* Refreshing routine */\r
-Editor.prototype.refreshPanels = function() {\r
- var self = this;\r
-\r
- self.allPanels().each(function() {\r
- var panel = $(this).data('ctrl');\r
- $.log('Refreshing: ', this, panel);\r
- if ( panel.changed() )\r
- panel.unmarkChanged();\r
- else\r
- panel.refresh();\r
- });\r
-\r
- $('button.provides-save').attr('disabled', 'disabled');\r
- $('button.requires-save').removeAttr('disabled');\r
-};\r
-\r
-/*\r
- * Pop-up messages\r
- */\r
-Editor.prototype.showPopup = function(name, text, timeout)\r
-{\r
- timeout = timeout || 4000;\r
- var self = this;\r
- self.popupQueue.push( [name, text, timeout] )\r
-\r
- if( self.popupQueue.length > 1)\r
- return;\r
-\r
- var box = $('#message-box > #' + name);\r
- $('*.data', box).html(text || '');\r
- box.fadeIn(100);\r
-\r
- if(timeout > 0)\r
- setTimeout( $.fbind(self, self.advancePopupQueue), timeout);\r
-};\r
-\r
-Editor.prototype.advancePopupQueue = function() {\r
- var self = this;\r
- var elem = this.popupQueue.shift();\r
- if(elem) {\r
- var box = $('#message-box > #' + elem[0]);\r
-\r
- box.fadeOut(100, function()\r
- {\r
- $('*.data', box).html('');\r
-\r
- if( self.popupQueue.length > 0) {\r
- var ibox = $('#message-box > #' + self.popupQueue[0][0]);\r
- $('*.data', ibox).html(self.popupQueue[0][1] || '');\r
- ibox.fadeIn(100);\r
- if(self.popupQueue[0][2] > 0)\r
- setTimeout( $.fbind(self, self.advancePopupQueue), self.popupQueue[0][2]);\r
- }\r
- });\r
- }\r
-};\r
-\r
-\r
/*globals Editor fileId SplitView PanelContainerView EditorView FlashView messageCenter*/
Editor.Model = Editor.Object.extend({
- synced: false,
- data: null
+ synced: false,
+ data: null
});
Editor.ToolbarButtonsModel = Editor.Model.extend({
- className: 'Editor.ToolbarButtonsModel',
- buttons: {},
+ className: 'Editor.ToolbarButtonsModel',
+ buttons: {},
- init: function() {
- this._super();
- },
+ init: function() {
+ this._super();
+ },
- load: function() {
- if (!this.get('buttons').length) {
- $.ajax({
- url: toolbarUrl,
- dataType: 'json',
- success: this.loadSucceeded.bind(this)
- });
- }
- },
+ load: function() {
+ if (!this.get('buttons').length) {
+ $.ajax({
+ url: toolbarUrl,
+ dataType: 'json',
+ success: this.loadSucceeded.bind(this)
+ });
+ }
+ },
- loadSucceeded: function(data) {
- this.set('buttons', data);
- }
+ loadSucceeded: function(data) {
+ this.set('buttons', data);
+ }
});
// -> dirty -> updating -> updated -> synced
//
Editor.XMLModel = Editor.Model.extend({
- _className: 'Editor.XMLModel',
- serverURL: null,
- data: '',
- state: 'empty',
+ _className: 'Editor.XMLModel',
+ serverURL: null,
+ data: '',
+ state: 'empty',
- init: function(serverURL, revision) {
- this._super();
- this.set('state', 'empty');
- this.set('revision', revision);
- this.serverURL = serverURL;
- this.toolbarButtonsModel = new Editor.ToolbarButtonsModel();
- this.addObserver(this, 'data', this.dataChanged.bind(this));
- },
+ init: function(serverURL, revision) {
+ this._super();
+ this.set('state', 'empty');
+ this.set('revision', revision);
+ this.serverURL = serverURL;
+ this.toolbarButtonsModel = new Editor.ToolbarButtonsModel();
+ this.addObserver(this, 'data', this.dataChanged.bind(this));
+ },
- load: function(force) {
- if (force || this.get('state') == 'empty') {
- this.set('state', 'loading');
- messageCenter.addMessage('info', 'Wczytuję XML...');
- $.ajax({
- url: this.serverURL,
- dataType: 'text',
- data: {revision: this.get('revision')},
- success: this.loadingSucceeded.bind(this),
- error: this.loadingFailed.bind(this)
- });
- return true;
- }
- return false;
- },
+ load: function(force) {
+ if (force || this.get('state') == 'empty') {
+ this.set('state', 'loading');
+ messageCenter.addMessage('info', 'Wczytuję XML...');
+ $.ajax({
+ url: this.serverURL,
+ dataType: 'text',
+ data: {
+ revision: this.get('revision')
+ },
+ success: this.loadingSucceeded.bind(this),
+ error: this.loadingFailed.bind(this)
+ });
+ return true;
+ }
+ return false;
+ },
- loadingSucceeded: function(data) {
- if (this.get('state') != 'loading') {
- alert('erroneous state:', this.get('state'));
- }
- this.set('data', data);
- this.set('state', 'synced');
- messageCenter.addMessage('success', 'Wczytałem XML :-)');
- },
+ loadingSucceeded: function(data) {
+ if (this.get('state') != 'loading') {
+ alert('erroneous state:', this.get('state'));
+ }
+ this.set('data', data);
+ this.set('state', 'synced');
+ messageCenter.addMessage('success', 'Wczytałem XML :-)');
+ },
- loadingFailed: function() {
- if (this.get('state') != 'loading') {
- alert('erroneous state:', this.get('state'));
- }
- this.set('error', 'Nie udało się załadować panelu');
- this.set('state', 'error');
- messageCenter.addMessage('error', 'Nie udało mi się wczytać XML. Spróbuj ponownie :-(');
- },
+ loadingFailed: function() {
+ if (this.get('state') != 'loading') {
+ alert('erroneous state:', this.get('state'));
+ }
+ this.set('error', 'Nie udało się załadować panelu');
+ this.set('state', 'error');
+ messageCenter.addMessage('error', 'Nie udało mi się wczytać XML. Spróbuj ponownie :-(');
+ },
- update: function(message) {
- if (this.get('state') == 'dirty') {
- this.set('state', 'updating');
- messageCenter.addMessage('info', 'Zapisuję XML...');
+ update: function(message) {
+ if (this.get('state') == 'dirty') {
+ this.set('state', 'updating');
+ messageCenter.addMessage('info', 'Zapisuję XML...');
- var payload = {
- contents: this.get('data'),
- revision: this.get('revision')
- };
- if (message) {
- payload.message = message;
- }
+ var payload = {
+ contents: this.get('data'),
+ revision: this.get('revision')
+ };
+ if (message) {
+ payload.message = message;
+ }
- $.ajax({
- url: this.serverURL,
- type: 'post',
- dataType: 'json',
- data: payload,
- success: this.updatingSucceeded.bind(this),
- error: this.updatingFailed.bind(this)
- });
- return true;
- }
- return false;
- },
+ $.ajax({
+ url: this.serverURL,
+ type: 'post',
+ dataType: 'json',
+ data: payload,
+ success: this.updatingSucceeded.bind(this),
+ error: this.updatingFailed.bind(this)
+ });
+ return true;
+ }
+ return false;
+ },
- updatingSucceeded: function(data) {
- if (this.get('state') != 'updating') {
- alert('erroneous state:', this.get('state'));
- }
- this.set('revision', data.revision);
- this.set('state', 'updated');
- messageCenter.addMessage('success', 'Zapisałem XML :-)');
- },
+ updatingSucceeded: function(data) {
+ if (this.get('state') != 'updating') {
+ alert('erroneous state:', this.get('state'));
+ }
+ this.set('revision', data.revision);
+ this.set('state', 'updated');
+ messageCenter.addMessage('success', 'Zapisałem XML :-)');
+ },
- updatingFailed: function() {
- if (this.get('state') != 'updating') {
- alert('erroneous state:', this.get('state'));
- }
- messageCenter.addMessage('error', 'Nie udało mi się zapisać XML. Spróbuj ponownie :-(');
- this.set('state', 'dirty');
- },
+ updatingFailed: function() {
+ if (this.get('state') != 'updating') {
+ alert('erroneous state:', this.get('state'));
+ }
+ messageCenter.addMessage('error', 'Nie udało mi się zapisać XML. Spróbuj ponownie :-(');
+ this.set('state', 'dirty');
+ },
- // For debbuging
- set: function(property, value) {
- if (property == 'state') {
- console.log(this.description(), ':', property, '=', value);
- }
- return this._super(property, value);
- },
+ // For debbuging
+ set: function(property, value) {
+ if (property == 'state') {
+ console.log(this.description(), ':', property, '=', value);
+ }
+ return this._super(property, value);
+ },
- dataChanged: function(property, value) {
- if (this.get('state') == 'synced') {
- this.set('state', 'dirty');
- }
- },
+ dataChanged: function(property, value) {
+ if (this.get('state') == 'synced') {
+ this.set('state', 'dirty');
+ }
+ },
- dispose: function() {
- this.removeObserver(this);
- this._super();
- }
+ dispose: function() {
+ this.removeObserver(this);
+ this._super();
+ }
});
Editor.HTMLModel = Editor.Model.extend({
- _className: 'Editor.HTMLModel',
- serverURL: null,
- data: '',
- state: 'empty',
+ _className: 'Editor.HTMLModel',
+ dataURL: null,
+ htmlURL: null,
+ renderURL: null,
+ displaData: '',
+ xmlParts: {},
+ state: 'empty',
- init: function(serverURL, revision) {
- this._super();
- this.set('state', 'empty');
- this.set('revision', revision);
- this.serverURL = serverURL;
- },
+ init: function(htmlURL, revision, dataURL) {
+ this._super();
+ this.set('state', 'empty');
+ this.set('revision', revision);
+ this.htmlURL = htmlURL;
+ this.dataURL = dataURL;
+ this.renderURL = "http://localhost:8000/api/render";
+ this.xmlParts = {};
+ },
- load: function(force) {
- if (force || this.get('state') == 'empty') {
- this.set('state', 'loading');
- messageCenter.addMessage('info', 'Wczytuję HTML...');
- $.ajax({
- url: this.serverURL,
- dataType: 'text',
- data: {revision: this.get('revision')},
- success: this.loadingSucceeded.bind(this),
- error: this.loadingFailed.bind(this)
- });
- }
- },
+ load: function(force) {
+ if (force || this.get('state') == 'empty') {
+ this.set('state', 'loading');
+
+ // load the transformed data
+ messageCenter.addMessage('info', 'Wczytuję HTML...');
+
+ $.ajax({
+ url: this.htmlURL,
+ dataType: 'text',
+ data: {
+ revision: this.get('revision')
+ },
+ success: this.loadingSucceeded.bind(this),
+ error: this.loadingFailed.bind(this)
+ });
+ }
+ },
- loadingSucceeded: function(data) {
- if (this.get('state') != 'loading') {
- alert('erroneous state:', this.get('state'));
- }
- this.set('data', data);
- this.set('state', 'synced');
- messageCenter.addMessage('success', 'Wczytałem HTML :-)');
- },
+ loadingSucceeded: function(data) {
+ if (this.get('state') != 'loading') {
+ alert('erroneous state:', this.get('state'));
+ }
+ this.set('data', data);
+ this.set('state', 'synced');
+ messageCenter.addMessage('success', 'Wczytałem HTML :-)');
+ },
- loadingFailed: function() {
- if (this.get('state') != 'loading') {
- alert('erroneous state:', this.get('state'));
- }
- this.set('error', 'Nie udało się załadować panelu');
- this.set('state', 'error');
- messageCenter.addMessage('error', 'Nie udało mi się wczytać HTML. Spróbuj ponownie :-(');
- },
-
- // For debbuging
- set: function(property, value) {
- if (property == 'state') {
- console.log(this.description(), ':', property, '=', value);
+ loadingFailed: function() {
+ if (this.get('state') != 'loading') {
+ alert('erroneous state:', this.get('state'));
+ }
+ this.set('error', 'Nie udało się załadować panelu');
+ this.set('state', 'error');
+ messageCenter.addMessage('error', 'Nie udało mi się wczytać HTML. Spróbuj ponownie :-(');
+ },
+
+ getXMLPart: function(elem, callback)
+ {
+ var path = elem.attr('wl2o:path');
+ if(!this.xmlParts[path])
+ this.loadXMLPart(elem, callback);
+ else
+ callback(path, this.xmlParts[path]);
+ },
+
+ loadXMLPart: function(elem, callback)
+ {
+ var path = elem.attr('wl2o:path');
+ var self = this;
+
+ $.ajax({
+ url: this.dataURL,
+ dataType: 'text; charset=utf-8',
+ data: {
+ revision: this.get('revision'),
+ part: path
+ },
+ success: function(data) {
+ self.xmlParts[path] = data;
+ callback(path, data);
+ },
+ // TODO: error handling
+ error: function(data) {
+ console.log('Failed to load fragment');
+ callback(undefined, undefined);
+ }
+ });
+ },
+
+ putXMLPart: function(elem, data) {
+ var self = this;
+
+ var path = elem.attr('wl2o:path');
+ this.xmlParts[path] = data;
+
+ this.set('state', 'unsynced');
+
+ /* re-render the changed fragment */
+ $.ajax({
+ url: this.renderURL,
+ type: "POST",
+ dataType: 'text; charset=utf-8',
+ data: {
+ fragment: data,
+ part: path
+ },
+ success: function(htmldata) {
+ elem.replaceWith(htmldata);
+ self.set('state', 'dirty');
+ }
+ });
+ },
+
+ update: function(message) {
+ if (this.get('state') == 'dirty') {
+ this.set('state', 'updating');
+
+ var payload = {
+ chunks: $.toJSON(this.xmlParts),
+ revision: this.get('revision')
+ };
+
+ if (message) {
+ payload.message = message;
+ }
+
+ console.log(payload)
+
+ $.ajax({
+ url: this.dataURL,
+ type: 'post',
+ dataType: 'json',
+ data: payload,
+ success: this.updatingSucceeded.bind(this),
+ error: this.updatingFailed.bind(this)
+ });
+ return true;
+ }
+ return false;
+
+ },
+
+ updatingSucceeded: function(data) {
+ if (this.get('state') != 'updating') {
+ alert('erroneous state:', this.get('state'));
+ }
+
+ // flush the cache
+ this.xmlParts = {};
+
+ this.set('revision', data.revision);
+ this.set('state', 'updated');
+ },
+
+ updatingFailed: function() {
+ if (this.get('state') != 'updating') {
+ alert('erroneous state:', this.get('state'));
+ }
+ messageCenter.addMessage('error', 'Uaktualnienie nie powiodło się', 'Uaktualnienie nie powiodło się');
+ this.set('state', 'dirty');
+ },
+
+ // For debbuging
+ set: function(property, value) {
+ if (property == 'state') {
+ console.log(this.description(), ':', property, '=', value);
+ }
+ return this._super(property, value);
}
- return this._super(property, value);
- }
});
Editor.ImageGalleryModel = Editor.Model.extend({
- _className: 'Editor.ImageGalleryModel',
- serverURL: null,
- data: [],
- state: 'empty',
-
- init: function(serverURL) {
- this._super();
- this.set('state', 'empty');
- this.serverURL = serverURL;
- // olewać data
- this.pages = [];
- },
-
- load: function(force) {
- if (force || this.get('state') == 'empty') {
- this.set('state', 'loading');
- $.ajax({
- url: this.serverURL,
- dataType: 'json',
- success: this.loadingSucceeded.bind(this)
- });
- }
- },
+ _className: 'Editor.ImageGalleryModel',
+ serverURL: null,
+ data: [],
+ state: 'empty',
- loadingSucceeded: function(data) {
- if (this.get('state') != 'loading') {
- alert('erroneous state:', this.get('state'));
- }
+ init: function(serverURL) {
+ this._super();
+ this.set('state', 'empty');
+ this.serverURL = serverURL;
+ // olewać data
+ this.pages = [];
+ },
- console.log('galleries:', data);
+ load: function(force) {
+ if (force || this.get('state') == 'empty') {
+ this.set('state', 'loading');
+ $.ajax({
+ url: this.serverURL,
+ dataType: 'json',
+ success: this.loadingSucceeded.bind(this)
+ });
+ }
+ },
- if (data.length === 0) {
- this.set('data', []);
- } else {
- console.log('dupa');
- this.set('data', data[0].pages);
- }
+ loadingSucceeded: function(data) {
+ if (this.get('state') != 'loading') {
+ alert('erroneous state:', this.get('state'));
+ }
- this.set('state', 'synced');
- },
+ console.log('galleries:', data);
- set: function(property, value) {
- if (property == 'state') {
- console.log(this.description(), ':', property, '=', value);
+ if (data.length === 0) {
+ this.set('data', []);
+ } else {
+ console.log('dupa');
+ this.set('data', data[0].pages);
+ }
+
+ this.set('state', 'synced');
+ },
+
+ set: function(property, value) {
+ if (property == 'state') {
+ console.log(this.description(), ':', property, '=', value);
+ }
+ return this._super(property, value);
}
- return this._super(property, value);
- }
});
Editor.DocumentModel = Editor.Model.extend({
- _className: 'Editor.DocumentModel',
- data: null, // name, text_url, user_revision, latest_shared_rev, parts_url, dc_url, size, merge_url
- contentModels: {},
- state: 'empty',
+ _className: 'Editor.DocumentModel',
+ data: null, // name, text_url, user_revision, latest_shared_rev, parts_url, dc_url, size, merge_url
+ contentModels: {},
+ state: 'empty',
- init: function() {
- this._super();
- this.set('state', 'empty');
- this.load();
- },
+ init: function() {
+ this._super();
+ this.set('state', 'empty');
+ this.load();
+ },
- load: function() {
- if (this.get('state') == 'empty') {
- this.set('state', 'loading');
- messageCenter.addMessage('info', 'Ładuję dane dokumentu...');
- $.ajax({
- cache: false,
- url: documentsUrl + fileId,
- dataType: 'json',
- success: this.successfulLoad.bind(this)
- });
- }
- },
-
- successfulLoad: function(data) {
- this.set('data', data);
- this.set('state', 'synced');
- this.contentModels = {
- 'xml': new Editor.XMLModel(data.text_url, data.user_revision),
- 'html': new Editor.HTMLModel(data.html_url, data.user_revision),
- 'gallery': new Editor.ImageGalleryModel(data.gallery_url)
- };
- for (var key in this.contentModels) {
- this.contentModels[key].addObserver(this, 'state', this.contentModelStateChanged.bind(this));
- }
- messageCenter.addMessage('success', 'Dane dokumentu zostały załadowane :-)');
- },
-
- contentModelStateChanged: function(property, value, contentModel) {
- if (value == 'dirty') {
- this.set('state', 'dirty');
- for (var key in this.contentModels) {
- if (this.contentModels[key].guid() != contentModel.guid()) {
- this.contentModels[key].set('state', 'unsynced');
+ load: function() {
+ if (this.get('state') == 'empty') {
+ this.set('state', 'loading');
+ messageCenter.addMessage('info', 'Ładuję dane dokumentu...');
+ $.ajax({
+ cache: false,
+ url: documentsUrl + fileId,
+ dataType: 'json',
+ success: this.successfulLoad.bind(this)
+ });
}
- }
- } else if (value == 'updated') {
- this.set('state', 'synced');
- for (key in this.contentModels) {
- if (this.contentModels[key].guid() == contentModel.guid()) {
- this.contentModels[key].set('state', 'synced');
- this.data.user_revision = this.contentModels[key].get('revision');
+ },
+
+ successfulLoad: function(data) {
+ this.set('data', data);
+ this.set('state', 'synced');
+ this.contentModels = {
+ 'xml': new Editor.XMLModel(data.text_url, data.user_revision),
+ 'html': new Editor.HTMLModel(data.html_url, data.user_revision, data.text_url),
+ 'gallery': new Editor.ImageGalleryModel(data.gallery_url)
+ };
+ for (var key in this.contentModels) {
+ this.contentModels[key].addObserver(this, 'state', this.contentModelStateChanged.bind(this));
}
- }
- for (key in this.contentModels) {
- if (this.contentModels[key].guid() != contentModel.guid()) {
- this.contentModels[key].set('revision', this.data.user_revision);
- this.contentModels[key].set('state', 'empty');
+ messageCenter.addMessage('success', 'Dane dokumentu zostały załadowane :-)');
+ },
+
+ contentModelStateChanged: function(property, value, contentModel) {
+ if (value == 'dirty') {
+ this.set('state', 'dirty');
+ for (var key in this.contentModels) {
+ if (this.contentModels[key].guid() != contentModel.guid()) {
+ this.contentModels[key].set('state', 'unsynced');
+ }
+ }
+ } else if (value == 'updated') {
+ this.set('state', 'synced');
+ for (key in this.contentModels) {
+ if (this.contentModels[key].guid() == contentModel.guid()) {
+ this.contentModels[key].set('state', 'synced');
+ this.data.user_revision = this.contentModels[key].get('revision');
+ }
+ }
+ for (key in this.contentModels) {
+ if (this.contentModels[key].guid() != contentModel.guid()) {
+ this.contentModels[key].set('revision', this.data.user_revision);
+ this.contentModels[key].set('state', 'empty');
+ }
+ }
}
- }
- }
- },
+ },
- saveDirtyContentModel: function(message) {
- for (var key in this.contentModels) {
- if (this.contentModels[key].get('state') == 'dirty') {
- this.contentModels[key].update(message);
- break;
- }
- }
- },
+ saveDirtyContentModel: function(message) {
+ for (var key in this.contentModels) {
+ if (this.contentModels[key].get('state') == 'dirty') {
+ this.contentModels[key].update(message);
+ break;
+ }
+ }
+ },
- update: function() {
- this.set('state', 'loading');
- messageCenter.addMessage('info', 'Uaktualniam dokument...');
- $.ajax({
- url: this.data.merge_url,
- dataType: 'json',
- type: 'post',
- data: {
- type: 'update',
- target_revision: this.data.user_revision
- },
- complete: this.updateCompleted.bind(this),
- success: function(data) { this.set('updateData', data); }.bind(this)
- });
- },
+ update: function() {
+ this.set('state', 'loading');
+ messageCenter.addMessage('info', 'Uaktualniam dokument...');
+ $.ajax({
+ url: this.data.merge_url,
+ dataType: 'json',
+ type: 'post',
+ data: {
+ type: 'update',
+ target_revision: this.data.user_revision
+ },
+ complete: this.updateCompleted.bind(this),
+ success: function(data) {
+ this.set('updateData', data);
+ }.bind(this)
+ });
+ },
- updateCompleted: function(xhr, textStatus) {
- console.log(xhr.status, textStatus);
- if (xhr.status == 200) { // Sukces
- this.data.user_revision = this.get('updateData').revision;
- messageCenter.addMessage('info', 'Uaktualnienie dokumentu do wersji ' + this.get('updateData').revision,
- 'Uaktualnienie dokumentu do wersji ' + this.get('updateData').revision);
- for (var key in this.contentModels) {
- this.contentModels[key].set('revision', this.data.user_revision);
- this.contentModels[key].set('state', 'empty');
- }
- messageCenter.addMessage('success', 'Uaktualniłem dokument do najnowszej wersji :-)');
- } else if (xhr.status == 202) { // Wygenerowano PullRequest (tutaj?)
- } else if (xhr.status == 204) { // Nic nie zmieniono
- messageCenter.addMessage('info', 'Nic się nie zmieniło od ostatniej aktualizacji. Po co mam uaktualniać?');
- } else if (xhr.status == 409) { // Konflikt podczas operacji
- messageCenter.addMessage('error', 'Wystąpił konflikt podczas aktualizacji. Pędź po programistów! :-(');
- } else if (xhr.status == 500) {
- messageCenter.addMessage('critical', 'Błąd serwera. Pędź po programistów! :-(');
- }
- this.set('state', 'synced');
- this.set('updateData', null);
- },
+ updateCompleted: function(xhr, textStatus) {
+ console.log(xhr.status, textStatus);
+ if (xhr.status == 200) { // Sukces
+ this.data.user_revision = this.get('updateData').revision;
+ messageCenter.addMessage('info', 'Uaktualnienie dokumentu do wersji ' + this.get('updateData').revision,
+ 'Uaktualnienie dokumentu do wersji ' + this.get('updateData').revision);
+ for (var key in this.contentModels) {
+ this.contentModels[key].set('revision', this.data.user_revision);
+ this.contentModels[key].set('state', 'empty');
+ }
+ messageCenter.addMessage('success', 'Uaktualniłem dokument do najnowszej wersji :-)');
+ } else if (xhr.status == 202) { // Wygenerowano PullRequest (tutaj?)
+ } else if (xhr.status == 204) { // Nic nie zmieniono
+ messageCenter.addMessage('info', 'Nic się nie zmieniło od ostatniej aktualizacji. Po co mam uaktualniać?');
+ } else if (xhr.status == 409) { // Konflikt podczas operacji
+ messageCenter.addMessage('error', 'Wystąpił konflikt podczas aktualizacji. Pędź po programistów! :-(');
+ } else if (xhr.status == 500) {
+ messageCenter.addMessage('critical', 'Błąd serwera. Pędź po programistów! :-(');
+ }
+ this.set('state', 'synced');
+ this.set('updateData', null);
+ },
- merge: function(message) {
- this.set('state', 'loading');
- messageCenter.addMessage('info', 'Scalam dokument z głównym repozytorium...');
- $.ajax({
- url: this.data.merge_url,
- type: 'post',
- dataType: 'json',
- data: {
- type: 'share',
- target_revision: this.data.user_revision,
- message: message
- },
- complete: this.mergeCompleted.bind(this),
- success: function(data) { this.set('mergeData', data); }.bind(this)
- });
- },
+ merge: function(message) {
+ this.set('state', 'loading');
+ messageCenter.addMessage('info', 'Scalam dokument z głównym repozytorium...');
+ $.ajax({
+ url: this.data.merge_url,
+ type: 'post',
+ dataType: 'json',
+ data: {
+ type: 'share',
+ target_revision: this.data.user_revision,
+ message: message
+ },
+ complete: this.mergeCompleted.bind(this),
+ success: function(data) {
+ this.set('mergeData', data);
+ }.bind(this)
+ });
+ },
- mergeCompleted: function(xhr, textStatus) {
- console.log(xhr.status, textStatus);
- if (xhr.status == 200) { // Sukces
- this.data.user_revision = this.get('mergeData').revision;
- for (var key in this.contentModels) {
- this.contentModels[key].set('revision', this.data.user_revision);
- this.contentModels[key].set('state', 'empty');
- }
- messageCenter.addMessage('success', 'Scaliłem dokument z głównym repozytorium :-)');
- } else if (xhr.status == 202) { // Wygenerowano PullRequest
- messageCenter.addMessage('success', 'Wysłałem prośbę o scalenie dokumentu z głównym repozytorium.');
- } else if (xhr.status == 204) { // Nic nie zmieniono
- messageCenter.addMessage('info', 'Nic się nie zmieniło od ostatniego scalenia. Po co mam scalać?');
- } else if (xhr.status == 409) { // Konflikt podczas operacji
- messageCenter.addMessage('error', 'Wystąpił konflikt podczas scalania. Pędź po programistów! :-(');
- } else if (xhr.status == 500) {
- messageCenter.addMessage('critical', 'Błąd serwera. Pędź po programistów! :-(');
- }
- this.set('state', 'synced');
- this.set('mergeData', null);
- },
+ mergeCompleted: function(xhr, textStatus) {
+ console.log(xhr.status, textStatus);
+ if (xhr.status == 200) { // Sukces
+ this.data.user_revision = this.get('mergeData').revision;
+ for (var key in this.contentModels) {
+ this.contentModels[key].set('revision', this.data.user_revision);
+ this.contentModels[key].set('state', 'empty');
+ }
+ messageCenter.addMessage('success', 'Scaliłem dokument z głównym repozytorium :-)');
+ } else if (xhr.status == 202) { // Wygenerowano PullRequest
+ messageCenter.addMessage('success', 'Wysłałem prośbę o scalenie dokumentu z głównym repozytorium.');
+ } else if (xhr.status == 204) { // Nic nie zmieniono
+ messageCenter.addMessage('info', 'Nic się nie zmieniło od ostatniego scalenia. Po co mam scalać?');
+ } else if (xhr.status == 409) { // Konflikt podczas operacji
+ messageCenter.addMessage('error', 'Wystąpił konflikt podczas scalania. Pędź po programistów! :-(');
+ } else if (xhr.status == 500) {
+ messageCenter.addMessage('critical', 'Błąd serwera. Pędź po programistów! :-(');
+ }
+ this.set('state', 'synced');
+ this.set('mergeData', null);
+ },
- // For debbuging
- set: function(property, value) {
- if (property == 'state') {
- console.log(this.description(), ':', property, '=', value);
+ // For debbuging
+ set: function(property, value) {
+ if (property == 'state') {
+ console.log(this.description(), ':', property, '=', value);
+ }
+ return this._super(property, value);
}
- return this._super(property, value);
- }
});
$(function()
{
- documentsUrl = $('#api-base-url').text() + '/';
- toolbarUrl = $('#api-toolbar-url').text();
+ documentsUrl = $('#api-base-url').text() + '/';
+ toolbarUrl = $('#api-toolbar-url').text();
- doc = new Editor.DocumentModel();
- var editor = new EditorView('#body-wrap', doc);
- editor.freeze();
+ doc = new Editor.DocumentModel();
+ var editor = new EditorView('#body-wrap', doc);
+ editor.freeze();
- var flashView = new FlashView('#flashview', messageCenter);
- var splitView = new SplitView('#splitview', doc);
+ var flashView = new FlashView('#flashview', messageCenter);
+ var splitView = new SplitView('#splitview', doc);
- leftPanelView = new PanelContainerView('#left-panel-container', doc);
- rightPanelContainer = new PanelContainerView('#right-panel-container', doc);
+ leftPanelView = new PanelContainerView('#left-panel-container', doc);
+ rightPanelContainer = new PanelContainerView('#right-panel-container', doc);
});