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         tpl.id = tpl.uid;
150         switch(tpl.attr) {
151             case 'for' :
152                 switch (attr.value) {
153                     case '.':  attr.forCall = new Function('values', 'parent', 'with(values){ return values; }'); break;
154                     case '..': attr.forCall= new Function('values', 'parent', 'with(values){ return parent; }'); break;
155                     default:   attr.forCall= new Function('values', 'parent', 'with(values){ return '+attr.value+'; }');
156                 }
157                 break;
158             
159             case 'exec':
160                 tpl.execCall = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(attr.value))+'; }');
161                 break;
162             
163             case 'if':     
164                 tpl.ifCall = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(attr.value))+'; }');
165                 break;
166             
167             case 'name':
168                 tpl.id  = value; // replace non characters???
169                 break;
170             
171         }
172         
173         
174         
175         tpls.push({
176             id:     attr == 'name' ? value : id,
177             target: name,
178             exec:   exec,
179             test:   fn,
180             body:   m[1] || ''
181         });
182         
183         
184         
185     },
186     
187     oldwrapper : function ()
188     { 
189         s = ['<tpl>', s, '</tpl>'].join('');
190     
191         var re     = /<tpl\b[^>]*>((?:(?=([^<]+))\2|<(?!tpl\b[^>]*>))*?)<\/tpl>/,
192             nameRe = /^<tpl\b[^>]*?for="(.*?)"/,
193             ifRe   = /^<tpl\b[^>]*?if="(.*?)"/,
194             execRe = /^<tpl\b[^>]*?exec="(.*?)"/,
195             namedRe = /^<tpl\b[^>]*?name="(\w+)"/,  // named templates..
196             m,
197             id     = 0,
198             tpls   = [];
199     
200         while(true == !!(m = s.match(re))){
201             var forMatch   = m[0].match(nameRe),
202                 ifMatch   = m[0].match(ifRe),
203                 execMatch   = m[0].match(execRe),
204                 namedMatch   = m[0].match(namedRe),
205                 
206                 exp  = null, 
207                 fn   = null,
208                 exec = null,
209                 name = forMatch && forMatch[1] ? forMatch[1] : '';
210                 
211             if (ifMatch) {
212                 // if - puts fn into test..
213                 exp = ifMatch && ifMatch[1] ? ifMatch[1] : null;
214                 if(exp){
215                    fn = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(exp))+'; }');
216                 }
217             }
218             
219             if (execMatch) {
220                 // exec - calls a function... returns empty if true is  returned.
221                 exp = execMatch && execMatch[1] ? execMatch[1] : null;
222                 if(exp){
223                    exec = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(exp))+'; }');
224                 }
225             }
226             
227             
228             if (name) {
229                 // for = 
230                 switch(name){
231                     case '.':  name = new Function('values', 'parent', 'with(values){ return values; }'); break;
232                     case '..': name = new Function('values', 'parent', 'with(values){ return parent; }'); break;
233                     default:   name = new Function('values', 'parent', 'with(values){ return '+name+'; }');
234                 }
235             }
236             var uid = namedMatch ? namedMatch[1] : id;
237             
238             
239             tpls.push({
240                 id:     namedMatch ? namedMatch[1] : id,
241                 target: name,
242                 exec:   exec,
243                 test:   fn,
244                 body:   m[1] || ''
245             });
246             if (namedMatch) {
247                 s = s.replace(m[0], '');
248             } else { 
249                 s = s.replace(m[0], '{xtpl'+ id + '}');
250             }
251             ++id;
252         }
253         this.tpls = [];
254         for(var i = tpls.length-1; i >= 0; --i){
255             this.compileTpl(tpls[i]);
256             this.tpls[tpls[i].id] = tpls[i];
257         }
258         this.master = tpls[tpls.length-1];
259         return this;
260     },
261     /**
262      * same as applyTemplate, except it's done to one of the subTemplates
263      * when using named templates, you can do:
264      *
265      * var str = pl.applySubTemplate('your-name', values);
266      *
267      * 
268      * @param {Number} id of the template
269      * @param {Object} values to apply to template
270      * @param {Object} parent (normaly the instance of this object)
271      */
272     applySubTemplate : function(id, values, parent)
273     {
274         
275         
276         var t = this.tpls[id];
277         
278         
279         try { 
280             if(t.test && !t.test.call(this, values, parent)){
281                 return '';
282             }
283         } catch(e) {
284             Roo.log("Xtemplate.applySubTemplate 'test': Exception thrown");
285             Roo.log(e.toString());
286             Roo.log(t.test);
287             return ''
288         }
289         try { 
290             
291             if(t.exec && t.exec.call(this, values, parent)){
292                 return '';
293             }
294         } catch(e) {
295             Roo.log("Xtemplate.applySubTemplate 'exec': Exception thrown");
296             Roo.log(e.toString());
297             Roo.log(t.exec);
298             return ''
299         }
300         try {
301             var vs = t.target ? t.target.call(this, values, parent) : values;
302             parent = t.target ? values : parent;
303             if(t.target && vs instanceof Array){
304                 var buf = [];
305                 for(var i = 0, len = vs.length; i < len; i++){
306                     buf[buf.length] = t.compiled.call(this, vs[i], parent);
307                 }
308                 return buf.join('');
309             }
310             return t.compiled.call(this, vs, parent);
311         } catch (e) {
312             Roo.log("Xtemplate.applySubTemplate : Exception thrown");
313             Roo.log(e.toString());
314             Roo.log(t.compiled);
315             return '';
316         }
317     },
318
319     compileTpl : function(tpl)
320     {
321         var fm = Roo.util.Format;
322         var useF = this.disableFormats !== true;
323         var sep = Roo.isGecko ? "+" : ",";
324         var undef = function(str) {
325             Roo.log("Property not found :"  + str);
326             return '';
327         };
328         
329         var fn = function(m, name, format, args)
330         {
331             //Roo.log(arguments);
332             args = args ? args.replace(/\\'/g,"'") : args;
333             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
334             if (typeof(format) == 'undefined') {
335                 format= 'htmlEncode';
336             }
337             if (format == 'raw' ) {
338                 format = false;
339             }
340             
341             if(name.substr(0, 4) == 'xtpl'){
342                 return "'"+ sep +'this.applySubTemplate('+name.substr(4)+', values, parent)'+sep+"'";
343             }
344             
345             // build an array of options to determine if value is undefined..
346             
347             // basically get 'xxxx.yyyy' then do
348             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
349             //    (function () { Roo.log("Property not found"); return ''; })() :
350             //    ......
351             
352             var udef_ar = [];
353             var lookfor = '';
354             Roo.each(name.split('.'), function(st) {
355                 lookfor += (lookfor.length ? '.': '') + st;
356                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
357             });
358             
359             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
360             
361             
362             if(format && useF){
363                 
364                 args = args ? ',' + args : "";
365                  
366                 if(format.substr(0, 5) != "this."){
367                     format = "fm." + format + '(';
368                 }else{
369                     format = 'this.call("'+ format.substr(5) + '", ';
370                     args = ", values";
371                 }
372                 
373                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
374             }
375              
376             if (args.length) {
377                 // called with xxyx.yuu:(test,test)
378                 // change to ()
379                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
380             }
381             // raw.. - :raw modifier..
382             return "'"+ sep + udef_st  + name + ")"+sep+"'";
383             
384         };
385         var body;
386         // branched to use + in gecko and [].join() in others
387         if(Roo.isGecko){
388             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
389                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
390                     "';};};";
391         }else{
392             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
393             body.push(tpl.body.replace(/(\r\n|\n)/g,
394                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
395             body.push("'].join('');};};");
396             body = body.join('');
397         }
398         
399         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
400        
401         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
402         eval(body);
403         
404         return this;
405     },
406
407     applyTemplate : function(values){
408         return this.master.compiled.call(this, values, {});
409         //var s = this.subs;
410     },
411
412     apply : function(){
413         return this.applyTemplate.apply(this, arguments);
414     }
415
416  });
417
418 Roo.XTemplate.from = function(el){
419     el = Roo.getDom(el);
420     return new Roo.XTemplate(el.value || el.innerHTML);
421 };