6 'smartxml/transformations'
7 ], function($, _, Backbone, events, transformations) {
12 var TEXT_NODE = Node.TEXT_NODE;
15 var INSERTION = function(implementation) {
16 var toret = function(node) {
17 var insertion = this.getNodeInsertion(node),
18 nodeWasContained = this.document.containsNode(insertion.ofNode),
20 if(!(this.document.containsNode(this))) {
21 nodeParent = insertion.ofNode.parent();
23 implementation.call(this, insertion.ofNode.nativeNode);
24 this.triggerChangeEvent(insertion.insertsNew ? 'nodeAdded' : 'nodeMoved', {node: insertion.ofNode}, nodeParent, nodeWasContained);
25 return insertion.ofNode;
30 var DocumentNode = function(nativeNode, document) {
32 throw new Error('undefined document for a node');
34 this.document = document;
35 this._setNativeNode(nativeNode);
39 $.extend(DocumentNode.prototype, {
41 transform: function(Transformation, args) {
42 var transformation = new Transformation(this.document, this, args);
43 return this.document.transform(transformation);
46 _setNativeNode: function(nativeNode) {
47 this.nativeNode = nativeNode;
48 this._$ = $(nativeNode);
52 var clone = this._$.clone(true, true);
53 // clone.find('*').addBack().each(function() {
55 // if(n.data('canvasElement')) {
56 // n.data('canvasElement', $.extend(true, {}, n.data('canvasElement')));
57 // n.data('canvasElement').$element = n.data('canvasElement').$element.clone(true, true);
60 return this.document.createDocumentNode(clone[0]);
63 getPath: function(ancestor) {
64 var nodePath = [this].concat(this.parents()),
66 ancestor = ancestor || this.document.root;
68 nodePath.some(function(node, i) {
69 if(node.sameNode(ancestor)) {
75 if(idx !== 'undefined') {
76 nodePath = nodePath.slice(0, idx);
78 toret = nodePath.map(function(node) {return node.getIndex(); });
84 return this.document.root.sameNode(this);
88 var parent = this.parent();
90 this.triggerChangeEvent('nodeDetached', {parent: parent});
94 replaceWith: function(node) {
97 return this.document.replaceRoot(node);
99 toret = this.after(node);
104 sameNode: function(otherNode) {
105 return !!(otherNode) && this.nativeNode === otherNode.nativeNode;
109 var parentNode = this.nativeNode.parentNode;
110 if(parentNode && parentNode.nodeType === Node.ELEMENT_NODE) {
111 return this.document.createDocumentNode(parentNode);
116 parents: function() {
117 var parent = this.parent(),
118 parents = parent ? parent.parents() : [];
120 parents.unshift(parent);
126 var myIdx = this.getIndex();
127 return myIdx > 0 ? this.parent().contents()[myIdx-1] : null;
134 var myIdx = this.getIndex(),
135 parentContents = this.parent().contents();
136 return myIdx < parentContents.length - 1 ? parentContents[myIdx+1] : null;
139 isSurroundedByTextElements: function() {
140 var prev = this.prev(),
142 return prev && (prev.nodeType === Node.TEXT_NODE) && next && (next.nodeType === Node.TEXT_NODE);
145 after: INSERTION(function(nativeNode) {
146 return this._$.after(nativeNode);
149 before: INSERTION(function(nativeNode) {
150 return this._$.before(nativeNode);
153 wrapWith: function(node) {
154 var insertion = this.getNodeInsertion(node);
156 this.before(insertion.ofNode);
158 insertion.ofNode.append(this);
159 return insertion.ofNode;
163 * Removes parent of a node if node has no siblings.
169 var parent = this.parent(),
171 if(parent.contents().length === 1) {
172 grandParent = parent.parent();
173 parent.unwrapContent();
178 triggerChangeEvent: function(type, metaData, origParent, nodeWasContained) {
179 var node = (metaData && metaData.node) ? metaData.node : this,
180 event = new events.ChangeEvent(type, $.extend({node: node}, metaData || {}));
181 if(type === 'nodeDetached' || this.document.containsNode(event.meta.node)) {
182 this.document.trigger('change', event);
184 if((type === 'nodeAdded' || type === 'nodeMoved') && !this.document.containsNode(this) && nodeWasContained) {
185 event = new events.ChangeEvent('nodeDetached', {node: node, parent: origParent});
186 this.document.trigger('change', event);
190 getNodeInsertion: function(node) {
191 return this.document.getNodeInsertion(node);
194 getIndex: function() {
198 return this.parent().indexOf(this);
202 var ElementNode = function(nativeNode, document) {
203 DocumentNode.call(this, nativeNode, document);
205 ElementNode.prototype = Object.create(DocumentNode.prototype);
207 $.extend(ElementNode.prototype, {
208 nodeType: Node.ELEMENT_NODE,
212 if(this.parent() && this.isSurroundedByTextElements()) {
214 this.prev().appendText(next.getText());
217 return DocumentNode.prototype.detach.call(this);
220 setData: function(key, value) {
221 if(value !== undefined) {
222 this._$.data(key, value);
224 this._$.removeData(_.keys(this._$.data()));
229 getData: function(key) {
231 return this._$.data(key);
233 return this._$.data();
236 getTagName: function() {
237 return this.nativeNode.tagName.toLowerCase();
240 contents: function(selector) {
242 document = this.document;
244 this._$.children(selector).each(function() {
245 toret.push(document.createDocumentNode(this));
248 this._$.contents().each(function() {
249 toret.push(document.createDocumentNode(this));
255 indexOf: function(node) {
256 return this._$.contents().index(node._$);
259 setTag: function(tagName) {
260 var node = this.document.createDocumentNode({tagName: tagName}),
261 oldTagName = this.getTagName(),
262 myContents = this._$.contents();
264 this.getAttrs().forEach(function(attribute) {
265 node.setAttr(attribute.name, attribute.value, true);
267 node.setData(this.getData());
269 if(this.sameNode(this.document.root)) {
270 defineDocumentProperties(this.document, node._$);
272 this._$.replaceWith(node._$);
273 this._setNativeNode(node._$[0]);
274 this._$.append(myContents);
275 this.triggerChangeEvent('nodeTagChange', {oldTagName: oldTagName, newTagName: this.getTagName()});
278 getAttr: function(name) {
279 return this._$.attr(name);
282 setAttr: function(name, value, silent) {
283 var oldVal = this.getAttr(name);
284 this._$.attr(name, value);
286 this.triggerChangeEvent('nodeAttrChange', {attr: name, oldVal: oldVal, newVal: value});
290 getAttrs: function() {
292 for(var i = 0; i < this.nativeNode.attributes.length; i++) {
293 toret.push(this.nativeNode.attributes[i]);
298 append: INSERTION(function(nativeNode) {
299 this._$.append(nativeNode);
302 prepend: INSERTION(function(nativeNode) {
303 this._$.prepend(nativeNode);
306 insertAtIndex: function(nativeNode, index) {
307 var contents = this.contents();
308 if(index < contents.length) {
309 return contents[index].before(nativeNode);
310 } else if(index === contents.length) {
311 return this.append(nativeNode);
315 unwrapContent: function() {
316 var parent = this.parent();
321 var myContents = this.contents(),
322 myIdx = parent.indexOf(this);
325 if(myContents.length === 0) {
326 return this.detach();
329 var prev = this.prev(),
331 moveLeftRange, moveRightRange, leftMerged;
333 if(prev && (prev.nodeType === TEXT_NODE) && (myContents[0].nodeType === TEXT_NODE)) {
334 prev.appendText(myContents[0].getText());
335 myContents[0].detach();
336 moveLeftRange = true;
342 if(!(leftMerged && myContents.length === 1)) {
343 var lastContents = _.last(myContents);
344 if(next && (next.nodeType === TEXT_NODE) && (lastContents.nodeType === TEXT_NODE)) {
345 next.prependText(lastContents.getText());
346 lastContents.detach();
347 moveRightRange = true;
351 var childrenLength = this.contents().length;
352 this.contents().forEach(function(child) {
359 element1: parent.contents()[myIdx + (moveLeftRange ? -1 : 0)],
360 element2: parent.contents()[myIdx + childrenLength-1 + (moveRightRange ? 1 : 0)]
364 wrapText: function(params) {
365 return this.document._wrapText(_.extend({inside: this}, params));
369 var wrapper = $('<div>');
370 wrapper.append(this._getXMLDOMToDump());
371 return wrapper.html();
374 _getXMLDOMToDump: function() {
379 var TextNode = function(nativeNode, document) {
380 DocumentNode.call(this, nativeNode, document);
382 TextNode.prototype = Object.create(DocumentNode.prototype);
384 $.extend(TextNode.prototype, {
385 nodeType: Node.TEXT_NODE,
387 getText: function() {
388 return this.nativeNode.data;
391 setText: function(text) {
392 //console.log('smartxml: ' + text);
393 this.nativeNode.data = text;
394 this.triggerTextChangeEvent();
397 appendText: function(text) {
398 this.nativeNode.data = this.nativeNode.data + text;
399 this.triggerTextChangeEvent();
402 prependText: function(text) {
403 this.nativeNode.data = text + this.nativeNode.data;
404 this.triggerTextChangeEvent();
407 wrapWith: function(desc) {
408 if(typeof desc.start === 'number' && typeof desc.end === 'number') {
409 return this.document._wrapText({
410 inside: this.parent(),
411 textNodeIdx: this.parent().indexOf(this),
412 offsetStart: Math.min(desc.start, desc.end),
413 offsetEnd: Math.max(desc.start, desc.end),
414 _with: {tagName: desc.tagName, attrs: desc.attrs}
417 return DocumentNode.prototype.wrapWith.call(this, desc);
421 split: function(params) {
422 var parentElement = this.parent(),
424 succeedingChildren = [],
425 prefix = this.getText().substr(0, params.offset),
426 suffix = this.getText().substr(params.offset);
428 parentElement.contents().forEach(function(child) {
430 succeedingChildren.push(child);
432 if(child.sameNode(this)) {
437 if(prefix.length > 0) {
438 this.setText(prefix);
445 parentElement.getAttrs().forEach(function(attr) {attrs[attr.name] = attr.value; });
446 var newElement = this.document.createDocumentNode({tagName: parentElement.getTagName(), attrs: attrs});
447 parentElement.after(newElement);
449 if(suffix.length > 0) {
450 newElement.append({text: suffix});
452 succeedingChildren.forEach(function(child) {
453 newElement.append(child);
456 return {first: parentElement, second: newElement};
459 triggerTextChangeEvent: function() {
460 var event = new events.ChangeEvent('nodeTextChange', {node: this});
461 this.document.trigger('change', event);
466 var parseXML = function(xml) {
467 return $($.trim(xml))[0];
470 var registerTransformation = function(desc, name, target) {
471 var Transformation = transformations.createContextTransformation(desc, name);
472 target[name] = function(args) {
474 return instance.transform(Transformation, args);
478 var registerMethod = function(methodName, method, target) {
479 if(target[methodName]) {
480 throw new Error('Cannot extend {target} with method name {methodName}. Name already exists.'
481 .replace('{target}', target)
482 .replace('{methodName}', methodName)
485 target[methodName] = method;
489 var Document = function(xml) {
493 this._transformationLevel = 0;
495 this._nodeMethods = {};
496 this._nodeTransformations = {};
499 $.extend(Document.prototype, Backbone.Events, {
500 ElementNodeFactory: ElementNode,
501 TextNodeFactory: TextNode,
503 createDocumentNode: function(from) {
504 if(!(from instanceof Node)) {
505 if(from.text !== undefined) {
506 /* globals document */
507 from = document.createTextNode(from.text);
509 var node = $('<' + from.tagName + '>');
511 _.keys(from.attrs || {}).forEach(function(key) {
512 node.attr(key, from.attrs[key]);
519 if(from.nodeType === Node.TEXT_NODE) {
520 Factory = this.TextNodeFactory;
521 } else if(from.nodeType === Node.ELEMENT_NODE) {
522 Factory = this.ElementNodeFactory;
524 var toret = new Factory(from, this);
525 _.extend(toret, this._nodeMethods);
526 _.extend(toret, this._nodeTransformations);
530 loadXML: function(xml, options) {
531 options = options || {};
532 defineDocumentProperties(this, $(parseXML(xml)));
533 if(!options.silent) {
534 this.trigger('contentSet');
539 return this.root.toXML();
542 containsNode: function(node) {
543 return this.root && (node.nativeNode === this.root.nativeNode || node._$.parents().index(this.root._$) !== -1);
546 wrapNodes: function(params) {
547 if(!(params.node1.parent().sameNode(params.node2.parent()))) {
548 throw new Error('Wrapping non-sibling nodes not supported.');
551 var parent = params.node1.parent(),
552 parentContents = parent.contents(),
553 wrapper = this.createDocumentNode({
554 tagName: params._with.tagName,
555 attrs: params._with.attrs}),
556 idx1 = parent.indexOf(params.node1),
557 idx2 = parent.indexOf(params.node2);
565 var insertingMethod, insertingTarget;
567 insertingMethod = 'prepend';
568 insertingTarget = parent;
570 insertingMethod = 'after';
571 insertingTarget = parentContents[idx1-1];
574 for(var i = idx1; i <= idx2; i++) {
575 wrapper.append(parentContents[i].detach());
578 insertingTarget[insertingMethod](wrapper);
582 getSiblingParents: function(params) {
583 var parents1 = [params.node1].concat(params.node1.parents()).reverse(),
584 parents2 = [params.node2].concat(params.node2.parents()).reverse(),
585 noSiblingParents = null;
587 if(parents1.length === 0 || parents2.length === 0 || !(parents1[0].sameNode(parents2[0]))) {
588 return noSiblingParents;
592 for(i = 0; i < Math.min(parents1.length, parents2.length); i++) {
593 if(parents1[i].sameNode(parents2[i])) {
598 return {node1: parents1[i], node2: parents2[i]};
601 _wrapText: function(params) {
602 params = _.extend({textNodeIdx: 0}, params);
603 if(typeof params.textNodeIdx === 'number') {
604 params.textNodeIdx = [params.textNodeIdx];
607 var contentsInside = params.inside.contents(),
608 idx1 = Math.min.apply(Math, params.textNodeIdx),
609 idx2 = Math.max.apply(Math, params.textNodeIdx),
610 textNode1 = contentsInside[idx1],
611 textNode2 = contentsInside[idx2],
612 sameNode = textNode1.sameNode(textNode2),
613 prefixOutside = textNode1.getText().substr(0, params.offsetStart),
614 prefixInside = textNode1.getText().substr(params.offsetStart),
615 suffixInside = textNode2.getText().substr(0, params.offsetEnd),
616 suffixOutside = textNode2.getText().substr(params.offsetEnd)
619 if(!(textNode1.parent().sameNode(textNode2.parent()))) {
620 throw new Error('Wrapping text in non-sibling text nodes not supported.');
623 var wrapperElement = this.createDocumentNode({tagName: params._with.tagName, attrs: params._with.attrs});
624 textNode1.after(wrapperElement);
627 if(prefixOutside.length > 0) {
628 wrapperElement.before({text:prefixOutside});
631 var core = textNode1.getText().substr(params.offsetStart, params.offsetEnd - params.offsetStart);
632 wrapperElement.append({text: core});
635 if(prefixInside.length > 0) {
636 wrapperElement.append({text: prefixInside});
638 for(var i = idx1 + 1; i < idx2; i++) {
639 wrapperElement.append(contentsInside[i]);
641 if(suffixInside.length > 0) {
642 wrapperElement.append({text: suffixInside});
645 if(suffixOutside.length > 0) {
646 wrapperElement.after({text: suffixOutside});
648 return wrapperElement;
651 trigger: function() {
652 //console.log('trigger: ' + arguments[0] + (arguments[1] ? ', ' + arguments[1].type : ''));
653 Backbone.Events.trigger.apply(this, arguments);
656 getNodeInsertion: function(node) {
658 if(node instanceof DocumentNode) {
659 insertion.ofNode = node;
660 insertion.insertsNew = !this.containsNode(node);
662 insertion.ofNode = this.createDocumentNode(node);
663 insertion.insertsNew = true;
668 replaceRoot: function(node) {
669 var insertion = this.getNodeInsertion(node);
671 defineDocumentProperties(this, insertion.ofNode._$);
672 insertion.ofNode.triggerChangeEvent('nodeAdded');
673 return insertion.ofNode;
676 registerMethod: function(methodName, method) {
677 registerMethod(methodName, method, this);
680 registerNodeMethod: function(methodName, method) {
681 registerMethod(methodName, method, this._nodeMethods);
684 registerDocumentTransformation: function(desc, name) {
685 registerTransformation(desc, name, this);
688 registerNodeTransformation: function(desc, name) {
689 registerTransformation(desc, name, this._nodeTransformations);
692 registerExtension: function(extension) {
695 existingPropertyNames = _.values(this);
697 ['document', 'documentNode'].forEach(function(dstName) {
698 var dstExtension = extension[dstName];
700 if(dstExtension.methods) {
701 _.pairs(dstExtension.methods).forEach(function(pair) {
702 var methodName = pair[0],
705 operation = {document: 'registerMethod', documentNode: 'registerNodeMethod'}[dstName];
706 doc[operation](methodName, method);
711 if(dstExtension.transformations) {
712 _.pairs(dstExtension.transformations).forEach(function(pair) {
716 operation = {document: 'registerDocumentTransformation', documentNode: 'registerNodeTransformation'}[dstName];
717 doc[operation](desc, name);
724 transform: function(Transformation, args) {
725 //console.log('transform');
726 var toret, transformation;
728 if(typeof Transformation === 'function') {
729 transformation = new Transformation(this, this, args);
731 transformation = Transformation;
734 this._transformationLevel++;
735 toret = transformation.run();
736 if(this._transformationLevel === 1) {
737 this.undoStack.push(transformation);
739 this._transformationLevel--;
740 //console.log('clearing redo stack');
744 throw new Error('Transformation ' + transformation + ' doesn\'t exist!');
748 var transformation = this.undoStack.pop();
750 transformation.undo();
751 this.redoStack.push(transformation);
755 var transformation = this.redoStack.pop();
757 transformation.run();
758 this.undoStack.push(transformation);
762 getNodeByPath: function(path) {
763 var toret = this.root;
764 path.forEach(function(idx) {
765 toret = toret.contents()[idx];
771 var defineDocumentProperties = function(doc, $document) {
772 Object.defineProperty(doc, 'root', {get: function() {
773 return doc.createDocumentNode($document[0]);
774 }, configurable: true});
775 Object.defineProperty(doc, 'dom', {get: function() {
777 }, configurable: true});
782 documentFromXML: function(xml) {
783 return new Document(xml);
786 elementNodeFromXML: function(xml) {
787 return this.documentFromXML(xml).root;
791 DocumentNode: DocumentNode,
792 ElementNode: ElementNode,