6 'smartxml/transformations',
8 ], function($, _, Backbone, events, transformations, coreTransformations) {
13 var TEXT_NODE = Node.TEXT_NODE;
17 var DocumentNode = function(nativeNode, document) {
19 throw new Error('undefined document for a node');
21 this.document = document;
22 this._setNativeNode(nativeNode);
26 $.extend(DocumentNode.prototype, {
28 transform: function(Transformation, args) {
29 var transformation = new Transformation(this.document, this, args);
30 return this.document.transform(transformation);
33 _setNativeNode: function(nativeNode) {
34 this.nativeNode = nativeNode;
35 this._$ = $(nativeNode);
39 var clone = this._$.clone(true, true);
40 // clone.find('*').addBack().each(function() {
42 // if(n.data('canvasElement')) {
43 // n.data('canvasElement', $.extend(true, {}, n.data('canvasElement')));
44 // n.data('canvasElement').$element = n.data('canvasElement').$element.clone(true, true);
47 return this.document.createDocumentNode(clone[0]);
50 getPath: function(ancestor) {
51 var nodePath = [this].concat(this.parents()),
53 ancestor = ancestor || this.document.root;
55 nodePath.some(function(node, i) {
56 if(node.sameNode(ancestor)) {
62 if(idx !== 'undefined') {
63 nodePath = nodePath.slice(0, idx);
65 toret = nodePath.map(function(node) {return node.getIndex(); });
71 return this.document.root.sameNode(this);
74 sameNode: function(otherNode) {
75 return !!(otherNode) && this.nativeNode === otherNode.nativeNode;
79 var parentNode = this.nativeNode.parentNode;
80 if(parentNode && parentNode.nodeType === Node.ELEMENT_NODE) {
81 return this.document.createDocumentNode(parentNode);
87 var parent = this.parent(),
88 parents = parent ? parent.parents() : [];
90 parents.unshift(parent);
96 var myIdx = this.getIndex();
97 return myIdx > 0 ? this.parent().contents()[myIdx-1] : null;
104 var myIdx = this.getIndex(),
105 parentContents = this.parent().contents();
106 return myIdx < parentContents.length - 1 ? parentContents[myIdx+1] : null;
109 isSurroundedByTextElements: function() {
110 var prev = this.prev(),
112 return prev && (prev.nodeType === Node.TEXT_NODE) && next && (next.nodeType === Node.TEXT_NODE);
115 triggerChangeEvent: function(type, metaData, origParent, nodeWasContained) {
116 var node = (metaData && metaData.node) ? metaData.node : this,
117 event = new events.ChangeEvent(type, $.extend({node: node}, metaData || {}));
118 if(type === 'nodeDetached' || this.document.containsNode(event.meta.node)) {
119 this.document.trigger('change', event);
121 if((type === 'nodeAdded' || type === 'nodeMoved') && !this.document.containsNode(this) && nodeWasContained) {
122 event = new events.ChangeEvent('nodeDetached', {node: node, parent: origParent});
123 this.document.trigger('change', event);
127 getNodeInsertion: function(node) {
128 return this.document.getNodeInsertion(node);
131 getIndex: function() {
135 return this.parent().indexOf(this);
140 var ElementNode = function(nativeNode, document) {
141 DocumentNode.call(this, nativeNode, document);
143 ElementNode.prototype = Object.create(DocumentNode.prototype);
145 $.extend(ElementNode.prototype, {
146 nodeType: Node.ELEMENT_NODE,
148 setData: function(key, value) {
149 if(value !== undefined) {
150 this._$.data(key, value);
152 this._$.removeData(_.keys(this._$.data()));
157 getData: function(key) {
159 return this._$.data(key);
161 return this._$.data();
164 getTagName: function() {
165 return this.nativeNode.tagName.toLowerCase();
168 contents: function(selector) {
170 document = this.document;
172 this._$.children(selector).each(function() {
173 toret.push(document.createDocumentNode(this));
176 this._$.contents().each(function() {
177 toret.push(document.createDocumentNode(this));
183 indexOf: function(node) {
184 return this._$.contents().index(node._$);
187 getAttr: function(name) {
188 return this._$.attr(name);
191 getAttrs: function() {
193 for(var i = 0; i < this.nativeNode.attributes.length; i++) {
194 toret.push(this.nativeNode.attributes[i]);
200 var wrapper = $('<div>');
201 wrapper.append(this._getXMLDOMToDump());
202 return wrapper.html();
205 _getXMLDOMToDump: function() {
211 var TextNode = function(nativeNode, document) {
212 DocumentNode.call(this, nativeNode, document);
214 TextNode.prototype = Object.create(DocumentNode.prototype);
216 $.extend(TextNode.prototype, {
217 nodeType: Node.TEXT_NODE,
219 getText: function() {
220 return this.nativeNode.data;
223 triggerTextChangeEvent: function() {
224 var event = new events.ChangeEvent('nodeTextChange', {node: this});
225 this.document.trigger('change', event);
230 var parseXML = function(xml) {
231 return $($.trim(xml))[0];
234 var registerTransformation = function(desc, name, target) {
235 var Transformation = transformations.createContextTransformation(desc, name);
236 //+ to sie powinna nazywac registerTransformationFromDesc or sth
237 //+ ew. spr czy nie override (tylko jesli powyzej sa prototypy to trudno do nich dojsc)
238 target[name] = function(args) {
240 return instance.transform(Transformation, args);
244 var registerMethod = function(methodName, method, target) {
245 if(target[methodName]) {
246 throw new Error('Cannot extend {target} with method name {methodName}. Name already exists.'
247 .replace('{target}', target)
248 .replace('{methodName}', methodName)
251 target[methodName] = method;
255 var Document = function(xml) {
259 this._transformationLevel = 0;
261 this._nodeMethods = {};
262 this._textNodeMethods = {};
263 this._elementNodeMethods = {};
264 this._nodeTransformations = {};
265 this._textNodeTransformations = {};
266 this._elementNodeTransformations = {};
269 $.extend(Document.prototype, Backbone.Events, {
270 ElementNodeFactory: ElementNode,
271 TextNodeFactory: TextNode,
273 createDocumentNode: function(from) {
274 if(!(from instanceof Node)) {
275 if(from.text !== undefined) {
276 /* globals document */
277 from = document.createTextNode(from.text);
279 var node = $('<' + from.tagName + '>');
281 _.keys(from.attrs || {}).forEach(function(key) {
282 node.attr(key, from.attrs[key]);
288 var Factory, typeMethods, typeTransformations;
289 if(from.nodeType === Node.TEXT_NODE) {
290 Factory = this.TextNodeFactory;
291 typeMethods = this._textNodeMethods;
292 typeTransformations = this._textNodeTransformations;
293 } else if(from.nodeType === Node.ELEMENT_NODE) {
294 Factory = this.ElementNodeFactory;
295 typeMethods = this._elementNodeMethods;
296 typeTransformations = this._elementNodeTransformations;
298 var toret = new Factory(from, this);
299 _.extend(toret, this._nodeMethods);
300 _.extend(toret, typeMethods);
301 _.extend(toret, this._nodeTransformations);
302 _.extend(toret, typeTransformations);
306 loadXML: function(xml, options) {
307 options = options || {};
308 this._defineDocumentProperties($(parseXML(xml)));
309 if(!options.silent) {
310 this.trigger('contentSet');
315 return this.root.toXML();
318 containsNode: function(node) {
319 return this.root && (node.nativeNode === this.root.nativeNode || node._$.parents().index(this.root._$) !== -1);
322 getSiblingParents: function(params) {
323 var parents1 = [params.node1].concat(params.node1.parents()).reverse(),
324 parents2 = [params.node2].concat(params.node2.parents()).reverse(),
325 noSiblingParents = null;
327 if(parents1.length === 0 || parents2.length === 0 || !(parents1[0].sameNode(parents2[0]))) {
328 return noSiblingParents;
332 for(i = 0; i < Math.min(parents1.length, parents2.length); i++) {
333 if(parents1[i].sameNode(parents2[i])) {
338 return {node1: parents1[i], node2: parents2[i]};
341 trigger: function() {
342 //console.log('trigger: ' + arguments[0] + (arguments[1] ? ', ' + arguments[1].type : ''));
343 Backbone.Events.trigger.apply(this, arguments);
346 getNodeInsertion: function(node) {
348 if(node instanceof DocumentNode) {
349 insertion.ofNode = node;
350 insertion.insertsNew = !this.containsNode(node);
352 insertion.ofNode = this.createDocumentNode(node);
353 insertion.insertsNew = true;
358 registerMethod: function(methodName, method, dstName) {
362 documentNode: doc._nodeMethods,
363 textNode: doc._textNodeMethods,
364 elementNode: doc._elementNodeMethods
366 registerMethod(methodName, method, destination);
369 registerTransformation: function(desc, name, dstName) {
373 documentNode: doc._nodeTransformations,
374 textNode: doc._textNodeTransformations,
375 elementNode: doc._elementNodeTransformations
377 registerTransformation(desc, name, destination);
380 registerExtension: function(extension) {
383 existingPropertyNames = _.values(this);
385 ['document', 'documentNode', 'elementNode', 'textNode'].forEach(function(dstName) {
386 var dstExtension = extension[dstName];
388 if(dstExtension.methods) {
389 _.pairs(dstExtension.methods).forEach(function(pair) {
390 var methodName = pair[0],
393 doc.registerMethod(methodName, method, dstName);
398 if(dstExtension.transformations) {
399 _.pairs(dstExtension.transformations).forEach(function(pair) {
402 doc.registerTransformation(desc, name, dstName);
409 transform: function(Transformation, args) {
410 //console.log('transform');
411 var toret, transformation;
413 // ref: odrebnie przygotowanie transformacji, odrebnie jej wykonanie (to pierwsze to analog transform z node)
415 if(typeof Transformation === 'function') {
416 transformation = new Transformation(this, this, args);
418 transformation = Transformation;
421 this._transformationLevel++;
422 toret = transformation.run();
423 if(this._transformationLevel === 1) {
424 this.undoStack.push(transformation);
426 this._transformationLevel--;
427 //console.log('clearing redo stack');
431 throw new Error('Transformation ' + transformation + ' doesn\'t exist!');
435 var transformation = this.undoStack.pop();
437 transformation.undo();
438 this.redoStack.push(transformation);
442 var transformation = this.redoStack.pop();
444 transformation.run();
445 this.undoStack.push(transformation);
449 getNodeByPath: function(path) {
450 var toret = this.root;
451 path.forEach(function(idx) {
452 toret = toret.contents()[idx];
457 _defineDocumentProperties: function($document) {
459 Object.defineProperty(doc, 'root', {get: function() {
460 return doc.createDocumentNode($document[0]);
461 }, configurable: true});
462 Object.defineProperty(doc, 'dom', {get: function() {
464 }, configurable: true});
470 documentFromXML: function(xml) {
471 var doc = new Document(xml);
472 doc.registerExtension(coreTransformations);
476 elementNodeFromXML: function(xml) {
477 return this.documentFromXML(xml).root;
481 DocumentNode: DocumentNode,
482 ElementNode: ElementNode,