9a3ba2606d6bdab815f591c9206862ddd4bc651e
[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 DocumentNode = function(nativeNode, document) {
15     if(!document) {
16         throw new Error('undefined document for a node');
17     }
18     this.document = document;
19     this._setNativeNode(nativeNode);
20
21 };
22
23 $.extend(DocumentNode.prototype, {
24     _setNativeNode: function(nativeNode) {
25         this.nativeNode = nativeNode;
26         this._$ = $(nativeNode);
27     },
28
29     detach: function() { this._$.detach(); },
30
31     sameNode: function(otherNode) {
32         return this.nativeNode === otherNode.nativeNode;
33     },
34
35     parent: function() {
36         return this.nativeNode.parentNode ? this.document.createElementNode(this.nativeNode.parentNode) : null;
37     },
38
39     before: function(node) {
40         this._$.before(node.nativeNode);
41     },
42
43     wrapWith: function(node) {
44         if(this.parent()) {
45             this.before(node);
46         }
47         node.append(this);
48     },
49
50     triggerChangeEvent: function(type, metaData) {
51         var event = new events.ChangeEvent(type, $.extend({node: this}, metaData || {}));
52         this.document.trigger('change', event);
53     },
54 });
55
56 var ElementNode = function(nativeNode, document) {
57     DocumentNode.call(this, nativeNode, document);
58 };
59
60 $.extend(ElementNode.prototype, DocumentNode.prototype, {
61     nodeType: Node.ELEMENT_NODE,
62
63     setData: function(key, value) {
64         if(value !== undefined) {
65             this._$.data(key, value);
66         } else {
67             this._$.removeData(_.keys(this._$.data()));
68             this._$.data(key);
69         }
70     },
71
72     getData: function(key) {
73         if(key) {
74             return this._$.data(key);
75         }
76         return this._$.data();
77     },
78
79     getTagName: function() {
80         return this.nativeNode.tagName.toLowerCase();
81     },
82
83     contents: function() {
84         var toret = [],
85             document = this.document;
86         this._$.contents().each(function() {
87             if(this.nodeType === Node.ELEMENT_NODE) {
88                 toret.push(document.createElementNode(this));
89             }
90             else if(this.nodeType === Node.TEXT_NODE) {
91                 toret.push(document.createTextNode(this));
92             }
93         });
94         return toret;
95     },
96
97     indexOf: function(node) {
98         return this._$.contents().index(node._$);
99     },
100
101     setTag: function(tagName) {
102         var node = this.document.createElementNode({tagName: tagName}),
103             oldTagName = this.getTagName();
104
105         this.getAttrs().forEach(function(attribute) {
106             node.setAttr(attribute.name, attribute.value, true);
107         });
108         node.setData(this.getData());
109
110         this._$.replaceWith(node._$);
111         this._setNativeNode(node._$[0]);
112         this.triggerChangeEvent('nodeTagChange', {oldTagName: oldTagName, newTagName: this.getTagName()});
113     },
114
115     getAttr: function(name) {
116         return this._$.attr(name);
117     },
118
119     setAttr: function(name, value, silent) {
120         var oldVal = this.getAttr(name);
121         this._$.attr(name, value);
122         if(!silent) {
123             this.triggerChangeEvent('nodeAttrChange', {attr: name, oldVal: oldVal, newVal: value});
124         }
125     },
126
127     getAttrs: function() {
128         var toret = [];
129         for(var i = 0; i < this.nativeNode.attributes.length; i++) {
130             toret.push(this.nativeNode.attributes[i]);
131         }
132         return toret;
133     },
134
135     append: function(documentNode) {
136         this._$.append(documentNode.nativeNode);
137     },
138
139     unwrapContent: function() {
140         var parent = this.parent();
141         if(!parent) {
142             return;
143         }
144
145         var parentContents = parent.contents(),
146             myContents = this.contents(),
147             myIdx = parent.indexOf(this);
148
149         if(myContents.length === 0) {
150             return this.detach();
151         }
152
153         var moveLeftRange, moveRightRange, leftMerged;
154
155         if(myIdx > 0 && (parentContents[myIdx-1].nodeType === TEXT_NODE) && (myContents[0].nodeType === TEXT_NODE)) {
156             parentContents[myIdx-1].appendText(myContents[0].getText());
157             myContents[0].detach();
158             moveLeftRange = true;
159             leftMerged = true;
160         } else {
161             leftMerged = false;
162         }
163
164         if(!(leftMerged && myContents.length === 1)) {
165             if(myIdx < parentContents.length - 1 && (parentContents[myIdx+1].nodeType === TEXT_NODE) && (myContents[myContents.length-1].nodeType === TEXT_NODE)) {
166                 parentContents[myIdx+1].prependText(myContents[myContents.length-1].getText());
167                 myContents[myContents.length-1].detach();
168                 moveRightRange = true;
169             }
170         }
171
172         var childrenLength = this.contents().length;
173         this.contents().forEach(function(child) {
174             this.before(child);
175         }.bind(this));
176
177         this.detach();
178
179         return {
180             element1: parent.contents()[myIdx + (moveLeftRange ? -1 : 0)],
181             element2: parent.contents()[myIdx + childrenLength-1 + (moveRightRange ? 1 : 0)]
182         };
183     },
184
185     toXML: function() {
186         var wrapper = $('<div>');
187         wrapper.append(this._$);
188         return wrapper.html();
189     }
190 });
191
192 var TextNode = function(nativeNode, document) {
193     DocumentNode.call(this, nativeNode, document);
194 };
195
196 $.extend(TextNode.prototype, DocumentNode.prototype, {
197     nodeType: Node.TEXT_NODE,
198
199     getText: function() {
200         return this.nativeNode.data;
201     },
202
203     appendText: function(text) {
204         this.nativeNode.data = this.nativeNode.data + text;
205     },
206
207     prependText: function(text) {
208         this.nativeNode.data = text + this.nativeNode.data;
209     }
210 });
211
212
213 var parseXML = function(xml) {
214     return $(xml)[0];
215 };
216
217 var Document = function(xml) {
218     this.loadXML(xml);
219 };
220
221 $.extend(Document.prototype, Backbone.Events, {
222     ElementNodeFactory: ElementNode,
223     TextNodeFactory: TextNode,
224
225     createElementNode: function(from) {
226         if(!(from instanceof HTMLElement)) {
227             from = $('<' + from.tagName + '>');
228         }
229         return new this.ElementNodeFactory(from, this);
230     },
231
232     createTextNode: function(nativeNode) {
233         return new this.TextNodeFactory(nativeNode, this);
234     },
235
236     loadXML: function(xml) {
237         var $document = $(parseXML(xml));
238
239         var doc = this;
240         Object.defineProperty(this, 'root', {get: function() {
241             return doc.createElementNode($document[0]);
242         }, configurable: true});
243         Object.defineProperty(this, 'dom', {get: function() {
244             return $document[0];
245         }, configurable: true});
246         
247         this.trigger('contentSet');
248     },
249
250     toXML: function() {
251         return this.root.toXML();
252     }
253 });
254
255
256 return {
257     documentFromXML: function(xml) {
258         return new Document(parseXML(xml));
259     },
260
261     elementNodeFromXML: function(xml) {
262         return this.documentFromXML(xml).root;
263     },
264
265     Document: Document,
266     DocumentNode: DocumentNode,
267     ElementNode: ElementNode
268 };
269
270 });