X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/275952d30bfcd6f5aecc2710a0df0cd489ea71f6..f5faecafd614e050a276953335634cc581871218:/src/wlxml/wlxml.js diff --git a/src/wlxml/wlxml.js b/src/wlxml/wlxml.js index fb5b328..d2dbd30 100644 --- a/src/wlxml/wlxml.js +++ b/src/wlxml/wlxml.js @@ -1,8 +1,9 @@ define([ 'libs/jquery', 'libs/underscore', - 'smartxml/smartxml' -], function($, _, smartxml) { + 'smartxml/smartxml', + 'smartxml/transformations' +], function($, _, smartxml, transformations) { 'use strict'; @@ -20,9 +21,19 @@ AttributesList.prototype.keys = function() { return _.keys(this); }; +var installObject = function(instance, klass) { + var methods = classMethods[klass]; + if(methods) { + instance.object = Object.create(methods); + _.keys(methods).forEach(function(key) { + instance.object[key] = _.bind(instance.object[key], instance); + }); + } +} var WLXMLElementNode = function(nativeNode, document) { smartxml.ElementNode.call(this, nativeNode, document); + installObject(this, this.getClass()); }; WLXMLElementNode.prototype = Object.create(smartxml.ElementNode.prototype); @@ -31,7 +42,14 @@ $.extend(WLXMLElementNode.prototype, smartxml.ElementNode.prototype, { return this.getAttr('class') || ''; }, setClass: function(klass) { - return this.setAttr('class', klass); + var methods, object; + if(klass !== this.klass) { + installObject(this, klass); + return this.setAttr('class', klass); + } + }, + is: function(klass) { + return this.getClass().substr(0, klass.length) === klass; }, getMetaAttributes: function() { var toret = new AttributesList(), @@ -49,6 +67,9 @@ $.extend(WLXMLElementNode.prototype, smartxml.ElementNode.prototype, { }.bind(this)); return toret; }, + setMetaAttribute: function(key, value) { + this.setAttr('meta-'+key, value); + }, getOtherAttributes: function() { var toret = {}; this.getAttrs().forEach(function(attr) { @@ -106,7 +127,15 @@ $.extend(WLXMLElementNode.prototype, smartxml.ElementNode.prototype, { } }); - +WLXMLElementNode.prototype.transformations.register(transformations.createContextTransformation({ + name: 'wlxml.setMetaAttribute', + impl: function(args) { + this.setMetaAttribute(args.name, args.value); + }, + getChangeRoot: function() { + return this.context; + } +})); @@ -216,6 +245,8 @@ var wlxmlClasses = { } }; +var classMethods = {}; + return { WLXMLDocumentFromXML: function(xml, options) { options = _.extend({wlxmlClasses: wlxmlClasses}, options); @@ -224,7 +255,27 @@ return { WLXMLElementNodeFromXML: function(xml) { return this.WLXMLDocumentFromXML(xml).root; + }, + + registerExtension: function(extension) { + extension.documentTransformations.forEach(function(method) { + WLXMLDocument.prototype.transformations.register(transformations.createContextTransformation(method)); + }); + + _.pairs(extension.classMethods).forEach(function(pair) { + var className = pair[0], + methods = pair[1]; + _.pairs(methods).forEach(function(pair) { + var methodName = pair[0], + method = pair[1]; + classMethods[className] = classMethods[className] || {}; + classMethods[className][methodName] = method; + }); + + }); + } + }; }); \ No newline at end of file