smartxml: registering textNode/elementNode methods
[fnpeditor.git] / src / smartxml / smartxml.js
1 define([
2     'libs/jquery',
3     'libs/underscore',
4     'libs/backbone',
5     'smartxml/events',
6     'smartxml/transformations'
7 ], function($, _, Backbone, events, transformations) {
8     
9 'use strict';
10 /* globals Node */
11
12 var TEXT_NODE = Node.TEXT_NODE;
13
14
15 var INSERTION = function(implementation) {
16     var toret = function(node) {
17         var insertion = this.getNodeInsertion(node),
18             nodeWasContained = this.document.containsNode(insertion.ofNode),
19             nodeParent;
20         if(!(this.document.containsNode(this))) {
21             nodeParent = insertion.ofNode.parent();
22         }
23         implementation.call(this, insertion.ofNode.nativeNode);
24         this.triggerChangeEvent(insertion.insertsNew ? 'nodeAdded' : 'nodeMoved', {node: insertion.ofNode}, nodeParent, nodeWasContained);
25         return insertion.ofNode;
26     };
27     return toret;
28 };
29
30 var DocumentNode = function(nativeNode, document) {
31     if(!document) {
32         throw new Error('undefined document for a node');
33     }
34     this.document = document;
35     this._setNativeNode(nativeNode);
36
37 };
38
39 $.extend(DocumentNode.prototype, {
40
41     transform: function(Transformation, args) {
42         var transformation = new Transformation(this.document, this, args);
43         return this.document.transform(transformation);
44     },
45
46     _setNativeNode: function(nativeNode) {
47         this.nativeNode = nativeNode;
48         this._$ = $(nativeNode);
49     },
50
51     clone: function() {
52         var clone = this._$.clone(true, true);
53         // clone.find('*').addBack().each(function() {
54         //     var n = $(this);
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);
58         //     }
59         // });
60         return this.document.createDocumentNode(clone[0]);
61     },
62
63     getPath: function(ancestor) {
64         var nodePath = [this].concat(this.parents()),
65             toret, idx;
66         ancestor = ancestor || this.document.root;
67
68         nodePath.some(function(node, i) {
69             if(node.sameNode(ancestor)) {
70                 idx = i;
71                 return true;
72             }
73         });
74
75         if(idx !== 'undefined') {
76             nodePath = nodePath.slice(0, idx);
77         }
78         toret = nodePath.map(function(node) {return node.getIndex(); });
79         toret.reverse();
80         return toret;
81     },
82
83     isRoot: function() {
84         return this.document.root.sameNode(this);
85     },
86
87     detach: function() {
88         var parent = this.parent();
89         this._$.detach();
90         this.triggerChangeEvent('nodeDetached', {parent: parent});
91         return this;
92     },
93
94     replaceWith: function(node) {
95         var toret;
96         if(this.isRoot()) {
97             return this.document.replaceRoot(node);
98         }
99         toret = this.after(node);
100         this.detach();
101         return toret;
102     },
103
104     sameNode: function(otherNode) {
105         return !!(otherNode) && this.nativeNode === otherNode.nativeNode;
106     },
107
108     parent: function() {
109         var parentNode = this.nativeNode.parentNode;
110         if(parentNode && parentNode.nodeType === Node.ELEMENT_NODE) {
111             return this.document.createDocumentNode(parentNode);
112         }
113         return null;
114     },
115
116     parents: function() {
117         var parent = this.parent(),
118             parents = parent ? parent.parents() : [];
119         if(parent) {
120             parents.unshift(parent);
121         }
122         return parents;
123     },
124
125     prev: function() {
126         var myIdx = this.getIndex();
127         return myIdx > 0 ? this.parent().contents()[myIdx-1] : null;
128     },
129
130     next: function() {
131         if(this.isRoot()) {
132             return null;
133         }
134         var myIdx = this.getIndex(),
135             parentContents = this.parent().contents();
136         return myIdx < parentContents.length - 1 ? parentContents[myIdx+1] : null;
137     },
138
139     isSurroundedByTextElements: function() {
140         var prev = this.prev(),
141             next = this.next();
142         return prev && (prev.nodeType === Node.TEXT_NODE) && next && (next.nodeType === Node.TEXT_NODE);
143     },
144
145     after: INSERTION(function(nativeNode) {
146         return this._$.after(nativeNode);
147     }),
148
149     before: INSERTION(function(nativeNode) {
150         return this._$.before(nativeNode);
151     }),
152
153     wrapWith: function(node) {
154         var insertion = this.getNodeInsertion(node);
155         if(this.parent()) {
156             this.before(insertion.ofNode);
157         }
158         insertion.ofNode.append(this);
159         return insertion.ofNode;
160     },
161
162     /**
163     * Removes parent of a node if node has no siblings.
164     */
165     unwrap: function() {
166         if(this.isRoot()) {
167             return;
168         }
169         var parent = this.parent(),
170             grandParent;
171         if(parent.contents().length === 1) {
172             grandParent = parent.parent();
173             parent.unwrapContent();
174             return grandParent;
175         }
176     },
177
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);
183         }
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);
187         }
188     },
189     
190     getNodeInsertion: function(node) {
191         return this.document.getNodeInsertion(node);
192     },
193
194     getIndex: function() {
195         if(this.isRoot()) {
196             return 0;
197         }
198         return this.parent().indexOf(this);
199     }
200 });
201
202 var ElementNode = function(nativeNode, document) {
203     DocumentNode.call(this, nativeNode, document);
204 };
205 ElementNode.prototype = Object.create(DocumentNode.prototype);
206
207 $.extend(ElementNode.prototype, {
208     nodeType: Node.ELEMENT_NODE,
209
210     detach: function() {
211         var next;
212         if(this.parent() && this.isSurroundedByTextElements()) {
213             next = this.next();
214             this.prev().appendText(next.getText());
215             next.detach();
216         }
217         return DocumentNode.prototype.detach.call(this);
218     },
219
220     setData: function(key, value) {
221         if(value !== undefined) {
222             this._$.data(key, value);
223         } else {
224             this._$.removeData(_.keys(this._$.data()));
225             this._$.data(key);
226         }
227     },
228
229     getData: function(key) {
230         if(key) {
231             return this._$.data(key);
232         }
233         return this._$.data();
234     },
235
236     getTagName: function() {
237         return this.nativeNode.tagName.toLowerCase();
238     },
239
240     contents: function(selector) {
241         var toret = [],
242             document = this.document;
243         if(selector) {
244             this._$.children(selector).each(function() {
245                 toret.push(document.createDocumentNode(this));
246             });
247         } else {
248             this._$.contents().each(function() {
249                 toret.push(document.createDocumentNode(this));
250             });
251         }
252         return toret;
253     },
254
255     indexOf: function(node) {
256         return this._$.contents().index(node._$);
257     },
258
259     setTag: function(tagName) {
260         var node = this.document.createDocumentNode({tagName: tagName}),
261             oldTagName = this.getTagName(),
262             myContents = this._$.contents();
263
264         this.getAttrs().forEach(function(attribute) {
265             node.setAttr(attribute.name, attribute.value, true);
266         });
267         node.setData(this.getData());
268
269         if(this.sameNode(this.document.root)) {
270             defineDocumentProperties(this.document, node._$);
271         }
272         this._$.replaceWith(node._$);
273         this._setNativeNode(node._$[0]);
274         this._$.append(myContents);
275         this.triggerChangeEvent('nodeTagChange', {oldTagName: oldTagName, newTagName: this.getTagName()});
276     },
277
278     getAttr: function(name) {
279         return this._$.attr(name);
280     },
281
282     setAttr: function(name, value, silent) {
283         var oldVal = this.getAttr(name);
284         this._$.attr(name, value);
285         if(!silent) {
286             this.triggerChangeEvent('nodeAttrChange', {attr: name, oldVal: oldVal, newVal: value});
287         }
288     },
289
290     getAttrs: function() {
291         var toret = [];
292         for(var i = 0; i < this.nativeNode.attributes.length; i++) {
293             toret.push(this.nativeNode.attributes[i]);
294         }
295         return toret;
296     },
297
298     append: INSERTION(function(nativeNode) {
299         this._$.append(nativeNode);
300     }),
301
302     prepend: INSERTION(function(nativeNode) {
303         this._$.prepend(nativeNode);
304     }),
305
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);
312         }
313     },
314
315     unwrapContent: function() {
316         var parent = this.parent();
317         if(!parent) {
318             return;
319         }
320
321         var myContents = this.contents(),
322             myIdx = parent.indexOf(this);
323
324
325         if(myContents.length === 0) {
326             return this.detach();
327         }
328
329         var prev = this.prev(),
330             next = this.next(),
331             moveLeftRange, moveRightRange, leftMerged;
332
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;
337             leftMerged = true;
338         } else {
339             leftMerged = false;
340         }
341
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;
348             }
349         }
350
351         var childrenLength = this.contents().length;
352         this.contents().forEach(function(child) {
353             this.before(child);
354         }.bind(this));
355
356         this.detach();
357
358         return {
359             element1: parent.contents()[myIdx + (moveLeftRange ? -1 : 0)],
360             element2: parent.contents()[myIdx + childrenLength-1 + (moveRightRange ? 1 : 0)]
361         };
362     },
363
364     wrapText: function(params) {
365         return this.document._wrapText(_.extend({inside: this}, params));
366     },
367
368     toXML: function() {
369         var wrapper = $('<div>');
370         wrapper.append(this._getXMLDOMToDump());
371         return wrapper.html();
372     },
373     
374     _getXMLDOMToDump: function() {
375         return this._$;
376     }
377 });
378
379 var TextNode = function(nativeNode, document) {
380     DocumentNode.call(this, nativeNode, document);
381 };
382 TextNode.prototype = Object.create(DocumentNode.prototype);
383
384 $.extend(TextNode.prototype, {
385     nodeType: Node.TEXT_NODE,
386
387     getText: function() {
388         return this.nativeNode.data;
389     },
390
391     setText: function(text) {
392         //console.log('smartxml: ' + text);
393         this.nativeNode.data = text;
394         this.triggerTextChangeEvent();
395     },
396
397     appendText: function(text) {
398         this.nativeNode.data = this.nativeNode.data + text;
399         this.triggerTextChangeEvent();
400     },
401
402     prependText: function(text) {
403         this.nativeNode.data = text + this.nativeNode.data;
404         this.triggerTextChangeEvent();
405     },
406
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}
415             });
416         } else {
417             return DocumentNode.prototype.wrapWith.call(this, desc);
418         }
419     },
420
421     split: function(params) {
422         var parentElement = this.parent(),
423             passed = false,
424             succeedingChildren = [],
425             prefix = this.getText().substr(0, params.offset),
426             suffix = this.getText().substr(params.offset);
427
428         parentElement.contents().forEach(function(child) {
429             if(passed) {
430                 succeedingChildren.push(child);
431             }
432             if(child.sameNode(this)) {
433                 passed = true;
434             }
435         }.bind(this));
436
437         if(prefix.length > 0) {
438             this.setText(prefix);
439         }
440         else {
441             this.detach();
442         }
443
444         var attrs = {};
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);
448
449         if(suffix.length > 0) {
450             newElement.append({text: suffix});
451         }
452         succeedingChildren.forEach(function(child) {
453             newElement.append(child);
454         });
455
456         return {first: parentElement, second: newElement};
457     },
458
459     triggerTextChangeEvent: function() {
460         var event = new events.ChangeEvent('nodeTextChange', {node: this});
461         this.document.trigger('change', event);
462     }
463 });
464
465
466 var parseXML = function(xml) {
467     return $($.trim(xml))[0];
468 };
469
470 var registerTransformation = function(desc, name, target) {
471     var Transformation = transformations.createContextTransformation(desc, name);
472     target[name] = function(args) {
473         var instance = this;
474         return instance.transform(Transformation, args);
475     }
476 };
477
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)
483         );
484     }
485     target[methodName] = method;
486 };
487
488
489 var Document = function(xml) {
490     this.loadXML(xml);
491     this.undoStack = [];
492     this.redoStack = [];
493     this._transformationLevel = 0;
494     
495     this._nodeMethods = {};
496     this._textNodeMethods = {};
497     this._elementNodeMethods = {};
498     this._nodeTransformations = {};
499 };
500
501 $.extend(Document.prototype, Backbone.Events, {
502     ElementNodeFactory: ElementNode,
503     TextNodeFactory: TextNode,
504
505     createDocumentNode: function(from) {
506         if(!(from instanceof Node)) {
507             if(from.text !== undefined) {
508                 /* globals document */
509                 from = document.createTextNode(from.text);
510             } else {
511                 var node = $('<' + from.tagName + '>');
512
513                 _.keys(from.attrs || {}).forEach(function(key) {
514                     node.attr(key, from.attrs[key]);
515                 });
516
517                 from = node[0];
518             }
519         }
520         var Factory, typeMethods;
521         if(from.nodeType === Node.TEXT_NODE) {
522             Factory = this.TextNodeFactory;
523             typeMethods = this._textNodeMethods;
524         } else if(from.nodeType === Node.ELEMENT_NODE) {
525             Factory = this.ElementNodeFactory;
526             typeMethods = this._elementNodeMethods;
527         }
528         var toret = new Factory(from, this);
529         _.extend(toret, this._nodeMethods);
530         _.extend(toret, typeMethods);
531         _.extend(toret, this._nodeTransformations);
532         return toret;
533     },
534
535     loadXML: function(xml, options) {
536         options = options || {};
537         defineDocumentProperties(this, $(parseXML(xml)));
538         if(!options.silent) {
539             this.trigger('contentSet');
540         }
541     },
542
543     toXML: function() {
544         return this.root.toXML();
545     },
546
547     containsNode: function(node) {
548         return this.root && (node.nativeNode === this.root.nativeNode || node._$.parents().index(this.root._$) !== -1);
549     },
550
551     wrapNodes: function(params) {
552         if(!(params.node1.parent().sameNode(params.node2.parent()))) {
553             throw new Error('Wrapping non-sibling nodes not supported.');
554         }
555
556         var parent = params.node1.parent(),
557             parentContents = parent.contents(),
558             wrapper = this.createDocumentNode({
559                 tagName: params._with.tagName,
560                 attrs: params._with.attrs}),
561             idx1 = parent.indexOf(params.node1),
562             idx2 = parent.indexOf(params.node2);
563
564         if(idx1 > idx2) {
565             var tmp = idx1;
566             idx1 = idx2;
567             idx2 = tmp;
568         }
569
570         var insertingMethod, insertingTarget;
571         if(idx1 === 0) {
572             insertingMethod = 'prepend';
573             insertingTarget = parent;
574         } else {
575             insertingMethod = 'after';
576             insertingTarget = parentContents[idx1-1];
577         }
578
579         for(var i = idx1; i <= idx2; i++) {
580             wrapper.append(parentContents[i].detach());
581         }
582
583         insertingTarget[insertingMethod](wrapper);
584         return wrapper;
585     },
586
587     getSiblingParents: function(params) {
588         var parents1 = [params.node1].concat(params.node1.parents()).reverse(),
589             parents2 = [params.node2].concat(params.node2.parents()).reverse(),
590             noSiblingParents = null;
591
592         if(parents1.length === 0 || parents2.length === 0 || !(parents1[0].sameNode(parents2[0]))) {
593             return noSiblingParents;
594         }
595
596         var i;
597         for(i = 0; i < Math.min(parents1.length, parents2.length); i++) {
598             if(parents1[i].sameNode(parents2[i])) {
599                 continue;
600             }
601             break;
602         }
603         return {node1: parents1[i], node2: parents2[i]};
604     },
605
606     _wrapText: function(params) {
607         params = _.extend({textNodeIdx: 0}, params);
608         if(typeof params.textNodeIdx === 'number') {
609             params.textNodeIdx = [params.textNodeIdx];
610         }
611         
612         var contentsInside = params.inside.contents(),
613             idx1 = Math.min.apply(Math, params.textNodeIdx),
614             idx2 = Math.max.apply(Math, params.textNodeIdx),
615             textNode1 = contentsInside[idx1],
616             textNode2 = contentsInside[idx2],
617             sameNode = textNode1.sameNode(textNode2),
618             prefixOutside = textNode1.getText().substr(0, params.offsetStart),
619             prefixInside = textNode1.getText().substr(params.offsetStart),
620             suffixInside = textNode2.getText().substr(0, params.offsetEnd),
621             suffixOutside = textNode2.getText().substr(params.offsetEnd)
622         ;
623
624         if(!(textNode1.parent().sameNode(textNode2.parent()))) {
625             throw new Error('Wrapping text in non-sibling text nodes not supported.');
626         }
627         
628         var wrapperElement = this.createDocumentNode({tagName: params._with.tagName, attrs: params._with.attrs});
629         textNode1.after(wrapperElement);
630         textNode1.detach();
631         
632         if(prefixOutside.length > 0) {
633             wrapperElement.before({text:prefixOutside});
634         }
635         if(sameNode) {
636             var core = textNode1.getText().substr(params.offsetStart, params.offsetEnd - params.offsetStart);
637             wrapperElement.append({text: core});
638         } else {
639             textNode2.detach();
640             if(prefixInside.length > 0) {
641                 wrapperElement.append({text: prefixInside});
642             }
643             for(var i = idx1 + 1; i < idx2; i++) {
644                 wrapperElement.append(contentsInside[i]);
645             }
646             if(suffixInside.length > 0) {
647                 wrapperElement.append({text: suffixInside});
648             }
649         }
650         if(suffixOutside.length > 0) {
651             wrapperElement.after({text: suffixOutside});
652         }
653         return wrapperElement;
654     },
655
656     trigger: function() {
657         //console.log('trigger: ' + arguments[0] + (arguments[1] ? ', ' + arguments[1].type : ''));
658         Backbone.Events.trigger.apply(this, arguments);
659     },
660
661     getNodeInsertion: function(node) {
662         var insertion = {};
663         if(node instanceof DocumentNode) {
664             insertion.ofNode = node;
665             insertion.insertsNew = !this.containsNode(node);
666         } else {
667           insertion.ofNode = this.createDocumentNode(node);
668           insertion.insertsNew = true;
669         }
670         return insertion;
671     },
672
673     replaceRoot: function(node) {
674         var insertion = this.getNodeInsertion(node);
675         this.root.detach();
676         defineDocumentProperties(this, insertion.ofNode._$);
677         insertion.ofNode.triggerChangeEvent('nodeAdded');
678         return insertion.ofNode;
679     },
680
681     registerMethod: function(methodName, method, dstName) {
682         var doc = this;
683         var destination = {
684             document: doc,
685             documentNode: doc._nodeMethods,
686             textNode: doc._textNodeMethods,
687             elementNode: doc._elementNodeMethods
688         }[dstName];
689         registerMethod(methodName, method, destination);
690     },
691
692     registerDocumentTransformation: function(desc, name) {
693         registerTransformation(desc, name, this);
694     },
695
696     registerNodeTransformation: function(desc, name) {
697         registerTransformation(desc, name, this._nodeTransformations);
698     },
699
700     registerExtension: function(extension) {
701         //debugger;
702         var doc = this,
703             existingPropertyNames = _.values(this);
704
705         ['document', 'documentNode', 'elementNode', 'textNode'].forEach(function(dstName) {
706             var dstExtension = extension[dstName];
707             if(dstExtension) {
708                 if(dstExtension.methods) {
709                     _.pairs(dstExtension.methods).forEach(function(pair) {
710                         var methodName = pair[0],
711                             method = pair[1];
712
713                         doc.registerMethod(methodName, method, dstName);
714
715                     });
716                 }
717
718                 if(dstExtension.transformations) {
719                     _.pairs(dstExtension.transformations).forEach(function(pair) {
720                         var name = pair[0],
721                             desc = pair[1],
722                             operation;
723                         operation = {document: 'registerDocumentTransformation', documentNode: 'registerNodeTransformation'}[dstName];
724                         doc[operation](desc, name);
725                     });
726                 }
727             }
728         });
729     },
730
731     transform: function(Transformation, args) {
732         //console.log('transform');
733         var toret, transformation;
734
735         if(typeof Transformation === 'function') {
736             transformation = new Transformation(this, this, args);
737         } else {
738             transformation = Transformation;
739         }
740         if(transformation) {
741             this._transformationLevel++;
742             toret = transformation.run();
743             if(this._transformationLevel === 1) {
744                 this.undoStack.push(transformation);
745             }
746             this._transformationLevel--;
747             //console.log('clearing redo stack');
748             this.redoStack = [];
749             return toret;
750         } else {
751             throw new Error('Transformation ' + transformation + ' doesn\'t exist!');
752         }
753     },
754     undo: function() {
755         var transformation = this.undoStack.pop();
756         if(transformation) {
757             transformation.undo();
758             this.redoStack.push(transformation);
759         }
760     },
761     redo: function() {
762         var transformation = this.redoStack.pop();
763         if(transformation) {
764             transformation.run();
765             this.undoStack.push(transformation);
766         }
767     },
768
769     getNodeByPath: function(path) {
770         var toret = this.root;
771         path.forEach(function(idx) {
772             toret = toret.contents()[idx];
773         });
774         return toret;
775     }
776 });
777
778 var defineDocumentProperties = function(doc, $document) {
779     Object.defineProperty(doc, 'root', {get: function() {
780         return doc.createDocumentNode($document[0]);
781     }, configurable: true});
782     Object.defineProperty(doc, 'dom', {get: function() {
783         return $document[0];
784     }, configurable: true});
785 };
786
787
788 return {
789     documentFromXML: function(xml) {
790         return new Document(xml);
791     },
792
793     elementNodeFromXML: function(xml) {
794         return this.documentFromXML(xml).root;
795     },
796
797     Document: Document,
798     DocumentNode: DocumentNode,
799     ElementNode: ElementNode,
800     TextNode: TextNode
801 };
802
803 });