XTemplate.js
上传用户:dawnssy
上传日期:2022-08-06
资源大小:9345k
文件大小:16k
源码类别:

JavaScript

开发平台:

JavaScript

  1. /*!
  2.  * Ext JS Library 3.1.0
  3.  * Copyright(c) 2006-2009 Ext JS, LLC
  4.  * licensing@extjs.com
  5.  * http://www.extjs.com/license
  6.  */
  7. /**
  8.  * @class Ext.XTemplate
  9.  * @extends Ext.Template
  10.  * <p>A template class that supports advanced functionality like:<div class="mdetail-params"><ul>
  11.  * <li>Autofilling arrays using templates and sub-templates</li>
  12.  * <li>Conditional processing with basic comparison operators</li>
  13.  * <li>Basic math function support</li>
  14.  * <li>Execute arbitrary inline code with special built-in template variables</li>
  15.  * <li>Custom member functions</li>
  16.  * <li>Many special tags and built-in operators that aren't defined as part of
  17.  * the API, but are supported in the templates that can be created</li>
  18.  * </ul></div></p>
  19.  * <p>XTemplate provides the templating mechanism built into:<div class="mdetail-params"><ul>
  20.  * <li>{@link Ext.DataView}</li>
  21.  * <li>{@link Ext.ListView}</li>
  22.  * <li>{@link Ext.form.ComboBox}</li>
  23.  * <li>{@link Ext.grid.TemplateColumn}</li>
  24.  * <li>{@link Ext.grid.GroupingView}</li>
  25.  * <li>{@link Ext.menu.Item}</li>
  26.  * <li>{@link Ext.layout.MenuLayout}</li>
  27.  * <li>{@link Ext.ColorPalette}</li>
  28.  * </ul></div></p>
  29.  * 
  30.  * <p>For example usage {@link #XTemplate see the constructor}.</p>  
  31.  *   
  32.  * @constructor
  33.  * The {@link Ext.Template#Template Ext.Template constructor} describes
  34.  * the acceptable parameters to pass to the constructor. The following
  35.  * examples demonstrate all of the supported features.</p>
  36.  * 
  37.  * <div class="mdetail-params"><ul>
  38.  * 
  39.  * <li><b><u>Sample Data</u></b> 
  40.  * <div class="sub-desc">
  41.  * <p>This is the data object used for reference in each code example:</p>
  42.  * <pre><code>
  43. var data = {
  44.     name: 'Jack Slocum',
  45.     title: 'Lead Developer',
  46.     company: 'Ext JS, LLC',
  47.     email: 'jack@extjs.com',
  48.     address: '4 Red Bulls Drive',
  49.     city: 'Cleveland',
  50.     state: 'Ohio',
  51.     zip: '44102',
  52.     drinks: ['Red Bull', 'Coffee', 'Water'],
  53.     kids: [{
  54.         name: 'Sara Grace',
  55.         age:3
  56.     },{
  57.         name: 'Zachary',
  58.         age:2
  59.     },{
  60.         name: 'John James',
  61.         age:0
  62.     }]
  63. };
  64.  * </code></pre>
  65.  * </div>
  66.  * </li>
  67.  * 
  68.  * 
  69.  * <li><b><u>Auto filling of arrays</u></b> 
  70.  * <div class="sub-desc">
  71.  * <p>The <b><tt>tpl</tt></b> tag and the <b><tt>for</tt></b> operator are used
  72.  * to process the provided data object:
  73.  * <ul>
  74.  * <li>If the value specified in <tt>for</tt> is an array, it will auto-fill,
  75.  * repeating the template block inside the <tt>tpl</tt> tag for each item in the
  76.  * array.</li>
  77.  * <li>If <tt>for="."</tt> is specified, the data object provided is examined.</li>
  78.  * <li>While processing an array, the special variable <tt>{#}</tt>
  79.  * will provide the current array index + 1 (starts at 1, not 0).</li>
  80.  * </ul>
  81.  * </p>
  82.  * <pre><code>
  83. &lt;tpl <b>for</b>=".">...&lt;/tpl>       // loop through array at root node
  84. &lt;tpl <b>for</b>="foo">...&lt;/tpl>     // loop through array at foo node
  85. &lt;tpl <b>for</b>="foo.bar">...&lt;/tpl> // loop through array at foo.bar node
  86.  * </code></pre>
  87.  * Using the sample data above:
  88.  * <pre><code>
  89. var tpl = new Ext.XTemplate(
  90.     '&lt;p>Kids: ',
  91.     '&lt;tpl <b>for</b>=".">',       // process the data.kids node
  92.         '&lt;p>{#}. {name}&lt;/p>',  // use current array index to autonumber
  93.     '&lt;/tpl>&lt;/p>'
  94. );
  95. tpl.overwrite(panel.body, data.kids); // pass the kids property of the data object
  96.  * </code></pre>
  97.  * <p>An example illustrating how the <b><tt>for</tt></b> property can be leveraged
  98.  * to access specified members of the provided data object to populate the template:</p>
  99.  * <pre><code>
  100. var tpl = new Ext.XTemplate(
  101.     '&lt;p>Name: {name}&lt;/p>',
  102.     '&lt;p>Title: {title}&lt;/p>',
  103.     '&lt;p>Company: {company}&lt;/p>',
  104.     '&lt;p>Kids: ',
  105.     '&lt;tpl <b>for="kids"</b>>',     // interrogate the kids property within the data
  106.         '&lt;p>{name}&lt;/p>',
  107.     '&lt;/tpl>&lt;/p>'
  108. );
  109. tpl.overwrite(panel.body, data);  // pass the root node of the data object
  110.  * </code></pre>
  111.  * <p>Flat arrays that contain values (and not objects) can be auto-rendered
  112.  * using the special <b><tt>{.}</tt></b> variable inside a loop.  This variable
  113.  * will represent the value of the array at the current index:</p>
  114.  * <pre><code>
  115. var tpl = new Ext.XTemplate(
  116.     '&lt;p>{name}&#39;s favorite beverages:&lt;/p>',
  117.     '&lt;tpl for="drinks">',
  118.        '&lt;div> - {.}&lt;/div>',
  119.     '&lt;/tpl>'
  120. );
  121. tpl.overwrite(panel.body, data);
  122.  * </code></pre>
  123.  * <p>When processing a sub-template, for example while looping through a child array,
  124.  * you can access the parent object's members via the <b><tt>parent</tt></b> object:</p>
  125.  * <pre><code>
  126. var tpl = new Ext.XTemplate(
  127.     '&lt;p>Name: {name}&lt;/p>',
  128.     '&lt;p>Kids: ',
  129.     '&lt;tpl for="kids">',
  130.         '&lt;tpl if="age > 1">',
  131.             '&lt;p>{name}&lt;/p>',
  132.             '&lt;p>Dad: {<b>parent</b>.name}&lt;/p>',
  133.         '&lt;/tpl>',
  134.     '&lt;/tpl>&lt;/p>'
  135. );
  136. tpl.overwrite(panel.body, data);
  137.  * </code></pre>
  138.  * </div>
  139.  * </li>
  140.  * 
  141.  * 
  142.  * <li><b><u>Conditional processing with basic comparison operators</u></b> 
  143.  * <div class="sub-desc">
  144.  * <p>The <b><tt>tpl</tt></b> tag and the <b><tt>if</tt></b> operator are used
  145.  * to provide conditional checks for deciding whether or not to render specific
  146.  * parts of the template. Notes:<div class="sub-desc"><ul>
  147.  * <li>Double quotes must be encoded if used within the conditional</li>
  148.  * <li>There is no <tt>else</tt> operator &mdash; if needed, two opposite
  149.  * <tt>if</tt> statements should be used.</li>
  150.  * </ul></div>
  151.  * <pre><code>
  152. &lt;tpl if="age &gt; 1 &amp;&amp; age &lt; 10">Child&lt;/tpl>
  153. &lt;tpl if="age >= 10 && age < 18">Teenager&lt;/tpl>
  154. &lt;tpl <b>if</b>="this.isGirl(name)">...&lt;/tpl>
  155. &lt;tpl <b>if</b>="id=='download'">...&lt;/tpl>
  156. &lt;tpl <b>if</b>="needsIcon">&lt;img src="{icon}" class="{iconCls}"/>&lt;/tpl>
  157. // no good:
  158. &lt;tpl if="name == "Jack"">Hello&lt;/tpl>
  159. // encode &#34; if it is part of the condition, e.g.
  160. &lt;tpl if="name == &#38;quot;Jack&#38;quot;">Hello&lt;/tpl>
  161.  * </code></pre>
  162.  * Using the sample data above:
  163.  * <pre><code>
  164. var tpl = new Ext.XTemplate(
  165.     '&lt;p>Name: {name}&lt;/p>',
  166.     '&lt;p>Kids: ',
  167.     '&lt;tpl for="kids">',
  168.         '&lt;tpl if="age > 1">',
  169.             '&lt;p>{name}&lt;/p>',
  170.         '&lt;/tpl>',
  171.     '&lt;/tpl>&lt;/p>'
  172. );
  173. tpl.overwrite(panel.body, data);
  174.  * </code></pre>
  175.  * </div>
  176.  * </li>
  177.  * 
  178.  * 
  179.  * <li><b><u>Basic math support</u></b> 
  180.  * <div class="sub-desc">
  181.  * <p>The following basic math operators may be applied directly on numeric
  182.  * data values:</p><pre>
  183.  * + - * /
  184.  * </pre>
  185.  * For example:
  186.  * <pre><code>
  187. var tpl = new Ext.XTemplate(
  188.     '&lt;p>Name: {name}&lt;/p>',
  189.     '&lt;p>Kids: ',
  190.     '&lt;tpl for="kids">',
  191.         '&lt;tpl if="age &amp;gt; 1">',  // <-- Note that the &gt; is encoded
  192.             '&lt;p>{#}: {name}&lt;/p>',  // <-- Auto-number each item
  193.             '&lt;p>In 5 Years: {age+5}&lt;/p>',  // <-- Basic math
  194.             '&lt;p>Dad: {parent.name}&lt;/p>',
  195.         '&lt;/tpl>',
  196.     '&lt;/tpl>&lt;/p>'
  197. );
  198. tpl.overwrite(panel.body, data);
  199. </code></pre>
  200.  * </div>
  201.  * </li>
  202.  *
  203.  * 
  204.  * <li><b><u>Execute arbitrary inline code with special built-in template variables</u></b> 
  205.  * <div class="sub-desc">
  206.  * <p>Anything between <code>{[ ... ]}</code> is considered code to be executed
  207.  * in the scope of the template. There are some special variables available in that code:
  208.  * <ul>
  209.  * <li><b><tt>values</tt></b>: The values in the current scope. If you are using
  210.  * scope changing sub-templates, you can change what <tt>values</tt> is.</li>
  211.  * <li><b><tt>parent</tt></b>: The scope (values) of the ancestor template.</li>
  212.  * <li><b><tt>xindex</tt></b>: If you are in a looping template, the index of the
  213.  * loop you are in (1-based).</li>
  214.  * <li><b><tt>xcount</tt></b>: If you are in a looping template, the total length
  215.  * of the array you are looping.</li>
  216.  * <li><b><tt>fm</tt></b>: An alias for <tt>Ext.util.Format</tt>.</li>
  217.  * </ul>
  218.  * This example demonstrates basic row striping using an inline code block and the
  219.  * <tt>xindex</tt> variable:</p>
  220.  * <pre><code>
  221. var tpl = new Ext.XTemplate(
  222.     '&lt;p>Name: {name}&lt;/p>',
  223.     '&lt;p>Company: {[values.company.toUpperCase() + ", " + values.title]}&lt;/p>',
  224.     '&lt;p>Kids: ',
  225.     '&lt;tpl for="kids">',
  226.        '&lt;div class="{[xindex % 2 === 0 ? "even" : "odd"]}">',
  227.         '{name}',
  228.         '&lt;/div>',
  229.     '&lt;/tpl>&lt;/p>'
  230. );
  231. tpl.overwrite(panel.body, data);
  232.  * </code></pre>
  233.  * </div>
  234.  * </li>
  235.  * 
  236.  * <li><b><u>Template member functions</u></b> 
  237.  * <div class="sub-desc">
  238.  * <p>One or more member functions can be specified in a configuration
  239.  * object passed into the XTemplate constructor for more complex processing:</p>
  240.  * <pre><code>
  241. var tpl = new Ext.XTemplate(
  242.     '&lt;p>Name: {name}&lt;/p>',
  243.     '&lt;p>Kids: ',
  244.     '&lt;tpl for="kids">',
  245.         '&lt;tpl if="this.isGirl(name)">',
  246.             '&lt;p>Girl: {name} - {age}&lt;/p>',
  247.         '&lt;/tpl>',
  248.         // use opposite if statement to simulate 'else' processing:
  249.         '&lt;tpl if="this.isGirl(name) == false">',
  250.             '&lt;p>Boy: {name} - {age}&lt;/p>',
  251.         '&lt;/tpl>',
  252.         '&lt;tpl if="this.isBaby(age)">',
  253.             '&lt;p>{name} is a baby!&lt;/p>',
  254.         '&lt;/tpl>',
  255.     '&lt;/tpl>&lt;/p>',
  256.     {
  257.         // XTemplate configuration:
  258.         compiled: true,
  259.         disableFormats: true,
  260.         // member functions:
  261.         isGirl: function(name){
  262.             return name == 'Sara Grace';
  263.         },
  264.         isBaby: function(age){
  265.             return age < 1;
  266.         }
  267.     }
  268. );
  269. tpl.overwrite(panel.body, data);
  270.  * </code></pre>
  271.  * </div>
  272.  * </li>
  273.  * 
  274.  * </ul></div>
  275.  * 
  276.  * @param {Mixed} config
  277.  */
  278. Ext.XTemplate = function(){
  279.     Ext.XTemplate.superclass.constructor.apply(this, arguments);
  280.     var me = this,
  281.      s = me.html,
  282.      re = /<tplb[^>]*>((?:(?=([^<]+))2|<(?!tplb[^>]*>))*?)</tpl>/,
  283.      nameRe = /^<tplb[^>]*?for="(.*?)"/,
  284.      ifRe = /^<tplb[^>]*?if="(.*?)"/,
  285.      execRe = /^<tplb[^>]*?exec="(.*?)"/,
  286.      m,
  287.      id = 0,
  288.      tpls = [],
  289.      VALUES = 'values',
  290.      PARENT = 'parent',
  291.      XINDEX = 'xindex',
  292.      XCOUNT = 'xcount',
  293.      RETURN = 'return ',
  294.      WITHVALUES = 'with(values){ ';
  295.     s = ['<tpl>', s, '</tpl>'].join('');
  296.     while((m = s.match(re))){
  297.         var m2 = m[0].match(nameRe),
  298. m3 = m[0].match(ifRe),
  299.         m4 = m[0].match(execRe),
  300.         exp = null,
  301.         fn = null,
  302.         exec = null,
  303.         name = m2 && m2[1] ? m2[1] : '';
  304.        if (m3) {
  305.            exp = m3 && m3[1] ? m3[1] : null;
  306.            if(exp){
  307.                fn = new Function(VALUES, PARENT, XINDEX, XCOUNT, WITHVALUES + RETURN +(Ext.util.Format.htmlDecode(exp))+'; }');
  308.            }
  309.        }
  310.        if (m4) {
  311.            exp = m4 && m4[1] ? m4[1] : null;
  312.            if(exp){
  313.                exec = new Function(VALUES, PARENT, XINDEX, XCOUNT, WITHVALUES +(Ext.util.Format.htmlDecode(exp))+'; }');
  314.            }
  315.        }
  316.        if(name){
  317.            switch(name){
  318.                case '.': name = new Function(VALUES, PARENT, WITHVALUES + RETURN + VALUES + '; }'); break;
  319.                case '..': name = new Function(VALUES, PARENT, WITHVALUES + RETURN + PARENT + '; }'); break;
  320.                default: name = new Function(VALUES, PARENT, WITHVALUES + RETURN + name + '; }');
  321.            }
  322.        }
  323.        tpls.push({
  324.             id: id,
  325.             target: name,
  326.             exec: exec,
  327.             test: fn,
  328.             body: m[1]||''
  329.         });
  330.        s = s.replace(m[0], '{xtpl'+ id + '}');
  331.        ++id;
  332.     }
  333. Ext.each(tpls, function(t) {
  334.         me.compileTpl(t);
  335.     });
  336.     me.master = tpls[tpls.length-1];
  337.     me.tpls = tpls;
  338. };
  339. Ext.extend(Ext.XTemplate, Ext.Template, {
  340.     // private
  341.     re : /{([w-.#]+)(?::([w.]*)(?:((.*?)?))?)?(s?[+-*\]s?[d.+-*\()]+)?}/g,
  342.     // private
  343.     codeRe : /{[((?:\]|.|n)*?)]}/g,
  344.     // private
  345.     applySubTemplate : function(id, values, parent, xindex, xcount){
  346.         var me = this,
  347.          len,
  348.          t = me.tpls[id],
  349.          vs,
  350.          buf = [];
  351.         if ((t.test && !t.test.call(me, values, parent, xindex, xcount)) ||
  352.             (t.exec && t.exec.call(me, values, parent, xindex, xcount))) {
  353.             return '';
  354.         }
  355.         vs = t.target ? t.target.call(me, values, parent) : values;
  356.         len = vs.length;
  357.         parent = t.target ? values : parent;
  358.         if(t.target && Ext.isArray(vs)){
  359.         Ext.each(vs, function(v, i) {
  360.                 buf[buf.length] = t.compiled.call(me, v, parent, i+1, len);
  361.             });
  362.             return buf.join('');
  363.         }
  364.         return t.compiled.call(me, vs, parent, xindex, xcount);
  365.     },
  366.     // private
  367.     compileTpl : function(tpl){
  368.         var fm = Ext.util.Format,
  369.         useF = this.disableFormats !== true,
  370.             sep = Ext.isGecko ? "+" : ",",
  371.             body;
  372.         function fn(m, name, format, args, math){
  373.             if(name.substr(0, 4) == 'xtpl'){
  374.                 return "'"+ sep +'this.applySubTemplate('+name.substr(4)+', values, parent, xindex, xcount)'+sep+"'";
  375.             }
  376.             var v;
  377.             if(name === '.'){
  378.                 v = 'values';
  379.             }else if(name === '#'){
  380.                 v = 'xindex';
  381.             }else if(name.indexOf('.') != -1){
  382.                 v = name;
  383.             }else{
  384.                 v = "values['" + name + "']";
  385.             }
  386.             if(math){
  387.                 v = '(' + v + math + ')';
  388.             }
  389.             if (format && useF) {
  390.                 args = args ? ',' + args : "";
  391.                 if(format.substr(0, 5) != "this."){
  392.                     format = "fm." + format + '(';
  393.                 }else{
  394.                     format = 'this.call("'+ format.substr(5) + '", ';
  395.                     args = ", values";
  396.                 }
  397.             } else {
  398.                 args= ''; format = "("+v+" === undefined ? '' : ";
  399.             }
  400.             return "'"+ sep + format + v + args + ")"+sep+"'";
  401.         }
  402.         function codeFn(m, code){
  403.             // Single quotes get escaped when the template is compiled, however we want to undo this when running code.
  404.             return "'" + sep + '(' + code.replace(/\'/g, "'") + ')' + sep + "'";
  405.         }
  406.         // branched to use + in gecko and [].join() in others
  407.         if(Ext.isGecko){
  408.             body = "tpl.compiled = function(values, parent, xindex, xcount){ return '" +
  409.                    tpl.body.replace(/(rn|n)/g, '\n').replace(/'/g, "\'").replace(this.re, fn).replace(this.codeRe, codeFn) +
  410.                     "';};";
  411.         }else{
  412.             body = ["tpl.compiled = function(values, parent, xindex, xcount){ return ['"];
  413.             body.push(tpl.body.replace(/(rn|n)/g, '\n').replace(/'/g, "\'").replace(this.re, fn).replace(this.codeRe, codeFn));
  414.             body.push("'].join('');};");
  415.             body = body.join('');
  416.         }
  417.         eval(body);
  418.         return this;
  419.     },
  420.     /**
  421.      * Returns an HTML fragment of this template with the specified values applied.
  422.      * @param {Object} values The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})
  423.      * @return {String} The HTML fragment
  424.      */
  425.     applyTemplate : function(values){
  426.         return this.master.compiled.call(this, values, {}, 1, 1);
  427.     },
  428.     /**
  429.      * Compile the template to a function for optimized performance.  Recommended if the template will be used frequently.
  430.      * @return {Function} The compiled function
  431.      */
  432.     compile : function(){return this;}
  433.     /**
  434.      * @property re
  435.      * @hide
  436.      */
  437.     /**
  438.      * @property disableFormats
  439.      * @hide
  440.      */
  441.     /**
  442.      * @method set
  443.      * @hide
  444.      */
  445. });
  446. /**
  447.  * Alias for {@link #applyTemplate}
  448.  * Returns an HTML fragment of this template with the specified values applied.
  449.  * @param {Object/Array} values The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})
  450.  * @return {String} The HTML fragment
  451.  * @member Ext.XTemplate
  452.  * @method apply
  453.  */
  454. Ext.XTemplate.prototype.apply = Ext.XTemplate.prototype.applyTemplate;
  455. /**
  456.  * Creates a template from the passed element's value (<i>display:none</i> textarea, preferred) or innerHTML.
  457.  * @param {String/HTMLElement} el A DOM element or its id
  458.  * @return {Ext.Template} The created template
  459.  * @static
  460.  */
  461. Ext.XTemplate.from = function(el){
  462.     el = Ext.getDom(el);
  463.     return new Ext.XTemplate(el.value || el.innerHTML);
  464. };