Uproszczenie implementacji wzorca observer.
[redakcja.git] / project / static / js / views / xml.js
index 4ed9fc0..333b1c2 100644 (file)
@@ -1,38 +1,67 @@
-/*global Class CodeMirror render_template panels */
-var XMLView = Class.extend({
+/*global View CodeMirror render_template panels */
+var XMLView = View.extend({
   element: null,
+  model: null,
   template: 'xml-view-template',
   editor: null,
   
-  init: function(element, template) {
+  init: function(element, model, template) {
     this.element = $(element);
+    this.model = $(model).get(0);
     this.template = template || this.template;
     this.element.html(render_template(this.template, {}));
     
-    var self = this;
-       this.editor = CodeMirror.fromTextArea($('textarea', this.element)[0], {
+    this.model
+      .addObserver(this, 'xml-freeze')
+      .addObserver(this, 'xml-unfreeze');
+    
+    this.freeze('Ładowanie edytora...');
+       this.editor = new CodeMirror($('.xmlview', this.element).get(0), {
       parserfile: 'parsexml.js',
       path: "/static/js/lib/codemirror/",
       stylesheet: "/static/css/xmlcolors.css",
       parserConfig: {useHTMLKludges: false},
-      // onChange: function() {
-      //        self.fireEvent('contentChanged');
-      // },
-      initCallback: function(editor) {
-        console.log('whatever');
-        // editor.grabKeys(
-        //   $.fbind(self, self.hotkeyPressed),
-        //   $.fbind(self, self.isHotkey)
-        // );
-        editor.setCode('Ala ma kota a kot ma Alę!');
-      }
+      textWrapping: false,
+      tabMode: 'spaces',
+      indentUnit: 0,
+      onChange: this.changed.bind(this),
+      initCallback: this.editorDidLoad.bind(this)
     });
-    console.log(this.editor);
-    $(this.editor.frame).css({width: '100%', height: '100%'});
+  },
+  
+  changed: function() {
+    this.model.set('text', this.editor.getCode());
+  },
+  
+  editorDidLoad: function(editor) {
+    editor.setCode('Ładowanie edytora...');
+    $(editor.frame).css({width: '100%', height: '100%'});
+    this.editor.setCode(this.model.get('text'));
+    this.model.addObserver(this, 'text-changed');
+    this.unfreeze();
+    // editor.grabKeys(
+    //   $.fbind(self, self.hotkeyPressed),
+    //   $.fbind(self, self.isHotkey)
+    // );
+  },
+  
+  handle: function(event, data) {
+    console.log('handle', this, event, data);
+    if (event == 'text-changed') {
+      this.freeze('Niezsynchronizowany');
+      // this.unfreeze();      
+    } else if (event == 'xml-freeze') {
+      this.freeze('Ładowanie XMLa...');
+    } else if (event == 'xml-unfreeze') {
+      this.editor.setCode(this.model.get('text'));
+      this.unfreeze();
+    }
   },
   
   dispose: function() {
-    
+    this.model.removeObserver(this);
+    $(this.editor.frame).remove();
+    this._super();
   }
 });