sync
[roojs1] / Roo / DomHelper.js
1 /*
2  * Based on:
3  * Ext JS Library 1.1.1
4  * Copyright(c) 2006-2007, Ext JS, LLC.
5  *
6  * Originally Released Under LGPL - original licence link has changed is not relivant.
7  *
8  * Fork - LGPL
9  * <script type="text/javascript">
10  */
11
12
13 // nasty IE9 hack - what a pile of crap that is..
14
15  if (typeof Range != "undefined" && typeof Range.prototype.createContextualFragment == "undefined") {
16     Range.prototype.createContextualFragment = function (html) {
17         var doc = window.document;
18         var container = doc.createElement("div");
19         container.innerHTML = html;
20         var frag = doc.createDocumentFragment(), n;
21         while ((n = container.firstChild)) {
22             frag.appendChild(n);
23         }
24         return frag;
25     };
26 }
27
28 /**
29  * @class Roo.DomHelper
30  * Utility class for working with DOM and/or Templates. It transparently supports using HTML fragments or DOM.
31  * For more information see <a href="http://web.archive.org/web/20071221063734/http://www.jackslocum.com/blog/2006/10/06/domhelper-create-elements-using-dom-html-fragments-or-templates/">this blog post with examples</a>.
32  * @static
33  */
34 Roo.DomHelper = function(){
35     var tempTableEl = null;
36     var emptyTags = /^(?:br|frame|hr|img|input|link|meta|range|spacer|wbr|area|param|col)$/i;
37     var tableRe = /^table|tbody|tr|td$/i;
38     var xmlns = {};
39     // build as innerHTML where available
40     /** @ignore */
41     var createHtml = function(o){
42         if(typeof o == 'string'){
43             return o;
44         }
45         var b = "";
46         if(!o.tag){
47             o.tag = "div";
48         }
49         b += "<" + o.tag;
50         for(var attr in o){
51             if(attr == "tag" || attr == "children" || attr == "cn" || attr == "html" || typeof o[attr] == "function") { continue; }
52             if(attr == "style"){
53                 var s = o["style"];
54                 if(typeof s == "function"){
55                     s = s.call();
56                 }
57                 if(typeof s == "string"){
58                     b += ' style="' + s + '"';
59                 }else if(typeof s == "object"){
60                     b += ' style="';
61                     for(var key in s){
62                         if(typeof s[key] != "function"){
63                             b += key + ":" + s[key] + ";";
64                         }
65                     }
66                     b += '"';
67                 }
68             }else{
69                 if(attr == "cls"){
70                     b += ' class="' + o["cls"] + '"';
71                 }else if(attr == "htmlFor"){
72                     b += ' for="' + o["htmlFor"] + '"';
73                 }else{
74                     b += " " + attr + '="' + o[attr] + '"';
75                 }
76             }
77         }
78         if(emptyTags.test(o.tag)){
79             b += "/>";
80         }else{
81             b += ">";
82             var cn = o.children || o.cn;
83             if(cn){
84                 //http://bugs.kde.org/show_bug.cgi?id=71506
85                 if((cn instanceof Array) || (Roo.isSafari && typeof(cn.join) == "function")){
86                     for(var i = 0, len = cn.length; i < len; i++) {
87                         b += createHtml(cn[i], b);
88                     }
89                 }else{
90                     b += createHtml(cn, b);
91                 }
92             }
93             if(o.html){
94                 b += o.html;
95             }
96             b += "</" + o.tag + ">";
97         }
98         return b;
99     };
100
101     // build as dom
102     /** @ignore */
103     var createDom = function(o, parentNode){
104          
105         // defininition craeted..
106         var ns = false;
107         if (o.ns && o.ns != 'html') {
108                
109             if (o.xmlns && typeof(xmlns[o.ns]) == 'undefined') {
110                 xmlns[o.ns] = o.xmlns;
111                 ns = o.xmlns;
112             }
113             if (typeof(xmlns[o.ns]) == 'undefined') {
114                 console.log("Trying to create namespace element " + o.ns + ", however no xmlns was sent to builder previously");
115             }
116             ns = xmlns[o.ns];
117         }
118         
119         
120         if (typeof(o) == 'string') {
121             return parentNode.appendChild(document.createTextNode(o));
122         }
123         o.tag = o.tag || div;
124         if (o.ns && Roo.isIE) {
125             ns = false;
126             o.tag = o.ns + ':' + o.tag;
127             
128         }
129         var el = ns ? document.createElementNS( ns, o.tag||'div') :  document.createElement(o.tag||'div');
130         var useSet = el.setAttribute ? true : false; // In IE some elements don't have setAttribute
131         for(var attr in o){
132             
133             if(attr == "tag" || attr == "ns" ||attr == "xmlns" ||attr == "children" || attr == "cn" || attr == "html" || 
134                     attr == "style" || typeof o[attr] == "function") { continue; }
135                     
136             if(attr=="cls" && Roo.isIE){
137                 el.className = o["cls"];
138             }else{
139                 if(useSet) { el.setAttribute(attr=="cls" ? 'class' : attr, o[attr]);}
140                 else { 
141                     el[attr] = o[attr];
142                 }
143             }
144         }
145         Roo.DomHelper.applyStyles(el, o.style);
146         var cn = o.children || o.cn;
147         if(cn){
148             //http://bugs.kde.org/show_bug.cgi?id=71506
149              if((cn instanceof Array) || (Roo.isSafari && typeof(cn.join) == "function")){
150                 for(var i = 0, len = cn.length; i < len; i++) {
151                     createDom(cn[i], el);
152                 }
153             }else{
154                 createDom(cn, el);
155             }
156         }
157         if(o.html){
158             el.innerHTML = o.html;
159         }
160         if(parentNode){
161            parentNode.appendChild(el);
162         }
163         return el;
164     };
165
166     var ieTable = function(depth, s, h, e){
167         tempTableEl.innerHTML = [s, h, e].join('');
168         var i = -1, el = tempTableEl;
169         while(++i < depth && el.firstChild){
170             el = el.firstChild;
171         }
172         return el;
173     };
174
175     // kill repeat to save bytes
176     var ts = '<table>',
177         te = '</table>',
178         tbs = ts+'<tbody>',
179         tbe = '</tbody>'+te,
180         trs = tbs + '<tr>',
181         tre = '</tr>'+tbe;
182
183     /**
184      * @ignore
185      * Nasty code for IE's broken table implementation
186      */
187     var insertIntoTable = function(tag, where, el, html){
188         if(!tempTableEl){
189             tempTableEl = document.createElement('div');
190         }
191         var node;
192         var before = null;
193         if(tag == 'td'){
194             if(where == 'afterbegin' || where == 'beforeend'){ // INTO a TD
195                 return;
196             }
197             if(where == 'beforebegin'){
198                 before = el;
199                 el = el.parentNode;
200             } else{
201                 before = el.nextSibling;
202                 el = el.parentNode;
203             }
204             node = ieTable(4, trs, html, tre);
205         }
206         else if(tag == 'tr'){
207             if(where == 'beforebegin'){
208                 before = el;
209                 el = el.parentNode;
210                 node = ieTable(3, tbs, html, tbe);
211             } else if(where == 'afterend'){
212                 before = el.nextSibling;
213                 el = el.parentNode;
214                 node = ieTable(3, tbs, html, tbe);
215             } else{ // INTO a TR
216                 if(where == 'afterbegin'){
217                     before = el.firstChild;
218                 }
219                 node = ieTable(4, trs, html, tre);
220             }
221         } else if(tag == 'tbody'){
222             if(where == 'beforebegin'){
223                 before = el;
224                 el = el.parentNode;
225                 node = ieTable(2, ts, html, te);
226             } else if(where == 'afterend'){
227                 before = el.nextSibling;
228                 el = el.parentNode;
229                 node = ieTable(2, ts, html, te);
230             } else{
231                 if(where == 'afterbegin'){
232                     before = el.firstChild;
233                 }
234                 node = ieTable(3, tbs, html, tbe);
235             }
236         } else{ // TABLE
237             if(where == 'beforebegin' || where == 'afterend'){ // OUTSIDE the table
238                 return;
239             }
240             if(where == 'afterbegin'){
241                 before = el.firstChild;
242             }
243             node = ieTable(2, ts, html, te);
244         }
245         el.insertBefore(node, before);
246         return node;
247     };
248     
249     // this is a bit like the react update code...
250     // 
251     
252     var updateNode = function(from, to)
253     {
254         // should we handle non-standard elements?
255         
256         if (from.nodeType != to.nodeType) {
257             from.parentNode.replaceChild(to, from);
258         }
259         
260         if (from.nodeType == 3) {
261             // assume it's text?!
262             if (from.data == to.data) {
263                 return;
264             }
265             from.data = to.data;
266             return;
267         }
268         
269         // assume 'to' doesnt have '1/3 nodetypes!
270         if (from.nodeType !=1 || from.tagName != to.tagName) {
271             from.parentNode.replaceChild(to, from);
272             return;
273         }
274         // compare attributes
275         var ar = Array.from(from.attributes);
276         for(var i = 0; i< ar.length;i++) {
277             if (to.hasAttribute(ar[i].name)) {
278                 continue;
279             }
280             from.removeAttribute(ar[i].name);
281         }
282         ar = to.attributes;
283         for(var i = 0; i< ar.length;i++) {
284             if (from.getAttribute(ar[i].name) == to.getAttribute(ar[i].name)) {
285                 continue;
286             }
287             from.setAttribute(ar[i].name, to.getAttribute(ar[i].name));
288         }
289         // children
290         var far = Array.from(from.childNodes);
291         var tar = Array.from(to.childNodes);
292         // if the lengths are different.. then it's probably a editable content change, rather than
293         // a change of the block definition..
294         if (from.innerHTML == to.innerHTML) {
295             return;
296         }
297         if (far.length != tar.length) {
298             from.innerHTML = to.innerHTML;
299             return;
300         }
301         
302         for(var i = 0; i < far.length; i++) {
303             updateNode(far[i], tar[i]);
304         }
305         
306         
307     };
308     
309     
310
311     return {
312         /** True to force the use of DOM instead of html fragments @type Boolean */
313         useDom : false,
314     
315         /**
316          * Returns the markup for the passed Element(s) config
317          * @param {Object} o The Dom object spec (and children)
318          * @return {String}
319          */
320         markup : function(o){
321             return createHtml(o);
322         },
323     
324         /**
325          * Applies a style specification to an element
326          * @param {String/HTMLElement} el The element to apply styles to
327          * @param {String/Object/Function} styles A style specification string eg "width:100px", or object in the form {width:"100px"}, or
328          * a function which returns such a specification.
329          */
330         applyStyles : function(el, styles){
331             if(styles){
332                el = Roo.fly(el);
333                if(typeof styles == "string"){
334                    var re = /\s?([a-z\-]*)\:\s?([^;]*);?/gi;
335                    var matches;
336                    while ((matches = re.exec(styles)) != null){
337                        el.setStyle(matches[1], matches[2]);
338                    }
339                }else if (typeof styles == "object"){
340                    for (var style in styles){
341                       el.setStyle(style, styles[style]);
342                    }
343                }else if (typeof styles == "function"){
344                     Roo.DomHelper.applyStyles(el, styles.call());
345                }
346             }
347         },
348     
349         /**
350          * Inserts an HTML fragment into the Dom
351          * @param {String} where Where to insert the html in relation to el - beforeBegin, afterBegin, beforeEnd, afterEnd.
352          * @param {HTMLElement} el The context element
353          * @param {String} html The HTML fragmenet
354          * @return {HTMLElement} The new node
355          */
356         insertHtml : function(where, el, html){
357             where = where.toLowerCase();
358             if(el.insertAdjacentHTML){
359                 if(tableRe.test(el.tagName)){
360                     var rs;
361                     if(rs = insertIntoTable(el.tagName.toLowerCase(), where, el, html)){
362                         return rs;
363                     }
364                 }
365                 switch(where){
366                     case "beforebegin":
367                         el.insertAdjacentHTML('BeforeBegin', html);
368                         return el.previousSibling;
369                     case "afterbegin":
370                         el.insertAdjacentHTML('AfterBegin', html);
371                         return el.firstChild;
372                     case "beforeend":
373                         el.insertAdjacentHTML('BeforeEnd', html);
374                         return el.lastChild;
375                     case "afterend":
376                         el.insertAdjacentHTML('AfterEnd', html);
377                         return el.nextSibling;
378                 }
379                 throw 'Illegal insertion point -> "' + where + '"';
380             }
381             var range = el.ownerDocument.createRange();
382             var frag;
383             switch(where){
384                  case "beforebegin":
385                     range.setStartBefore(el);
386                     frag = range.createContextualFragment(html);
387                     el.parentNode.insertBefore(frag, el);
388                     return el.previousSibling;
389                  case "afterbegin":
390                     if(el.firstChild){
391                         range.setStartBefore(el.firstChild);
392                         frag = range.createContextualFragment(html);
393                         el.insertBefore(frag, el.firstChild);
394                         return el.firstChild;
395                     }else{
396                         el.innerHTML = html;
397                         return el.firstChild;
398                     }
399                 case "beforeend":
400                     if(el.lastChild){
401                         range.setStartAfter(el.lastChild);
402                         frag = range.createContextualFragment(html);
403                         el.appendChild(frag);
404                         return el.lastChild;
405                     }else{
406                         el.innerHTML = html;
407                         return el.lastChild;
408                     }
409                 case "afterend":
410                     range.setStartAfter(el);
411                     frag = range.createContextualFragment(html);
412                     el.parentNode.insertBefore(frag, el.nextSibling);
413                     return el.nextSibling;
414                 }
415                 throw 'Illegal insertion point -> "' + where + '"';
416         },
417     
418         /**
419          * Creates new Dom element(s) and inserts them before el
420          * @param {String/HTMLElement/Element} el The context element
421          * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
422          * @param {Boolean} returnElement (optional) true to return a Roo.Element
423          * @return {HTMLElement/Roo.Element} The new node
424          */
425         insertBefore : function(el, o, returnElement){
426             return this.doInsert(el, o, returnElement, "beforeBegin");
427         },
428     
429         /**
430          * Creates new Dom element(s) and inserts them after el
431          * @param {String/HTMLElement/Element} el The context element
432          * @param {Object} o The Dom object spec (and children)
433          * @param {Boolean} returnElement (optional) true to return a Roo.Element
434          * @return {HTMLElement/Roo.Element} The new node
435          */
436         insertAfter : function(el, o, returnElement){
437             return this.doInsert(el, o, returnElement, "afterEnd", "nextSibling");
438         },
439     
440         /**
441          * Creates new Dom element(s) and inserts them as the first child of el
442          * @param {String/HTMLElement/Element} el The context element
443          * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
444          * @param {Boolean} returnElement (optional) true to return a Roo.Element
445          * @return {HTMLElement/Roo.Element} The new node
446          */
447         insertFirst : function(el, o, returnElement){
448             return this.doInsert(el, o, returnElement, "afterBegin");
449         },
450     
451         // private
452         doInsert : function(el, o, returnElement, pos, sibling){
453             el = Roo.getDom(el);
454             var newNode;
455             if(this.useDom || o.ns){
456                 newNode = createDom(o, null);
457                 el.parentNode.insertBefore(newNode, sibling ? el[sibling] : el);
458             }else{
459                 var html = createHtml(o);
460                 newNode = this.insertHtml(pos, el, html);
461             }
462             return returnElement ? Roo.get(newNode, true) : newNode;
463         },
464     
465         /**
466          * Creates new Dom element(s) and appends them to el
467          * @param {String/HTMLElement/Element} el The context element
468          * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
469          * @param {Boolean} returnElement (optional) true to return a Roo.Element
470          * @return {HTMLElement/Roo.Element} The new node
471          */
472         append : function(el, o, returnElement){
473             el = Roo.getDom(el);
474             var newNode;
475             if(this.useDom || o.ns){
476                 newNode = createDom(o, null);
477                 el.appendChild(newNode);
478             }else{
479                 var html = createHtml(o);
480                 newNode = this.insertHtml("beforeEnd", el, html);
481             }
482             return returnElement ? Roo.get(newNode, true) : newNode;
483         },
484     
485         /**
486          * Creates new Dom element(s) and overwrites the contents of el with them
487          * @param {String/HTMLElement/Element} el The context element
488          * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
489          * @param {Boolean} returnElement (optional) true to return a Roo.Element
490          * @return {HTMLElement/Roo.Element} The new node
491          */
492         overwrite : function(el, o, returnElement)
493         {
494             el = Roo.getDom(el);
495             if (o.ns) {
496               
497                 while (el.childNodes.length) {
498                     el.removeChild(el.firstChild);
499                 }
500                 createDom(o, el);
501             } else {
502                 el.innerHTML = createHtml(o);   
503             }
504             
505             return returnElement ? Roo.get(el.firstChild, true) : el.firstChild;
506         },
507     
508         /**
509          * Creates a new Roo.DomHelper.Template from the Dom object spec
510          * @param {Object} o The Dom object spec (and children)
511          * @return {Roo.DomHelper.Template} The new template
512          */
513         createTemplate : function(o){
514             var html = createHtml(o);
515             return new Roo.Template(html);
516         },
517          /**
518          * Updates the first element with the spec from the o (replacing if necessary)
519          * This iterates through the children, and updates attributes / children etc..
520          * @param {String/HTMLElement/Element} el The context element
521          * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
522          */
523         
524         update : function(el, o)
525         {
526             updateNode(Roo.getDom(el), createDom(o));
527             
528         }
529         
530         
531     };
532 }();