Fix in the print button.
[redakcja.git] / project / static / js / views / html.js
index 41c3497..a8eb4d0 100644 (file)
@@ -11,26 +11,44 @@ var HTMLView = View.extend({
     
     this.model
       .addObserver(this, 'data', this.modelDataChanged.bind(this))
-      .addObserver(this, 'synced', this.modelSyncChanged.bind(this));
+      .addObserver(this, 'state', this.modelStateChanged.bind(this));
       
     $('.htmlview', this.element).html(this.model.get('data'));
-    if (!this.model.get('synced')) {
-      this.parent.freeze('Niezsynchronizowany...');
-      this.model.load();
-    }
+    this.modelStateChanged('state', this.model.get('state'));
+    this.model.load();
   },
   
   modelDataChanged: function(property, value) {
     $('.htmlview', this.element).html(value);
+
+    var base = this.$printLink.attr('ui:baseref');
+    this.$printLink.attr('href', base + "?revision=" + this.model.get('revision'));
   },
   
-  modelSyncChanged: function(property, value) {
-    if (value) {
-      this.parent.unfreeze();
-    } else {
-      this.parent.freeze('Niezsynchronizowany...');
+  modelStateChanged: function(property, value) {
+    if (value == 'synced' || value == 'dirty') {
+      this.unfreeze();
+    } else if (value == 'unsynced') {
+      this.freeze('Niezsynchronizowany...');
+    } else if (value == 'loading') {
+      this.freeze('Ɓadowanie...');
+    } else if (value == 'saving') {
+      this.freeze('Zapisywanie...');
+    } else if (value == 'error') {
+      this.freeze(this.model.get('error'));
     }
   },
+
+
+  render: function() {
+      if(this.$printLink) this.$printLink.unbind();
+      this._super();
+      this.$printLink = $('.html-print-link', this.element);
+  },
+  
+  reload: function() {
+    this.model.load(true);
+  },
   
   dispose: function() {
     this.model.removeObserver(this);