throw new Error('undefined document for a node');
}
this.document = document;
- this.nativeNode = nativeNode;
- this._$ = $(nativeNode);
+ this._setNativeNode(nativeNode);
+
};
$.extend(DocumentNode.prototype, {
+ _setNativeNode: function(nativeNode) {
+ this.nativeNode = nativeNode;
+ this._$ = $(nativeNode);
+ },
+
detach: function() { this._$.detach(); },
sameNode: function(otherNode) {
return this._$.contents().index(node._$);
},
+ setTag: function(tagName) {
+ var node = this.document.createElementNode({tagName: tagName}),
+ oldTagName = this.getTagName();
+
+ this.getAttrs().forEach(function(attribute) {
+ node.setAttr(attribute.name, attribute.value, true);
+ });
+ node.setData(this.getData());
+
+ this._setNativeNode(node._$[0]);
+ this.triggerChangeEvent('nodeTagChange', {oldTagName: oldTagName, newTagName: this.getTagName()});
+ },
+
getAttr: function(name) {
return this._$.attr(name);
},
- setAttr: function(name, value) {
+ setAttr: function(name, value, silent) {
var oldVal = this.getAttr(name);
this._$.attr(name, value);
- this.triggerChangeEvent('nodeAttrChange', {attr: name, oldVal: oldVal, newVal: value});
+ if(!silent) {
+ this.triggerChangeEvent('nodeAttrChange', {attr: name, oldVal: oldVal, newVal: value});
+ }
},
getAttrs: function() {
ElementNodeFactory: ElementNode,
TextNodeFactory: TextNode,
- createElementNode: function(nativeNode) {
- return new this.ElementNodeFactory(nativeNode, this);
+ createElementNode: function(from) {
+ if(!(from instanceof HTMLElement)) {
+ from = $('<' + from.tagName + '>');
+ }
+ return new this.ElementNodeFactory(from, this);
},
createTextNode: function(nativeNode) {
expect(node.getData()).to.eql({key1: 'value1', key2: 'value2'});
});
});
+
+ describe('Changing node tag', function() {
+ it('keeps custom data', function() {
+ var node = elementNodeFromXML('<div></div>');
+
+ node.setData('key', 'value');
+ node.setTag('header');
+
+ expect(node.getTagName()).to.equal('header');
+ expect(node.getData()).to.eql({key: 'value'});
+ });
+ });
});
describe('Manipulations', function() {