forked from BorisMoore/jquery-tmpl
-
Notifications
You must be signed in to change notification settings - Fork 1
/
jquery.tmpl.js
131 lines (109 loc) · 3.49 KB
/
jquery.tmpl.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/*
* jQuery Templating Plugin
* NOTE: Created for demonstration purposes.
* Copyright 2010, John Resig
* Dual licensed under the MIT or GPL Version 2 licenses.
*/
(function(jQuery){
// Override the DOM manipulation function
var oldManip = jQuery.fn.domManip;
jQuery.fn.extend({
render: function( data ) {
return this.map(function(i, tmpl){
return jQuery.render( tmpl, data );
});
},
// This will allow us to do: .append( "template", dataObject )
domManip: function( args ) {
// This appears to be a bug in the appendTo, etc. implementation
// it should be doing .call() instead of .apply(). See #6227
if ( args.length > 1 && args[0].nodeType ) {
arguments[0] = [ jQuery.makeArray(args) ];
}
if ( args.length === 2 && typeof args[0] === "string" && typeof args[1] !== "string" ) {
arguments[0] = [ jQuery.render( args[0], args[1] ) ];
}
return oldManip.apply( this, arguments );
}
});
jQuery.extend({
render: function( tmpl, data ) {
var fn;
// Use a pre-defined template, if available
if ( jQuery.templates[ tmpl ] ) {
fn = jQuery.templates[ tmpl ];
// We're pulling from a script node
} else if ( tmpl.nodeType ) {
var node = tmpl, elemData = jQuery.data( node );
fn = elemData.tmpl || jQuery.tmpl( node.innerHTML );
}
fn = fn || jQuery.tmpl( tmpl );
// We assume that if the template string is being passed directly
// in the user doesn't want it cached. They can stick it in
// jQuery.templates to cache it.
if ( jQuery.isArray( data ) ) {
return jQuery.map( data, function( data, i ) {
return fn.call( data, jQuery, data, i );
});
} else {
return fn.call( data, jQuery, data, 0 );
}
},
// You can stick pre-built template functions here
templates: {},
/*
* For example, someone could do:
* jQuery.templates.foo = jQuery.tmpl("some long templating string");
* $("#test").append("foo", data);
*/
tmplcmd: {
each: {
_default: [ null, "$i" ],
prefix: "jQuery.each($1,function($2){with(this){",
suffix: "}});"
},
if: {
prefix: "if($1){",
suffix: "}"
},
else: {
prefix: "}else{"
},
html: {
prefix: "_.push(typeof $1==='function'?$1.call(this):$1);"
},
"=": {
_default: [ "this" ],
prefix: "_.push($.encode(typeof $1==='function'?$1.call(this):$1));"
}
},
encode: function( text ) {
return text != null ? document.createTextNode( text.toString() ).nodeValue : "";
},
tmpl: function(str, data, i) {
// Generate a reusable function that will serve as a template
// generator (and which will be cached).
var fn = new Function("jQuery","$data","$i",
"var $=jQuery,_=[];_.data=$data;_.index=$i;" +
// Introduce the data as local variables using with(){}
"with($data){_.push('" +
// Convert the template into pure JavaScript
str
.replace(/[\r\t\n]/g, " ")
.replace(/\${([^}]*)}/g, "{{= $1}}")
.replace(/{{(\/?)(\w+|.)(?:\((.*?)\))?(?: (.*?))?}}/g, function(all, slash, type, fnargs, args) {
var tmpl = jQuery.tmplcmd[ type ];
if ( !tmpl ) {
throw "Template not found: " + type;
}
var def = tmpl._default;
return "');" + tmpl[slash ? "suffix" : "prefix"]
.split("$1").join(args || def[0])
.split("$2").join(fnargs || def[1]) + "_.push('";
})
+ "');}return $(_.join('')).get();");
// Provide some basic currying to the user
return data ? fn.call( this, jQuery, data, i ) : fn;
}
});
})(jQuery);