HTML View load&save
[redakcja.git] / project / static / js / models.js
index f6725a5..d183f99 100644 (file)
@@ -1,7 +1,4 @@
-/*globals Editor fileId SplitView PanelContainerView EditorView*/
-var documentsUrl = '/api/documents/';
-
-
+/*globals Editor fileId SplitView PanelContainerView EditorView FlashView messageCenter*/
 Editor.Model = Editor.Object.extend({
   synced: false,
   data: null
@@ -9,8 +6,7 @@ Editor.Model = Editor.Object.extend({
 
 
 Editor.ToolbarButtonsModel = Editor.Model.extend({
-  _className: 'Editor.ToolbarButtonsModel',
-  serverURL: '/api/toolbar/buttons',
+  className: 'Editor.ToolbarButtonsModel',  
   buttons: {},
   
   init: function() {
@@ -20,7 +16,7 @@ Editor.ToolbarButtonsModel = Editor.Model.extend({
   load: function() {
     if (!this.get('buttons').length) {
       $.ajax({
-        url: this.serverURL,
+        url: toolbarUrl,
         dataType: 'json',
         success: this.loadSucceeded.bind(this)
       });
@@ -35,6 +31,8 @@ Editor.ToolbarButtonsModel = Editor.Model.extend({
 
 // Stany modelu:
 //
+//                  -> error -> loading
+//                 /
 // empty -> loading -> synced -> unsynced -> loading
 //                           \
 //                            -> dirty -> updating -> updated -> synced
@@ -45,33 +43,53 @@ Editor.XMLModel = Editor.Model.extend({
   data: '',
   state: 'empty',
   
-  init: function(serverURL) {
+  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() {
-    if (this.get('state') == 'empty') {
+  load: function(force) {
+    if (force || this.get('state') == 'empty') {
       this.set('state', 'loading');
       $.ajax({
         url: this.serverURL,
         dataType: 'text',
-        success: this.loadingSucceeded.bind(this)
+        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');
+  },
+  
+  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');    
+  },
+  
   update: function(message) {
     if (this.get('state') == 'dirty') {
       this.set('state', 'updating');
       
       var payload = {
-        contents: this.get('data')
+        contents: this.get('data'),
+        revision: this.get('revision')
       };
       if (message) {
         payload.message = message;
@@ -79,7 +97,7 @@ Editor.XMLModel = Editor.Model.extend({
       
       $.ajax({
         url: this.serverURL,
-        type: 'put',
+        type: 'post',
         dataType: 'json',
         data: payload,
         success: this.updatingSucceeded.bind(this),
@@ -90,10 +108,11 @@ Editor.XMLModel = Editor.Model.extend({
     return false;
   },
   
-  updatingSucceeded: function() {
+  updatingSucceeded: function(data) {
     if (this.get('state') != 'updating') {
       alert('erroneous state:', this.get('state'));
     }
+    this.set('revision', data.revision);
     this.set('state', 'updated');
   },
   
@@ -101,6 +120,7 @@ Editor.XMLModel = Editor.Model.extend({
     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');
   },
   
@@ -118,14 +138,6 @@ Editor.XMLModel = Editor.Model.extend({
     }
   },
   
-  loadingSucceeded: function(data) {
-    if (this.get('state') != 'loading') {
-      alert('erroneous state:', this.get('state'));
-    }
-    this.set('data', data);
-    this.set('state', 'synced');
-  },
-  
   dispose: function() {
     this.removeObserver(this);
     this._super();
@@ -135,23 +147,34 @@ Editor.XMLModel = Editor.Model.extend({
 
 Editor.HTMLModel = Editor.Model.extend({
   _className: 'Editor.HTMLModel',
-  serverURL: null,
-  data: '',
+  dataURL: null,
+  htmlURL: null,
+  renderURL: null,
+  displaData: '',
+  xmlParts: {},
   state: 'empty',
   
-  init: function(serverURL) {
+  init: function(htmlURL, revision, dataURL) {
     this._super();
     this.set('state', 'empty');
-    this.serverURL = serverURL;
+    this.set('revision', revision);
+    this.htmlURL = htmlURL;
+    this.dataURL = dataURL;
+    this.renderURL = "http://localhost:8000/api/render";
+    this.xmlParts = {};
   },
   
-  load: function() {
-    if (this.get('state') == 'empty') {
+  load: function(force) {
+    if (force || this.get('state') == 'empty') {
       this.set('state', 'loading');
+
+      // load the transformed data
       $.ajax({
-        url: this.serverURL,
+        url: this.htmlURL,
         dataType: 'text',
-        success: this.loadingSucceeded.bind(this)
+        data: {revision: this.get('revision')},
+        success: this.loadingSucceeded.bind(this),
+        error: this.loadingFailed.bind(this)
       });
     }
   },
@@ -163,6 +186,117 @@ Editor.HTMLModel = Editor.Model.extend({
     this.set('data', data);
     this.set('state', 'synced');
   },
+  
+  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');    
+  },
+
+  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) {
@@ -185,11 +319,11 @@ Editor.ImageGalleryModel = Editor.Model.extend({
     this.set('state', 'empty');
     this.serverURL = serverURL;
     // olewać data    
-    this.pages = []
+    this.pages = [];
   },
 
-  load: function() {
-    if (this.get('state') == 'empty') {
+  load: function(force) {
+    if (force || this.get('state') == 'empty') {
       this.set('state', 'loading');
       $.ajax({
         url: this.serverURL,
@@ -204,15 +338,15 @@ Editor.ImageGalleryModel = Editor.Model.extend({
       alert('erroneous state:', this.get('state'));
     }
 
-    $.log('galleries:', data);
+    console.log('galleries:', data);
 
-    if (data.length == 0)
+    if (data.length === 0) {
         this.set('data', []);
-    else {
-        $.log('dupa');
+    else {
+        console.log('dupa');
         this.set('data', data[0].pages);
-    }
-    
+    }  
+
     this.set('state', 'synced');
   },
 
@@ -227,7 +361,7 @@ Editor.ImageGalleryModel = Editor.Model.extend({
 
 Editor.DocumentModel = Editor.Model.extend({
   _className: 'Editor.DocumentModel',
-  data: null, // name, text_url, latest_rev, latest_shared_rev, parts_url, dc_url, size
+  data: null, // name, text_url, user_revision, latest_shared_rev, parts_url, dc_url, size, merge_url
   contentModels: {},
   state: 'empty',
   
@@ -253,8 +387,8 @@ Editor.DocumentModel = Editor.Model.extend({
     this.set('data', data);
     this.set('state', 'synced');
     this.contentModels = {
-      'xml': new Editor.XMLModel(data.text_url),
-      'html': new Editor.HTMLModel(data.html_url),
+      '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) {
@@ -275,7 +409,14 @@ Editor.DocumentModel = Editor.Model.extend({
       for (key in this.contentModels) {
         if (this.contentModels[key].guid() == contentModel.guid()) {
           this.contentModels[key].set('state', 'synced');
-        } else if (this.contentModels[key].get('state') == 'unsynced') {
+          this.data.user_revision = this.contentModels[key].get('revision');
+          messageCenter.addMessage('info', 'Uaktualnienie dokumentu do wersji ' + this.data.user_revision,
+            'Uaktualnienie dokumentu do wersji ' + this.data.user_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');
         }
       }
@@ -292,11 +433,70 @@ Editor.DocumentModel = Editor.Model.extend({
   },
   
   update: function() {
-    
+    this.set('state', 'loading');
+    $.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)
+    });
   },
   
-  merge: function() {
-    
+  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');
+      }
+    } else if (xhr.status == 202) { // Wygenerowano PullRequest (tutaj?)
+    } else if (xhr.status == 204) { // Nic nie zmieniono
+    } else if (xhr.status == 409) { // Konflikt podczas operacji
+    } 
+    this.set('state', 'synced');
+    this.set('updateData', null);
+  },
+  
+  merge: function(message) {
+    this.set('state', 'loading');
+    $.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('info', 'Uaktualnienie dokumentu do wersji ' + this.get('mergeData').revision,
+        'Uaktualnienie dokumentu do wersji ' + this.get('mergeData').revision);
+    } else if (xhr.status == 202) { // Wygenerowano PullRequest
+    } else if (xhr.status == 204) { // Nic nie zmieniono
+    } else if (xhr.status == 409) { // Konflikt podczas operacji
+    }
+    this.set('state', 'synced');
+    this.set('mergeData', null);
   },
   
   // For debbuging
@@ -311,11 +511,18 @@ Editor.DocumentModel = Editor.Model.extend({
 
 var leftPanelView, rightPanelContainer, doc;
 
-$(function() {
+$(function()
+{
+  documentsUrl = $('#api-base-url').text() + '/';
+  toolbarUrl = $('#api-toolbar-url').text();
+
   doc = new Editor.DocumentModel();
-  var editor = new EditorView('#body-wrap', doc);
+  var editor = new EditorView('#body-wrap', doc);  
   editor.freeze();
+
+  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);
+  rightPanelContainer = new PanelContainerView('#right-panel-container', doc); 
 });