Roo/DomTemplate.js
[roojs1] / Roo / DomTemplate.js
1 /*
2  * Based on:
3  * Roo JS
4  * (c)) Alan Knowles
5  * Licence : LGPL
6  */
7
8
9 /**
10  * @class Roo.DomTemplate
11  * @extends Roo.Template
12  * An effort at a dom based template engine..
13  *
14  * Similar to XTemplate, except it uses dom parsing to create the template..
15  *
16  * Supported features:
17  *
18  *  Tags:
19
20 <pre><code>
21       {a_variable} - output encoded.
22       {a_variable.format:("Y-m-d")} - call a method on the variable
23       {a_variable:raw} - unencoded output
24       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
25       {a_variable:this.method_on_template(...)} - call a method on the template object.
26  
27 </code></pre>
28  *  The tpl tag:
29 <pre><code>
30         &lt;div roo-for="a_variable or condition.."&gt;&lt;/tpl&gt;
31         &lt;tpl roo-if="a_variable or condition"&gt;&lt;/tpl&gt;
32         &lt;tpl roo-exec="some javascript"&gt;&lt;/tpl&gt;
33         &lt;tpl roo-name="named_template"&gt;&lt;/tpl&gt; 
34   
35 </code></pre>
36  *      
37  */
38 Roo.DomTemplate = function()
39 {
40      Roo.DomTemplate.superclass.constructor.apply(this, arguments);
41     if (this.html) {
42         this.compile();
43     }
44 };
45
46
47 Roo.extend(Roo.DomTemplate, Roo.Template, {
48
49     id : 0,
50     
51     /**
52      * The various sub templates
53      */
54     tpls : false,
55     /**
56      *
57      * basic tag replacing syntax
58      * WORD:WORD()
59      *
60      * // you can fake an object call by doing this
61      *  x.t:(test,tesT) 
62      * 
63      */
64     re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
65
66     
67     iterChild : function (node, method) {
68         for( var i = 0; i < node.childNodes.length; i++) {
69             method.call(this, node.childNodes[i]);
70         }
71     },
72     
73     /**
74      * compile the template
75      *
76      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
77      *
78      */
79     compile: function()
80     {
81         var s = this.html;
82         
83         // covert the html into DOM...
84         
85         var div = document.createElement('div');
86         div.innerHTML = this.html;
87         
88         this.iterChild(div, this.compileNode)
89         
90         
91     },
92     
93     compileNode : function(node) {
94         // test for
95         //Roo.log(node);
96         
97         // skip anything not a tag..
98         if (node.nodeType != 1) {
99             return;
100         }
101         
102         var tpl = {
103             uid : false,
104             id : false,
105             attr : false,
106             value : false,
107             html : '',
108             
109             forCall : false,
110             execCall : false,
111             
112             
113             
114         };
115         switch(true) {
116             case (node.hasAttribute('roo-for')): tpl.attr = 'for'; break;
117             case (node.hasAttribute('roo-if')): tpl.attr = 'if'; break;
118             case (node.hasAttribute('roo-if')): tpl.attr = 'name'; break;
119             case (node.hasAttribute('roo-exec')): tpl.attr = 'exec'; break;
120             // no default..
121         }
122         if (!tpl.attr) {
123             // just itterate children..
124             this.iterChild(node,this.compileNode)
125             return;
126         }
127         tpl.uid = this.id++;
128         var value = node.getAttribute('roo-' +  tpl.attr);
129         node.removeAttribute('roo-'+ tpl.attr);
130         if (tpl.attr != 'name') {
131             var placeholder = document.createTextNode('{domtpl' + tpl.uid + '}');
132             node.parentNode.replaceChild(placeholder,  node);
133         } else {
134             node.parentNode.removeChild(node);
135         }
136         
137         // parent now sees '{domtplXXXX}
138         this.iterChild(node,this.compileNode)
139         
140         // we should now have node body...
141         var div = document.createElement('div');
142         div.appendChild(node);
143         tpl.html = div.innerHTML;
144         
145         
146         Roo.log("TEMPLATE : " + tpl.uid);        
147         Roo.log(html);
148         
149         switch(tpl.attr) {
150             case 'for' :
151                 switch (attr.value) {
152                     case '.':  attr.forCall = new Function('values', 'parent', 'with(values){ return values; }'); break;
153                     case '..': attr.forCall= new Function('values', 'parent', 'with(values){ return parent; }'); break;
154                     default:   attr.forCall= new Function('values', 'parent', 'with(values){ return '+attr.value+'; }');
155                 }
156                 break;
157             
158             case 'exec':
159                 tpl.execCall = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(attr.value))+'; }');
160                 break;
161             
162             case 'if': 
163                 
164                 tpl.ifCall = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(attr.value))+'; }');
165                 }
166         }
167         
168         
169         
170         tpls.push({
171             id:     attr == 'name' ? value : id,
172             target: name,
173             exec:   exec,
174             test:   fn,
175             body:   m[1] || ''
176         });
177         
178         
179         
180     },
181     
182     oldwrapper : function ()
183     { 
184         s = ['<tpl>', s, '</tpl>'].join('');
185     
186         var re     = /<tpl\b[^>]*>((?:(?=([^<]+))\2|<(?!tpl\b[^>]*>))*?)<\/tpl>/,
187             nameRe = /^<tpl\b[^>]*?for="(.*?)"/,
188             ifRe   = /^<tpl\b[^>]*?if="(.*?)"/,
189             execRe = /^<tpl\b[^>]*?exec="(.*?)"/,
190             namedRe = /^<tpl\b[^>]*?name="(\w+)"/,  // named templates..
191             m,
192             id     = 0,
193             tpls   = [];
194     
195         while(true == !!(m = s.match(re))){
196             var forMatch   = m[0].match(nameRe),
197                 ifMatch   = m[0].match(ifRe),
198                 execMatch   = m[0].match(execRe),
199                 namedMatch   = m[0].match(namedRe),
200                 
201                 exp  = null, 
202                 fn   = null,
203                 exec = null,
204                 name = forMatch && forMatch[1] ? forMatch[1] : '';
205                 
206             if (ifMatch) {
207                 // if - puts fn into test..
208                 exp = ifMatch && ifMatch[1] ? ifMatch[1] : null;
209                 if(exp){
210                    fn = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(exp))+'; }');
211                 }
212             }
213             
214             if (execMatch) {
215                 // exec - calls a function... returns empty if true is  returned.
216                 exp = execMatch && execMatch[1] ? execMatch[1] : null;
217                 if(exp){
218                    exec = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(exp))+'; }');
219                 }
220             }
221             
222             
223             if (name) {
224                 // for = 
225                 switch(name){
226                     case '.':  name = new Function('values', 'parent', 'with(values){ return values; }'); break;
227                     case '..': name = new Function('values', 'parent', 'with(values){ return parent; }'); break;
228                     default:   name = new Function('values', 'parent', 'with(values){ return '+name+'; }');
229                 }
230             }
231             var uid = namedMatch ? namedMatch[1] : id;
232             
233             
234             tpls.push({
235                 id:     namedMatch ? namedMatch[1] : id,
236                 target: name,
237                 exec:   exec,
238                 test:   fn,
239                 body:   m[1] || ''
240             });
241             if (namedMatch) {
242                 s = s.replace(m[0], '');
243             } else { 
244                 s = s.replace(m[0], '{xtpl'+ id + '}');
245             }
246             ++id;
247         }
248         this.tpls = [];
249         for(var i = tpls.length-1; i >= 0; --i){
250             this.compileTpl(tpls[i]);
251             this.tpls[tpls[i].id] = tpls[i];
252         }
253         this.master = tpls[tpls.length-1];
254         return this;
255     },
256     /**
257      * same as applyTemplate, except it's done to one of the subTemplates
258      * when using named templates, you can do:
259      *
260      * var str = pl.applySubTemplate('your-name', values);
261      *
262      * 
263      * @param {Number} id of the template
264      * @param {Object} values to apply to template
265      * @param {Object} parent (normaly the instance of this object)
266      */
267     applySubTemplate : function(id, values, parent)
268     {
269         
270         
271         var t = this.tpls[id];
272         
273         
274         try { 
275             if(t.test && !t.test.call(this, values, parent)){
276                 return '';
277             }
278         } catch(e) {
279             Roo.log("Xtemplate.applySubTemplate 'test': Exception thrown");
280             Roo.log(e.toString());
281             Roo.log(t.test);
282             return ''
283         }
284         try { 
285             
286             if(t.exec && t.exec.call(this, values, parent)){
287                 return '';
288             }
289         } catch(e) {
290             Roo.log("Xtemplate.applySubTemplate 'exec': Exception thrown");
291             Roo.log(e.toString());
292             Roo.log(t.exec);
293             return ''
294         }
295         try {
296             var vs = t.target ? t.target.call(this, values, parent) : values;
297             parent = t.target ? values : parent;
298             if(t.target && vs instanceof Array){
299                 var buf = [];
300                 for(var i = 0, len = vs.length; i < len; i++){
301                     buf[buf.length] = t.compiled.call(this, vs[i], parent);
302                 }
303                 return buf.join('');
304             }
305             return t.compiled.call(this, vs, parent);
306         } catch (e) {
307             Roo.log("Xtemplate.applySubTemplate : Exception thrown");
308             Roo.log(e.toString());
309             Roo.log(t.compiled);
310             return '';
311         }
312     },
313
314     compileTpl : function(tpl)
315     {
316         var fm = Roo.util.Format;
317         var useF = this.disableFormats !== true;
318         var sep = Roo.isGecko ? "+" : ",";
319         var undef = function(str) {
320             Roo.log("Property not found :"  + str);
321             return '';
322         };
323         
324         var fn = function(m, name, format, args)
325         {
326             //Roo.log(arguments);
327             args = args ? args.replace(/\\'/g,"'") : args;
328             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
329             if (typeof(format) == 'undefined') {
330                 format= 'htmlEncode';
331             }
332             if (format == 'raw' ) {
333                 format = false;
334             }
335             
336             if(name.substr(0, 4) == 'xtpl'){
337                 return "'"+ sep +'this.applySubTemplate('+name.substr(4)+', values, parent)'+sep+"'";
338             }
339             
340             // build an array of options to determine if value is undefined..
341             
342             // basically get 'xxxx.yyyy' then do
343             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
344             //    (function () { Roo.log("Property not found"); return ''; })() :
345             //    ......
346             
347             var udef_ar = [];
348             var lookfor = '';
349             Roo.each(name.split('.'), function(st) {
350                 lookfor += (lookfor.length ? '.': '') + st;
351                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
352             });
353             
354             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
355             
356             
357             if(format && useF){
358                 
359                 args = args ? ',' + args : "";
360                  
361                 if(format.substr(0, 5) != "this."){
362                     format = "fm." + format + '(';
363                 }else{
364                     format = 'this.call("'+ format.substr(5) + '", ';
365                     args = ", values";
366                 }
367                 
368                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
369             }
370              
371             if (args.length) {
372                 // called with xxyx.yuu:(test,test)
373                 // change to ()
374                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
375             }
376             // raw.. - :raw modifier..
377             return "'"+ sep + udef_st  + name + ")"+sep+"'";
378             
379         };
380         var body;
381         // branched to use + in gecko and [].join() in others
382         if(Roo.isGecko){
383             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
384                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
385                     "';};};";
386         }else{
387             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
388             body.push(tpl.body.replace(/(\r\n|\n)/g,
389                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
390             body.push("'].join('');};};");
391             body = body.join('');
392         }
393         
394         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
395        
396         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
397         eval(body);
398         
399         return this;
400     },
401
402     applyTemplate : function(values){
403         return this.master.compiled.call(this, values, {});
404         //var s = this.subs;
405     },
406
407     apply : function(){
408         return this.applyTemplate.apply(this, arguments);
409     }
410
411  });
412
413 Roo.XTemplate.from = function(el){
414     el = Roo.getDom(el);
415     return new Roo.XTemplate(el.value || el.innerHTML);
416 };