smartxml: Make sure DocumentNode.sameNode returns a boolean
[fnpeditor.git] / src / smartxml / smartxml.js
1 define([
2     'libs/jquery',
3     'libs/underscore',
4     'libs/backbone',
5     'smartxml/events'
6 ], function($, _, Backbone, events) {
7     
8 'use strict';
9
10
11 var TEXT_NODE = Node.TEXT_NODE;
12
13
14 var INSERTION = function(implementation) {
15     var toret = function(node) {
16         var insertion = this.getNodeInsertion(node);
17         implementation.call(this, insertion.ofNode.nativeNode);
18         this.triggerChangeEvent(insertion.insertsNew ? 'nodeAdded' : 'nodeMoved', {node: insertion.ofNode});
19         return insertion.ofNode;
20     };
21     return toret;
22 };
23
24 var DocumentNode = function(nativeNode, document) {
25     if(!document) {
26         throw new Error('undefined document for a node');
27     }
28     this.document = document;
29     this._setNativeNode(nativeNode);
30
31 };
32
33 $.extend(DocumentNode.prototype, {
34     _setNativeNode: function(nativeNode) {
35         this.nativeNode = nativeNode;
36         this._$ = $(nativeNode);
37     },
38
39     clone: function() {
40         return this.document.createDocumentNode(this._$.clone(true, true)[0]);
41     },
42
43     getPath: function(ancestor) {
44         var nodePath = [this].concat(this.parents()),
45             toret, idx;
46         ancestor = ancestor || this.document.root;
47
48         nodePath.some(function(node, i) {
49             if(node.sameNode(ancestor)) {
50                 idx = i;
51                 return true;
52             }
53         });
54
55         if(idx !== 'undefined') {
56             nodePath = nodePath.slice(0, idx);
57         }
58         toret = nodePath.map(function(node) {return node.getIndex(); });
59         toret.reverse();
60         return toret;
61     },
62
63     isRoot: function() {
64         return this.document.root.sameNode(this);
65     },
66
67     detach: function() {
68         var parent = this.parent();
69         this._$.detach();
70         this.triggerChangeEvent('nodeDetached', {parent: parent});
71         return this;
72     },
73
74     replaceWith: function(node) {
75         var toret;
76         if(this.isRoot()) {
77             return this.document.replaceRoot(node);
78         }
79         toret = this.after(node);
80         this.detach();
81         return toret;
82     },
83
84     sameNode: function(otherNode) {
85         return !!(otherNode) && this.nativeNode === otherNode.nativeNode;
86     },
87
88     parent: function() {
89         var parentNode = this.nativeNode.parentNode;
90         if(parentNode && parentNode.nodeType === Node.ELEMENT_NODE) {
91             return this.document.createDocumentNode(parentNode);
92         }
93         return null;
94     },
95
96     parents: function() {
97         var parent = this.parent(),
98             parents = parent ? parent.parents() : [];
99         if(parent) {
100             parents.unshift(parent);
101         }
102         return parents;
103     },
104
105     prev: function() {
106         var myIdx = this.getIndex();
107         return myIdx > 0 ? this.parent().contents()[myIdx-1] : null;
108     },
109
110     next: function() {
111         if(this.isRoot()) {
112             return null;
113         }
114         var myIdx = this.getIndex(),
115             parentContents = this.parent().contents();
116         return myIdx < parentContents.length - 1 ? parentContents[myIdx+1] : null;
117     },
118
119     isSurroundedByTextElements: function() {
120         var prev = this.prev(),
121             next = this.next();
122         return prev && (prev.nodeType === Node.TEXT_NODE) && next && (next.nodeType === Node.TEXT_NODE);
123     },
124
125     after: INSERTION(function(nativeNode) {
126         return this._$.after(nativeNode);
127     }),
128
129     before: INSERTION(function(nativeNode) {
130         return this._$.before(nativeNode);
131     }),
132
133     wrapWith: function(node) {
134         var insertion = this.getNodeInsertion(node);
135         if(this.parent()) {
136             this.before(insertion.ofNode);
137         }
138         insertion.ofNode.append(this);
139         return insertion.ofNode;
140     },
141
142     /**
143     * Removes parent of a node if node has no siblings.
144     */
145     unwrap: function() {
146         if(this.isRoot()) {
147             return;
148         }
149         var parent = this.parent(),
150             grandParent;
151         if(parent.contents().length === 1) {
152             grandParent = parent.parent();
153             parent.unwrapContent();
154             return grandParent;
155         }
156     },
157
158     triggerChangeEvent: function(type, metaData) {
159         var event = new events.ChangeEvent(type, $.extend({node: this}, metaData || {}));
160         if(type === 'nodeDetached' || this.document.containsNode(event.meta.node)) {
161             this.document.trigger('change', event);
162         }
163     },
164     
165     getNodeInsertion: function(node) {
166         return this.document.getNodeInsertion(node);
167     },
168
169     getIndex: function() {
170         if(this.isRoot()) {
171             return 0;
172         }
173         return this.parent().indexOf(this);
174     }
175 });
176
177 var ElementNode = function(nativeNode, document) {
178     DocumentNode.call(this, nativeNode, document);
179 };
180 ElementNode.prototype = Object.create(DocumentNode.prototype);
181
182 $.extend(ElementNode.prototype, {
183     nodeType: Node.ELEMENT_NODE,
184
185     detach: function() {
186         var next;
187         if(parent && this.isSurroundedByTextElements()) {
188             next = this.next();
189             this.prev().appendText(next.getText());
190             next.detach();
191         }
192         return DocumentNode.prototype.detach.call(this);
193     },
194
195     setData: function(key, value) {
196         if(value !== undefined) {
197             this._$.data(key, value);
198         } else {
199             this._$.removeData(_.keys(this._$.data()));
200             this._$.data(key);
201         }
202     },
203
204     getData: function(key) {
205         if(key) {
206             return this._$.data(key);
207         }
208         return this._$.data();
209     },
210
211     getTagName: function() {
212         return this.nativeNode.tagName.toLowerCase();
213     },
214
215     contents: function() {
216         var toret = [],
217             document = this.document;
218         this._$.contents().each(function() {
219             toret.push(document.createDocumentNode(this));
220         });
221         return toret;
222     },
223
224     indexOf: function(node) {
225         return this._$.contents().index(node._$);
226     },
227
228     setTag: function(tagName) {
229         var node = this.document.createDocumentNode({tagName: tagName}),
230             oldTagName = this.getTagName(),
231             myContents = this._$.contents();
232
233         this.getAttrs().forEach(function(attribute) {
234             node.setAttr(attribute.name, attribute.value, true);
235         });
236         node.setData(this.getData());
237
238         if(this.sameNode(this.document.root)) {
239             defineDocumentProperties(this.document, node._$);
240         }
241         this._$.replaceWith(node._$);
242         this._setNativeNode(node._$[0]);
243         this._$.append(myContents);
244         this.triggerChangeEvent('nodeTagChange', {oldTagName: oldTagName, newTagName: this.getTagName()});
245     },
246
247     getAttr: function(name) {
248         return this._$.attr(name);
249     },
250
251     setAttr: function(name, value, silent) {
252         var oldVal = this.getAttr(name);
253         this._$.attr(name, value);
254         if(!silent) {
255             this.triggerChangeEvent('nodeAttrChange', {attr: name, oldVal: oldVal, newVal: value});
256         }
257     },
258
259     getAttrs: function() {
260         var toret = [];
261         for(var i = 0; i < this.nativeNode.attributes.length; i++) {
262             toret.push(this.nativeNode.attributes[i]);
263         }
264         return toret;
265     },
266
267     append: INSERTION(function(nativeNode) {
268         this._$.append(nativeNode);
269     }),
270
271     prepend: INSERTION(function(nativeNode) {
272         this._$.prepend(nativeNode);
273     }),
274
275     unwrapContent: function() {
276         var parent = this.parent();
277         if(!parent) {
278             return;
279         }
280
281         var myContents = this.contents(),
282             myIdx = parent.indexOf(this);
283
284
285         if(myContents.length === 0) {
286             return this.detach();
287         }
288
289         var prev = this.prev(),
290             next = this.next(),
291             moveLeftRange, moveRightRange, leftMerged;
292
293         if(prev && (prev.nodeType === TEXT_NODE) && (myContents[0].nodeType === TEXT_NODE)) {
294             prev.appendText(myContents[0].getText());
295             myContents[0].detach();
296             moveLeftRange = true;
297             leftMerged = true;
298         } else {
299             leftMerged = false;
300         }
301
302         if(!(leftMerged && myContents.length === 1)) {
303             var lastContents = _.last(myContents);
304             if(next && (next.nodeType === TEXT_NODE) && (lastContents.nodeType === TEXT_NODE)) {
305                 next.prependText(lastContents.getText());
306                 lastContents.detach();
307                 moveRightRange = true;
308             }
309         }
310
311         var childrenLength = this.contents().length;
312         this.contents().forEach(function(child) {
313             this.before(child);
314         }.bind(this));
315
316         this.detach();
317
318         return {
319             element1: parent.contents()[myIdx + (moveLeftRange ? -1 : 0)],
320             element2: parent.contents()[myIdx + childrenLength-1 + (moveRightRange ? 1 : 0)]
321         };
322     },
323
324     wrapText: function(params) {
325         return this.document._wrapText(_.extend({inside: this}, params));
326     },
327
328     toXML: function() {
329         var wrapper = $('<div>');
330         wrapper.append(this._getXMLDOMToDump());
331         return wrapper.html();
332     },
333     
334     _getXMLDOMToDump: function() {
335         return this._$;
336     }
337 });
338
339 var TextNode = function(nativeNode, document) {
340     DocumentNode.call(this, nativeNode, document);
341 };
342 TextNode.prototype = Object.create(DocumentNode.prototype);
343
344 $.extend(TextNode.prototype, {
345     nodeType: Node.TEXT_NODE,
346
347     getText: function() {
348         return this.nativeNode.data;
349     },
350
351     setText: function(text) {
352         this.nativeNode.data = text;
353         this.triggerTextChangeEvent();
354     },
355
356     appendText: function(text) {
357         this.nativeNode.data = this.nativeNode.data + text;
358         this.triggerTextChangeEvent();
359     },
360
361     prependText: function(text) {
362         this.nativeNode.data = text + this.nativeNode.data;
363         this.triggerTextChangeEvent();
364     },
365
366     wrapWith: function(desc) {
367         if(typeof desc.start === 'number' && typeof desc.end === 'number') {
368             return this.document._wrapText({
369                 inside: this.parent(),
370                 textNodeIdx: this.parent().indexOf(this),
371                 offsetStart: Math.min(desc.start, desc.end),
372                 offsetEnd: Math.max(desc.start, desc.end),
373                 _with: {tagName: desc.tagName, attrs: desc.attrs}
374             });
375         } else {
376             return DocumentNode.prototype.wrapWith.call(this, desc);
377         }
378     },
379
380     split: function(params) {
381         var parentElement = this.parent(),
382             passed = false,
383             succeedingChildren = [],
384             prefix = this.getText().substr(0, params.offset),
385             suffix = this.getText().substr(params.offset);
386
387         parentElement.contents().forEach(function(child) {
388             if(passed) {
389                 succeedingChildren.push(child);
390             }
391             if(child.sameNode(this)) {
392                 passed = true;
393             }
394         }.bind(this));
395
396         if(prefix.length > 0) {
397             this.setText(prefix);
398         }
399         else {
400             this.detach();
401         }
402
403         var attrs = {};
404         parentElement.getAttrs().forEach(function(attr) {attrs[attr.name] = attr.value; });
405         var newElement = this.document.createDocumentNode({tagName: parentElement.getTagName(), attrs: attrs});
406         parentElement.after(newElement);
407
408         if(suffix.length > 0) {
409             newElement.append({text: suffix});
410         }
411         succeedingChildren.forEach(function(child) {
412             newElement.append(child);
413         });
414
415         return {first: parentElement, second: newElement};
416     },
417
418     triggerTextChangeEvent: function() {
419         var event = new events.ChangeEvent('nodeTextChange', {node: this});
420         this.document.trigger('change', event);
421     }
422 });
423
424
425 var parseXML = function(xml) {
426     return $($.trim(xml))[0];
427 };
428
429 var Document = function(xml) {
430     this.loadXML(xml);
431 };
432
433 $.extend(Document.prototype, Backbone.Events, {
434     ElementNodeFactory: ElementNode,
435     TextNodeFactory: TextNode,
436
437     createDocumentNode: function(from) {
438         if(!(from instanceof Node)) {
439             if(from.text !== undefined) {
440                 from = document.createTextNode(from.text);
441             } else {
442                 var node = $('<' + from.tagName + '>');
443
444                 _.keys(from.attrs || {}).forEach(function(key) {
445                     node.attr(key, from.attrs[key]);
446                 });
447
448                 from = node[0];
449             }
450         }
451         var Factory;
452         if(from.nodeType === Node.TEXT_NODE) {
453             Factory = this.TextNodeFactory;
454         } else if(from.nodeType === Node.ELEMENT_NODE) {
455             Factory = this.ElementNodeFactory;
456         }
457         return new Factory(from, this);
458     },
459
460     loadXML: function(xml, options) {
461         options = options || {};
462         defineDocumentProperties(this, $(parseXML(xml)));
463         if(!options.silent) {
464             this.trigger('contentSet');
465         }
466     },
467
468     toXML: function() {
469         return this.root.toXML();
470     },
471
472     containsNode: function(node) {
473         return this.root && (node.nativeNode === this.root.nativeNode || node._$.parents().index(this.root._$) !== -1);
474     },
475
476     wrapNodes: function(params) {
477         if(!(params.element1.parent().sameNode(params.element2.parent()))) {
478             throw new Error('Wrapping non-sibling nodes not supported.');
479         }
480
481         var parent = params.element1.parent(),
482             parentContents = parent.contents(),
483             wrapper = this.createDocumentNode({
484                 tagName: params._with.tagName,
485                 attrs: params._with.attrs}),
486             idx1 = parent.indexOf(params.element1),
487             idx2 = parent.indexOf(params.element2);
488
489         if(idx1 > idx2) {
490             var tmp = idx1;
491             idx1 = idx2;
492             idx2 = tmp;
493         }
494
495         var insertingMethod, insertingTarget;
496         if(idx1 === 0) {
497             insertingMethod = 'prepend';
498             insertingTarget = parent;
499         } else {
500             insertingMethod = 'after';
501             insertingTarget = parentContents[idx1-1];
502         }
503
504         for(var i = idx1; i <= idx2; i++) {
505             wrapper.append(parentContents[i].detach());
506         }
507
508         insertingTarget[insertingMethod](wrapper);
509         return wrapper;
510     },
511
512     getSiblingParents: function(params) {
513         var parents1 = [params.node1].concat(params.node1.parents()).reverse(),
514             parents2 = [params.node2].concat(params.node2.parents()).reverse(),
515             noSiblingParents = null;
516
517         if(parents1.length === 0 || parents2.length === 0 || !(parents1[0].sameNode(parents2[0]))) {
518             return noSiblingParents;
519         }
520
521         var i;
522         for(i = 0; i < Math.min(parents1.length, parents2.length); i++) {
523             if(parents1[i].sameNode(parents2[i])) {
524                 continue;
525             }
526             break;
527         }
528         return {node1: parents1[i], node2: parents2[i]};
529     },
530
531     _wrapText: function(params) {
532         params = _.extend({textNodeIdx: 0}, params);
533         if(typeof params.textNodeIdx === 'number') {
534             params.textNodeIdx = [params.textNodeIdx];
535         }
536         
537         var contentsInside = params.inside.contents(),
538             idx1 = Math.min.apply(Math, params.textNodeIdx),
539             idx2 = Math.max.apply(Math, params.textNodeIdx),
540             textNode1 = contentsInside[idx1],
541             textNode2 = contentsInside[idx2],
542             sameNode = textNode1.sameNode(textNode2),
543             prefixOutside = textNode1.getText().substr(0, params.offsetStart),
544             prefixInside = textNode1.getText().substr(params.offsetStart),
545             suffixInside = textNode2.getText().substr(0, params.offsetEnd),
546             suffixOutside = textNode2.getText().substr(params.offsetEnd)
547         ;
548
549         if(!(textNode1.parent().sameNode(textNode2.parent()))) {
550             throw new Error('Wrapping text in non-sibling text nodes not supported.');
551         }
552         
553         var wrapperElement = this.createDocumentNode({tagName: params._with.tagName, attrs: params._with.attrs});
554         textNode1.after(wrapperElement);
555         textNode1.detach();
556         
557         if(prefixOutside.length > 0) {
558             wrapperElement.before({text:prefixOutside});
559         }
560         if(sameNode) {
561             var core = textNode1.getText().substr(params.offsetStart, params.offsetEnd - params.offsetStart);
562             wrapperElement.append({text: core});
563         } else {
564             textNode2.detach();
565             if(prefixInside.length > 0) {
566                 wrapperElement.append({text: prefixInside});
567             }
568             for(var i = idx1 + 1; i < idx2; i++) {
569                 wrapperElement.append(contentsInside[i]);
570             }
571             if(suffixInside.length > 0) {
572                 wrapperElement.append({text: suffixInside});
573             }
574         }
575         if(suffixOutside.length > 0) {
576             wrapperElement.after({text: suffixOutside});
577         }
578         return wrapperElement;
579     },
580
581     trigger: function() {
582         //console.log('trigger: ' + arguments[0] + (arguments[1] ? ', ' + arguments[1].type : ''));
583         Backbone.Events.trigger.apply(this, arguments);
584     },
585
586     getNodeInsertion: function(node) {
587         var insertion = {};
588         if(node instanceof DocumentNode) {
589             insertion.ofNode = node;
590             insertion.insertsNew = !this.containsNode(node);
591         } else {
592           insertion.ofNode = this.createDocumentNode(node);
593           insertion.insertsNew = true;
594         }
595         return insertion;
596     },
597
598     replaceRoot: function(node) {
599         var insertion = this.getNodeInsertion(node);
600         this.root.detach();
601         defineDocumentProperties(this, insertion.ofNode._$);
602         insertion.ofNode.triggerChangeEvent('nodeAdded');
603         return insertion.ofNode;
604     }
605 });
606
607 var defineDocumentProperties = function(doc, $document) {
608     Object.defineProperty(doc, 'root', {get: function() {
609         return doc.createDocumentNode($document[0]);
610     }, configurable: true});
611     Object.defineProperty(doc, 'dom', {get: function() {
612         return $document[0];
613     }, configurable: true});
614 };
615
616 return {
617     documentFromXML: function(xml) {
618         return new Document(xml);
619     },
620
621     elementNodeFromXML: function(xml) {
622         return this.documentFromXML(xml).root;
623     },
624
625     Document: Document,
626     DocumentNode: DocumentNode,
627     ElementNode: ElementNode
628 };
629
630 });