jquery.tmpl.js 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493
  1. /*!
  2. * jQuery Templates Plugin 1.0.0pre
  3. * http://github.com/jquery/jquery-tmpl
  4. * Requires jQuery 1.4.2
  5. *
  6. * Copyright 2011, Software Freedom Conservancy, Inc.
  7. * Dual licensed under the MIT or GPL Version 2 licenses.
  8. * http://jquery.org/license
  9. */
  10. (function( factory ) {
  11. if (typeof define === 'function' && define.amd) {
  12. // Loading from AMD script loader. Register as an anonymous module.
  13. define( ['jquery'], factory );
  14. } else {
  15. // Browser using plain <script> tag
  16. factory( jQuery );
  17. }
  18. }(function( jQuery ){
  19. var oldManip = jQuery.fn.domManip, tmplItmAtt = "_tmplitem", htmlExpr = /^[^<]*(<[\w\W]+>)[^>]*$|\{\{\! /,
  20. newTmplItems = {}, wrappedItems = {}, appendToTmplItems, topTmplItem = { key: 0, data: {} }, itemKey = 0, cloneIndex = 0, stack = [];
  21. function newTmplItem( options, parentItem, fn, data ) {
  22. // Returns a template item data structure for a new rendered instance of a template (a 'template item').
  23. // The content field is a hierarchical array of strings and nested items (to be
  24. // removed and replaced by nodes field of dom elements, once inserted in DOM).
  25. var newItem = {
  26. data: data || (data === 0 || data === false) ? data : (parentItem ? parentItem.data : {}),
  27. _wrap: parentItem ? parentItem._wrap : null,
  28. tmpl: null,
  29. parent: parentItem || null,
  30. nodes: [],
  31. calls: tiCalls,
  32. nest: tiNest,
  33. wrap: tiWrap,
  34. html: tiHtml,
  35. update: tiUpdate
  36. };
  37. if ( options ) {
  38. jQuery.extend( newItem, options, { nodes: [], parent: parentItem });
  39. }
  40. if ( fn ) {
  41. // Build the hierarchical content to be used during insertion into DOM
  42. newItem.tmpl = fn;
  43. newItem._ctnt = newItem._ctnt || newItem.tmpl( jQuery, newItem );
  44. newItem.key = ++itemKey;
  45. // Keep track of new template item, until it is stored as jQuery Data on DOM element
  46. (stack.length ? wrappedItems : newTmplItems)[itemKey] = newItem;
  47. }
  48. return newItem;
  49. }
  50. // Override appendTo etc., in order to provide support for targeting multiple elements. (This code would disappear if integrated in jquery core).
  51. jQuery.each({
  52. appendTo: "append",
  53. prependTo: "prepend",
  54. insertBefore: "before",
  55. insertAfter: "after",
  56. replaceAll: "replaceWith"
  57. }, function( name, original ) {
  58. jQuery.fn[ name ] = function( selector ) {
  59. var ret = [], insert = jQuery( selector ), elems, i, l, tmplItems,
  60. parent = this.length === 1 && this[0].parentNode;
  61. appendToTmplItems = newTmplItems || {};
  62. if ( parent && parent.nodeType === 11 && parent.childNodes.length === 1 && insert.length === 1 ) {
  63. insert[ original ]( this[0] );
  64. ret = this;
  65. } else {
  66. for ( i = 0, l = insert.length; i < l; i++ ) {
  67. cloneIndex = i;
  68. elems = (i > 0 ? this.clone(true) : this).get();
  69. jQuery( insert[i] )[ original ]( elems );
  70. ret = ret.concat( elems );
  71. }
  72. cloneIndex = 0;
  73. ret = this.pushStack( ret, name, insert.selector );
  74. }
  75. tmplItems = appendToTmplItems;
  76. appendToTmplItems = null;
  77. jQuery.tmpl.complete( tmplItems );
  78. return ret;
  79. };
  80. });
  81. jQuery.fn.extend({
  82. // Use first wrapped element as template markup.
  83. // Return wrapped set of template items, obtained by rendering template against data.
  84. tmpl: function( data, options, parentItem ) {
  85. return jQuery.tmpl( this[0], data, options, parentItem );
  86. },
  87. // Find which rendered template item the first wrapped DOM element belongs to
  88. tmplItem: function() {
  89. return jQuery.tmplItem( this[0] );
  90. },
  91. // Consider the first wrapped element as a template declaration, and get the compiled template or store it as a named template.
  92. template: function( name ) {
  93. return jQuery.template( name, this[0] );
  94. },
  95. domManip: function( args, table, callback, options ) {
  96. if ( args[0] && jQuery.isArray( args[0] )) {
  97. var dmArgs = jQuery.makeArray( arguments ), elems = args[0], elemsLength = elems.length, i = 0, tmplItem;
  98. while ( i < elemsLength && !(tmplItem = jQuery.data( elems[i++], "tmplItem" ))) {}
  99. if ( tmplItem && cloneIndex ) {
  100. dmArgs[2] = function( fragClone ) {
  101. // Handler called by oldManip when rendered template has been inserted into DOM.
  102. jQuery.tmpl.afterManip( this, fragClone, callback );
  103. };
  104. }
  105. oldManip.apply( this, dmArgs );
  106. } else {
  107. oldManip.apply( this, arguments );
  108. }
  109. cloneIndex = 0;
  110. if ( !appendToTmplItems ) {
  111. jQuery.tmpl.complete( newTmplItems );
  112. }
  113. return this;
  114. }
  115. });
  116. jQuery.extend({
  117. // Return wrapped set of template items, obtained by rendering template against data.
  118. tmpl: function( tmpl, data, options, parentItem ) {
  119. var ret, topLevel = !parentItem;
  120. if ( topLevel ) {
  121. // This is a top-level tmpl call (not from a nested template using {{tmpl}})
  122. parentItem = topTmplItem;
  123. tmpl = jQuery.template[tmpl] || jQuery.template( null, tmpl );
  124. wrappedItems = {}; // Any wrapped items will be rebuilt, since this is top level
  125. } else if ( !tmpl ) {
  126. // The template item is already associated with DOM - this is a refresh.
  127. // Re-evaluate rendered template for the parentItem
  128. tmpl = parentItem.tmpl;
  129. newTmplItems[parentItem.key] = parentItem;
  130. parentItem.nodes = [];
  131. if ( parentItem.wrapped ) {
  132. updateWrapped( parentItem, parentItem.wrapped );
  133. }
  134. // Rebuild, without creating a new template item
  135. return jQuery( build( parentItem, null, parentItem.tmpl( jQuery, parentItem ) ));
  136. }
  137. if ( !tmpl ) {
  138. return []; // Could throw...
  139. }
  140. if ( typeof data === "function" ) {
  141. data = data.call( parentItem || {} );
  142. }
  143. if ( options && options.wrapped ) {
  144. updateWrapped( options, options.wrapped );
  145. }
  146. ret = jQuery.isArray( data ) ?
  147. jQuery.map( data, function( dataItem ,index) {
  148. if(dataItem){dataItem.$index=index;}
  149. return dataItem ? newTmplItem( options, parentItem, tmpl, dataItem ) : null;
  150. }) :
  151. [ newTmplItem( options, parentItem, tmpl, data ) ];
  152. return topLevel ? jQuery( build( parentItem, null, ret ) ) : ret;
  153. },
  154. // Return rendered template item for an element.
  155. tmplItem: function( elem ) {
  156. var tmplItem;
  157. if ( elem instanceof jQuery ) {
  158. elem = elem[0];
  159. }
  160. while ( elem && elem.nodeType === 1 && !(tmplItem = jQuery.data( elem, "tmplItem" )) && (elem = elem.parentNode) ) {}
  161. return tmplItem || topTmplItem;
  162. },
  163. // Set:
  164. // Use $.template( name, tmpl ) to cache a named template,
  165. // where tmpl is a template string, a script element or a jQuery instance wrapping a script element, etc.
  166. // Use $( "selector" ).template( name ) to provide access by name to a script block template declaration.
  167. // Get:
  168. // Use $.template( name ) to access a cached template.
  169. // Also $( selectorToScriptBlock ).template(), or $.template( null, templateString )
  170. // will return the compiled template, without adding a name reference.
  171. // If templateString includes at least one HTML tag, $.template( templateString ) is equivalent
  172. // to $.template( null, templateString )
  173. template: function( name, tmpl ) {
  174. if (tmpl) {
  175. // Compile template and associate with name
  176. if ( typeof tmpl === "string" ) {
  177. // This is an HTML string being passed directly in.
  178. tmpl = buildTmplFn( tmpl );
  179. } else if ( tmpl instanceof jQuery ) {
  180. tmpl = tmpl[0] || {};
  181. }
  182. if ( tmpl.nodeType ) {
  183. // If this is a template block, use cached copy, or generate tmpl function and cache.
  184. tmpl = jQuery.data( tmpl, "tmpl" ) || jQuery.data( tmpl, "tmpl", buildTmplFn( tmpl.innerHTML ));
  185. // Issue: In IE, if the container element is not a script block, the innerHTML will remove quotes from attribute values whenever the value does not include white space.
  186. // This means that foo="${x}" will not work if the value of x includes white space: foo="${x}" -> foo=value of x.
  187. // To correct this, include space in tag: foo="${ x }" -> foo="value of x"
  188. }
  189. return typeof name === "string" ? (jQuery.template[name] = tmpl) : tmpl;
  190. }
  191. // Return named compiled template
  192. return name ? (typeof name !== "string" ? jQuery.template( null, name ):
  193. (jQuery.template[name] ||
  194. // If not in map, and not containing at least on HTML tag, treat as a selector.
  195. // (If integrated with core, use quickExpr.exec)
  196. jQuery.template( null, htmlExpr.test( name ) ? name : jQuery( name )))) : null;
  197. },
  198. encode: function( text ) {
  199. // Do HTML encoding replacing < > & and ' and " by corresponding entities.
  200. return ("" + text).split("<").join("&lt;").split(">").join("&gt;").split('"').join("&#34;").split("'").join("&#39;");
  201. }
  202. });
  203. jQuery.extend( jQuery.tmpl, {
  204. tag: {
  205. "tmpl": {
  206. _default: { $2: "null" },
  207. open: "if($notnull_1){__=__.concat($item.nest($1,$2));}"
  208. // tmpl target parameter can be of type function, so use $1, not $1a (so not auto detection of functions)
  209. // This means that {{tmpl foo}} treats foo as a template (which IS a function).
  210. // Explicit parens can be used if foo is a function that returns a template: {{tmpl foo()}}.
  211. },
  212. "wrap": {
  213. _default: { $2: "null" },
  214. open: "$item.calls(__,$1,$2);__=[];",
  215. close: "call=$item.calls();__=call._.concat($item.wrap(call,__));"
  216. },
  217. "each": {
  218. _default: { $2: "$index, $value" },
  219. open: "if($notnull_1){$.each($1a,function($2){with(this){",
  220. close: "}});}"
  221. },
  222. "if": {
  223. open: "if(($notnull_1) && $1a){",
  224. close: "}"
  225. },
  226. "else": {
  227. _default: { $1: "true" },
  228. open: "}else if(($notnull_1) && $1a){"
  229. },
  230. "html": {
  231. // Unecoded expression evaluation.
  232. open: "if($notnull_1){__.push($1a);}"
  233. },
  234. "=": {
  235. // Encoded expression evaluation. Abbreviated form is ${}.
  236. _default: { $1: "$data" },
  237. open: "if($notnull_1){__.push($.encode($1a));}"
  238. },
  239. "!": {
  240. // Comment tag. Skipped by parser
  241. open: ""
  242. }
  243. },
  244. // This stub can be overridden, e.g. in jquery.tmplPlus for providing rendered events
  245. complete: function( items ) {
  246. newTmplItems = {};
  247. },
  248. // Call this from code which overrides domManip, or equivalent
  249. // Manage cloning/storing template items etc.
  250. afterManip: function afterManip( elem, fragClone, callback ) {
  251. // Provides cloned fragment ready for fixup prior to and after insertion into DOM
  252. var content = fragClone.nodeType === 11 ?
  253. jQuery.makeArray(fragClone.childNodes) :
  254. fragClone.nodeType === 1 ? [fragClone] : [];
  255. // Return fragment to original caller (e.g. append) for DOM insertion
  256. callback.call( elem, fragClone );
  257. // Fragment has been inserted:- Add inserted nodes to tmplItem data structure. Replace inserted element annotations by jQuery.data.
  258. storeTmplItems( content );
  259. cloneIndex++;
  260. }
  261. });
  262. //========================== Private helper functions, used by code above ==========================
  263. function build( tmplItem, nested, content ) {
  264. // Convert hierarchical content into flat string array
  265. // and finally return array of fragments ready for DOM insertion
  266. var frag, ret = content ? jQuery.map( content, function( item ) {
  267. return (typeof item === "string") ?
  268. // Insert template item annotations, to be converted to jQuery.data( "tmplItem" ) when elems are inserted into DOM.
  269. (tmplItem.key ? item.replace( /(<\w+)(?=[\s>])(?![^>]*_tmplitem)([^>]*)/g, "$1 " + tmplItmAtt + "=\"" + tmplItem.key + "\" $2" ) : item) :
  270. // This is a child template item. Build nested template.
  271. build( item, tmplItem, item._ctnt );
  272. }) :
  273. // If content is not defined, insert tmplItem directly. Not a template item. May be a string, or a string array, e.g. from {{html $item.html()}}.
  274. tmplItem;
  275. if ( nested ) {
  276. return ret;
  277. }
  278. // top-level template
  279. ret = ret.join("");
  280. // Support templates which have initial or final text nodes, or consist only of text
  281. // Also support HTML entities within the HTML markup.
  282. ret.replace( /^\s*([^<\s][^<]*)?(<[\w\W]+>)([^>]*[^>\s])?\s*$/, function( all, before, middle, after) {
  283. frag = jQuery( middle ).get();
  284. storeTmplItems( frag );
  285. if ( before ) {
  286. frag = unencode( before ).concat(frag);
  287. }
  288. if ( after ) {
  289. frag = frag.concat(unencode( after ));
  290. }
  291. });
  292. return frag ? frag : unencode( ret );
  293. }
  294. function unencode( text ) {
  295. // Use createElement, since createTextNode will not render HTML entities correctly
  296. var el = document.createElement( "div" );
  297. el.innerHTML = text;
  298. return jQuery.makeArray(el.childNodes);
  299. }
  300. // Generate a reusable function that will serve to render a template against data
  301. function buildTmplFn( markup ) {
  302. return new Function("jQuery","$item",
  303. // Use the variable __ to hold a string array while building the compiled template. (See https://github.com/jquery/jquery-tmpl/issues#issue/10).
  304. "var $=jQuery,call,__=[],$data=$item.data;" +
  305. // Introduce the data as local variables using with(){}
  306. "with($data){__.push('" +
  307. // Convert the template into pure JavaScript
  308. jQuery.trim(markup)
  309. .replace( /([\\'])/g, "\\$1" )
  310. .replace( /[\r\t\n]/g, " " )
  311. .replace( /\$\{([^\}]*)\}/g, "{{= $1}}" )
  312. .replace( /\{\{(\/?)(\w+|.)(?:\(((?:[^\}]|\}(?!\}))*?)?\))?(?:\s+(.*?)?)?(\(((?:[^\}]|\}(?!\}))*?)\))?\s*\}\}/g,
  313. function( all, slash, type, fnargs, target, parens, args ) {
  314. var tag = jQuery.tmpl.tag[ type ], def, expr, exprAutoFnDetect;
  315. if ( !tag ) {
  316. throw "Unknown template tag: " + type;
  317. }
  318. def = tag._default || [];
  319. if ( parens && !/\w$/.test(target)) {
  320. target += parens;
  321. parens = "";
  322. }
  323. if ( target ) {
  324. target = unescape( target );
  325. args = args ? ("," + unescape( args ) + ")") : (parens ? ")" : "");
  326. // Support for target being things like a.toLowerCase();
  327. // In that case don't call with template item as 'this' pointer. Just evaluate...
  328. expr = parens ? (target.indexOf(".") > -1 ? target + unescape( parens ) : ("(" + target + ").call($item" + args)) : target;
  329. exprAutoFnDetect = parens ? expr : "(typeof(" + target + ")==='function'?(" + target + ").call($item):(" + target + "))";
  330. } else {
  331. exprAutoFnDetect = expr = def.$1 || "null";
  332. }
  333. fnargs = unescape( fnargs );
  334. return "');" +
  335. tag[ slash ? "close" : "open" ]
  336. .split( "$notnull_1" ).join( target ? "typeof(" + target + ")!=='undefined' && (" + target + ")!=null" : "true" )
  337. .split( "$1a" ).join( exprAutoFnDetect )
  338. .split( "$1" ).join( expr )
  339. .split( "$2" ).join( fnargs || def.$2 || "" ) +
  340. "__.push('";
  341. }) +
  342. "');}return __;"
  343. );
  344. }
  345. function updateWrapped( options, wrapped ) {
  346. // Build the wrapped content.
  347. options._wrap = build( options, true,
  348. // Suport imperative scenario in which options.wrapped can be set to a selector or an HTML string.
  349. jQuery.isArray( wrapped ) ? wrapped : [htmlExpr.test( wrapped ) ? wrapped : jQuery( wrapped ).html()]
  350. ).join("");
  351. }
  352. function unescape( args ) {
  353. return args ? args.replace( /\\'/g, "'").replace(/\\\\/g, "\\" ) : null;
  354. }
  355. function outerHtml( elem ) {
  356. var div = document.createElement("div");
  357. div.appendChild( elem.cloneNode(true) );
  358. return div.innerHTML;
  359. }
  360. // Store template items in jQuery.data(), ensuring a unique tmplItem data data structure for each rendered template instance.
  361. function storeTmplItems( content ) {
  362. var keySuffix = "_" + cloneIndex, elem, elems, newClonedItems = {}, i, l, m;
  363. for ( i = 0, l = content.length; i < l; i++ ) {
  364. if ( (elem = content[i]).nodeType !== 1 ) {
  365. continue;
  366. }
  367. elems = elem.getElementsByTagName("*");
  368. for ( m = elems.length - 1; m >= 0; m-- ) {
  369. processItemKey( elems[m] );
  370. }
  371. processItemKey( elem );
  372. }
  373. function processItemKey( el ) {
  374. var pntKey, pntNode = el, pntItem, tmplItem, key;
  375. // Ensure that each rendered template inserted into the DOM has its own template item,
  376. if ( (key = el.getAttribute( tmplItmAtt ))) {
  377. while ( pntNode.parentNode && (pntNode = pntNode.parentNode).nodeType === 1 && !(pntKey = pntNode.getAttribute( tmplItmAtt ))) { }
  378. if ( pntKey !== key ) {
  379. // The next ancestor with a _tmplitem expando is on a different key than this one.
  380. // So this is a top-level element within this template item
  381. // Set pntNode to the key of the parentNode, or to 0 if pntNode.parentNode is null, or pntNode is a fragment.
  382. pntNode = pntNode.parentNode ? (pntNode.nodeType === 11 ? 0 : (pntNode.getAttribute( tmplItmAtt ) || 0)) : 0;
  383. if ( !(tmplItem = newTmplItems[key]) ) {
  384. // The item is for wrapped content, and was copied from the temporary parent wrappedItem.
  385. tmplItem = wrappedItems[key];
  386. tmplItem = newTmplItem( tmplItem, newTmplItems[pntNode]||wrappedItems[pntNode] );
  387. tmplItem.key = ++itemKey;
  388. newTmplItems[itemKey] = tmplItem;
  389. }
  390. if ( cloneIndex ) {
  391. cloneTmplItem( key );
  392. }
  393. }
  394. el.removeAttribute( tmplItmAtt );
  395. } else if ( cloneIndex && (tmplItem = jQuery.data( el, "tmplItem" )) ) {
  396. // This was a rendered element, cloned during append or appendTo etc.
  397. // TmplItem stored in jQuery data has already been cloned in cloneCopyEvent. We must replace it with a fresh cloned tmplItem.
  398. cloneTmplItem( tmplItem.key );
  399. newTmplItems[tmplItem.key] = tmplItem;
  400. pntNode = jQuery.data( el.parentNode, "tmplItem" );
  401. pntNode = pntNode ? pntNode.key : 0;
  402. }
  403. if ( tmplItem ) {
  404. pntItem = tmplItem;
  405. // Find the template item of the parent element.
  406. // (Using !=, not !==, since pntItem.key is number, and pntNode may be a string)
  407. while ( pntItem && pntItem.key != pntNode ) {
  408. // Add this element as a top-level node for this rendered template item, as well as for any
  409. // ancestor items between this item and the item of its parent element
  410. pntItem.nodes.push( el );
  411. pntItem = pntItem.parent;
  412. }
  413. // Delete content built during rendering - reduce API surface area and memory use, and avoid exposing of stale data after rendering...
  414. delete tmplItem._ctnt;
  415. delete tmplItem._wrap;
  416. // Store template item as jQuery data on the element
  417. jQuery.data( el, "tmplItem", tmplItem );
  418. }
  419. function cloneTmplItem( key ) {
  420. key = key + keySuffix;
  421. tmplItem = newClonedItems[key] =
  422. (newClonedItems[key] || newTmplItem( tmplItem, newTmplItems[tmplItem.parent.key + keySuffix] || tmplItem.parent ));
  423. }
  424. }
  425. }
  426. //---- Helper functions for template item ----
  427. function tiCalls( content, tmpl, data, options ) {
  428. if ( !content ) {
  429. return stack.pop();
  430. }
  431. stack.push({ _: content, tmpl: tmpl, item:this, data: data, options: options });
  432. }
  433. function tiNest( tmpl, data, options ) {
  434. // nested template, using {{tmpl}} tag
  435. return jQuery.tmpl( jQuery.template( tmpl ), data, options, this );
  436. }
  437. function tiWrap( call, wrapped ) {
  438. // nested template, using {{wrap}} tag
  439. var options = call.options || {};
  440. options.wrapped = wrapped;
  441. // Apply the template, which may incorporate wrapped content,
  442. return jQuery.tmpl( jQuery.template( call.tmpl ), call.data, options, call.item );
  443. }
  444. function tiHtml( filter, textOnly ) {
  445. var wrapped = this._wrap;
  446. return jQuery.map(
  447. jQuery( jQuery.isArray( wrapped ) ? wrapped.join("") : wrapped ).filter( filter || "*" ),
  448. function(e) {
  449. return textOnly ?
  450. e.innerText || e.textContent :
  451. e.outerHTML || outerHtml(e);
  452. });
  453. }
  454. function tiUpdate() {
  455. var coll = this.nodes;
  456. jQuery.tmpl( null, null, null, this).insertBefore( coll[0] );
  457. jQuery( coll ).remove();
  458. }
  459. }));