smartxml: Improving get/set data api
[fnpeditor.git] / src / smartxml / smartxml.js
index 477166b..1876076 100644 (file)
@@ -1,6 +1,9 @@
 define([
-    'libs/jquery'
-], function($) {
+    'libs/jquery',
+    'libs/underscore',
+    'libs/backbone',
+    'smartxml/events'
+], function($, _, Backbone, events) {
     
 'use strict';
 
@@ -38,6 +41,11 @@ $.extend(DocumentNode.prototype, {
         }
         node.append(this);
     },
+
+    triggerChangeEvent: function(type, metaData) {
+        var event = new events.ChangeEvent(type, $.extend({node: this}, metaData || {}));
+        this.document.trigger('change', event);
+    },
 });
 
 var ElementNode = function(nativeNode, document) {
@@ -47,6 +55,22 @@ var ElementNode = function(nativeNode, document) {
 $.extend(ElementNode.prototype, DocumentNode.prototype, {
     nodeType: Node.ELEMENT_NODE,
 
+    setData: function(key, value) {
+        if(value !== undefined) {
+            this._$.data(key, value);
+        } else {
+            this._$.removeData(_.keys(this._$.data()));
+            this._$.data(key);
+        }
+    },
+
+    getData: function(key) {
+        if(key) {
+            return this._$.data(key);
+        }
+        return this._$.data();
+    },
+
     getTagName: function() {
         return this.nativeNode.tagName.toLowerCase();
     },
@@ -74,7 +98,9 @@ $.extend(ElementNode.prototype, DocumentNode.prototype, {
     },
 
     setAttr: function(name, value) {
+        var oldVal = this.getAttr(name);
         this._$.attr(name, value);
+        this.triggerChangeEvent('nodeAttrChange', {attr: name, oldVal: oldVal, newVal: value});
     },
 
     getAttrs: function() {
@@ -178,7 +204,7 @@ var Document = function(xml) {
         return $document[0];
     }});
 };
-$.extend(Document.prototype, {
+$.extend(Document.prototype, Backbone.Events, {
     ElementNodeFactory: ElementNode,
     TextNodeFactory: TextNode,