Files
leanote/public/js/jsrender.js
2014-10-22 16:20:45 +08:00

1627 lines
58 KiB
JavaScript

/*! JsRender v1.0.0-beta: http://github.com/BorisMoore/jsrender and http://jsviews.com/jsviews
informal pre V1.0 commit counter: 53 */
/*
* Optimized version of jQuery Templates, for rendering to string.
* Does not require jQuery, or HTML DOM
* Integrates with JsViews (http://jsviews.com/jsviews)
*
* Copyright 2014, Boris Moore
* Released under the MIT License.
*/
//try {
// jQuery = jQuery;
//} catch(e) {
// jQuery = undefined;
//}
(function(global, jQuery, undefined) {
// global is the this object, which is window when running in the usual browser environment.
"use strict";
if (jQuery && jQuery.views || global.jsviews) { return; } // JsRender is already loaded
//========================== Top-level vars ==========================
//onInit versus init? inherit/base/deriveFrom/extend/basetag
var versionNumber = "v1.0.0-beta",
$, jsvStoreName, rTag, rTmplString, indexStr, // nodeJsModule,
//TODO tmplFnsCache = {},
delimOpenChar0 = "[", delimOpenChar1 = "[", delimCloseChar0 = "]", delimCloseChar1 = "]", linkChar = "^",
rPath = /^(!*?)(?:null|true|false|\d[\d.]*|([\w$]+|\.|~([\w$]+)|#(view|([\w$]+))?)([\w$.^]*?)(?:[.[^]([\w$]+)\]?)?)$/g,
// none object helper view viewProperty pathTokens leafToken
rParams = /(\()(?=\s*\()|(?:([([])\s*)?(?:(\^?)(!*?[#~]?[\w$.^]+)?\s*((\+\+|--)|\+|-|&&|\|\||===|!==|==|!=|<=|>=|[<>%*:?\/]|(=))\s*|(!*?[#~]?[\w$.^]+)([([])?)|(,\s*)|(\(?)\\?(?:(')|("))|(?:\s*(([)\]])(?=\s*\.|\s*\^|\s*$)|[)\]])([([]?))|(\s+)/g,
// lftPrn0 lftPrn bound path operator err eq path2 prn comma lftPrn2 apos quot rtPrn rtPrnDot prn2 space
// (left paren? followed by (path? followed by operator) or (path followed by left paren?)) or comma or apos or quot or right paren or space
rNewLine = /[ \t]*(\r\n|\n|\r)/g,
rUnescapeQuotes = /\\(['"])/g,
rEscapeQuotes = /['"\\]/g, // Escape quotes and \ character
rBuildHash = /\x08(~)?([^\x08]+)\x08/g,
rTestElseIf = /^if\s/,
rFirstElem = /<(\w+)[>\s]/,
rAttrEncode = /[\x00`><"'&]/g, // Includes > encoding since rConvertMarkers in JsViews does not skip > characters in attribute strings
rHasHandlers = /^on[A-Z]|^convert(Back)?$/,
rHtmlEncode = rAttrEncode,
autoTmplName = 0,
viewId = 0,
charEntities = {
"&": "&amp;",
"<": "&lt;",
">": "&gt;",
"\x00": "&#0;",
"'": "&#39;",
'"': "&#34;",
"`": "&#96;"
},
htmlStr = "html",
tmplAttr = "data-jsv-tmpl",
$render = {},
jsvStores = {
template: {
compile: compileTmpl
},
tag: {
compile: compileTag
},
helper: {},
converter: {}
},
// jsviews object ($.views if jQuery is loaded)
$views = {
jsviews: versionNumber,
render: $render,
settings: function(settings) {
$extend($viewsSettings, settings);
dbgMode($viewsSettings._dbgMode);
if ($viewsSettings.jsv) {
$viewsSettings.jsv();
}
},
sub: {
// subscription, e.g. JsViews integration
View: View,
Err: JsViewsError,
tmplFn: tmplFn,
cvt: convertArgs,
parse: parseParams,
extend: $extend,
err: error,
syntaxErr: syntaxError,
isFn: function(ob) {
return typeof ob === "function"
},
DataMap: DataMap
},
_cnvt: convertVal,
_tag: renderTag,
_err: function(e) {
// Place a breakpoint here to intercept template rendering errors
return $viewsSettings._dbgMode ? ("Error: " + (e.message || e)) + ". " : '';
}
};
function retVal(val) {
return val;
}
function dbgBreak(val) {
debugger;
return val;
}
function dbgMode(debugMode) {
$viewsSettings._dbgMode = debugMode;
indexStr = debugMode ? "Unavailable (nested view): use #getIndex()" : ""; // If in debug mode set #index to a warning when in nested contexts
$tags("dbg", $helpers.dbg = $converters.dbg = debugMode ? dbgBreak : retVal); // If in debug mode, register {{dbg/}}, {{dbg:...}} and ~dbg() to insert break points for debugging.
}
function DataMap(getTarget) {
return {
getTgt: getTarget,
map: function(source) {
var theMap = this; // Instance of DataMap
if (theMap.src !== source) {
if (theMap.src) {
theMap.unmap();
}
if (typeof source === "object") {
var changing,
target = getTarget.apply(theMap, arguments);
theMap.src = source;
theMap.tgt = target;
}
}
}
}
}
function JsViewsError(message, object) {
// Error exception type for JsViews/JsRender
// Override of $.views.sub.Error is possible
if (object && object.onError) {
if (object.onError(message) === false) {
return;
}
}
this.name = ($.link ? "JsViews" : "JsRender") + " Error";
this.message = message || this.name;
}
function $extend(target, source) {
var name;
target = target || {};
for (name in source) {
target[name] = source[name];
}
return target;
}
(JsViewsError.prototype = new Error()).constructor = JsViewsError;
//========================== Top-level functions ==========================
//===================
// jsviews.delimiters
//===================
function $viewsDelimiters(openChars, closeChars, link) {
// Set the tag opening and closing delimiters and 'link' character. Default is "{{", "}}" and "^"
// openChars, closeChars: opening and closing strings, each with two characters
if (!$viewsSub.rTag || openChars) {
delimOpenChar0 = openChars ? openChars.charAt(0) : delimOpenChar0; // Escape the characters - since they could be regex special characters
delimOpenChar1 = openChars ? openChars.charAt(1) : delimOpenChar1;
delimCloseChar0 = closeChars ? closeChars.charAt(0) : delimCloseChar0;
delimCloseChar1 = closeChars ? closeChars.charAt(1) : delimCloseChar1;
linkChar = link || linkChar;
openChars = "\\" + delimOpenChar0 + "(\\" + linkChar + ")?\\" + delimOpenChar1; // Default is "{^{"
closeChars = "\\" + delimCloseChar0 + "\\" + delimCloseChar1; // Default is "}}"
// Build regex with new delimiters
// tag (followed by / space or }) or cvtr+colon or html or code
rTag = "(?:(?:(\\w+(?=[\\/\\s\\" + delimCloseChar0 + "]))|(?:(\\w+)?(:)|(>)|!--((?:[^-]|-(?!-))*)--|(\\*)))"
+ "\\s*((?:[^\\" + delimCloseChar0 + "]|\\" + delimCloseChar0 + "(?!\\" + delimCloseChar1 + "))*?)";
// make rTag available to JsViews (or other components) for parsing binding expressions
$viewsSub.rTag = rTag + ")";
rTag = new RegExp(openChars + rTag + "(\\/)?|(?:\\/(\\w+)))" + closeChars, "g");
// Default: bind tag converter colon html comment code params slash closeBlock
// /{(\^)?{(?:(?:(\w+(?=[\/\s}]))|(?:(\w+)?(:)|(>)|!--((?:[^-]|-(?!-))*)--|(\*)))\s*((?:[^}]|}(?!}))*?)(\/)?|(?:\/(\w+)))}}/g
rTmplString = new RegExp("<.*>|([^\\\\]|^)[{}]|" + openChars + ".*" + closeChars);
// rTmplString looks for html tags or { or } char not preceded by \\, or JsRender tags {{xxx}}. Each of these strings are considered
// NOT to be jQuery selectors
}
return [delimOpenChar0, delimOpenChar1, delimCloseChar0, delimCloseChar1, linkChar];
}
//=========
// View.get
//=========
function getView(inner, type) { //view.get(inner, type)
if (!type) {
// view.get(type)
type = inner;
inner = undefined;
}
var views, i, l, found,
view = this,
root = !type || type === "root";
// If type is undefined, returns root view (view under top view).
if (inner) {
// Go through views - this one, and all nested ones, depth-first - and return first one with given type.
found = view.type === type ? view : undefined;
if (!found) {
views = view.views;
if (view._.useKey) {
for (i in views) {
if (found = views[i].get(inner, type)) {
break;
}
}
} else for (i = 0, l = views.length; !found && i < l; i++) {
found = views[i].get(inner, type);
}
}
} else if (root) {
// Find root view. (view whose parent is top view)
while (view.parent.parent) {
found = view = view.parent;
}
} else while (view && !found) {
// Go through views - this one, and all parent ones - and return first one with given type.
found = view.type === type ? view : undefined;
view = view.parent;
}
return found;
}
function getNestedIndex() {
var view = this.get("item");
return view ? view.index : undefined;
}
getNestedIndex.depends = function() {
return [this.get("item"), "index"];
};
function getIndex() {
return this.index;
}
getIndex.depends = function() {
return ["index"];
};
//==========
// View.hlp
//==========
function getHelper(helper) {
// Helper method called as view.hlp(key) from compiled template, for helper functions or template parameters ~foo
var wrapped,
view = this,
ctx = view.linkCtx,
res = (view.ctx || {})[helper];
if (res === undefined && ctx && ctx.ctx) {
res = ctx.ctx[helper];
}
if (res === undefined) {
res = $helpers[helper];
}
if (res) {
if ($isFunction(res) && !res._wrp) {
wrapped = function() {
// If it is of type function, and not already wrapped, we will wrap it, so if called with no this pointer it will be called with the
// view as 'this' context. If the helper ~foo() was in a data-link expression, the view will have a 'temporary' linkCtx property too.
// Note that helper functions on deeper paths will have specific this pointers, from the preceding path.
// For example, ~util.foo() will have the ~util object as 'this' pointer
return res.apply((!this || this === global) ? view : this, arguments);
};
wrapped._wrp = 1;
$extend(wrapped, res); // Attach same expandos (if any) to the wrapped function
}
}
return wrapped || res;
}
//==============
// jsviews._cnvt
//==============
function convertVal(converter, view, tagCtx) {
// self is template object or linkCtx object
var tag, value, prop,
boundTagCtx = +tagCtx === tagCtx && tagCtx, // if tagCtx is an integer, then it is the key for the boundTagCtx (compiled function to return the tagCtx)
linkCtx = view.linkCtx; // For data-link="{cvt:...}"...
if (boundTagCtx) {
// This is a bound tag: {^{xx:yyy}}. Call compiled function which returns the tagCtxs for current data
tagCtx = (boundTagCtx = view.tmpl.bnds[boundTagCtx-1])(view.data, view, $views);
}
value = tagCtx.args[0];
if (converter || boundTagCtx) {
tag = linkCtx && linkCtx.tag || {
_: {
inline: !linkCtx,
bnd: boundTagCtx
},
tagName: converter + ":",
flow: true,
_is: "tag"
};
for (prop in tagCtx.props) {
if (rHasHandlers.test(prop)) {
tag[prop] = tagCtx.props[prop]; // Copy over the onFoo props from tagCtx.props to tag (overrides values in tagDef).
}
}
if (linkCtx) {
linkCtx.tag = tag;
tag.linkCtx = tag.linkCtx || linkCtx;
tagCtx.ctx = extendCtx(tagCtx.ctx, linkCtx.view.ctx);
}
tag.tagCtx = tagCtx;
tagCtx.view = view;
tag.ctx = tagCtx.ctx || {};
delete tagCtx.ctx;
// Provide this tag on view, for addBindingMarkers on bound tags to add the tag to view._.bnds, associated with the tag id,
view._.tag = tag;
value = convertArgs(tag, tag.convert || converter !== "true" && converter)[0]; // If there is a convertBack but no convert, converter will be "true"
// Call onRender (used by JsViews if present, to add binding annotations around rendered content)
value = value != undefined ? value : "";
value = boundTagCtx && view._.onRender
? view._.onRender(value, view, boundTagCtx)
: value;
view._.tag = undefined;
}
return value;
}
function convertArgs(tag, converter) {
var tagCtx = tag.tagCtx,
view = tagCtx.view,
args = tagCtx.args;
converter = converter && ("" + converter === converter
? (view.getRsc("converters", converter) || error("Unknown converter: '"+ converter + "'"))
: converter);
args = !args.length && !tagCtx.index && tag.autoBind // On the opening tag with no args, if autoBind is true, bind the the current data context
? [view.data]
: converter
? args.slice() // If there is a converter, use a copy of the tagCtx.args array for rendering, and replace the args[0] in
// the copied array with the converted value. But we don not modify the value of tag.tagCtx.args[0] (the original args array)
: args; // If no converter, render with the original tagCtx.args
if (converter) {
if (converter.depends) {
tag.depends = $viewsSub.getDeps(tag.depends, tag, converter.depends, converter);
}
args[0] = converter.apply(tag, args);
}
return args;
}
//=============
// jsviews._tag
//=============
function getResource(resourceType, itemName) {
var res, store,
view = this;
while ((res === undefined) && view) {
store = view.tmpl[resourceType];
res = store && store[itemName];
view = view.parent;
}
return res || $views[resourceType][itemName];
}
function renderTag(tagName, parentView, tmpl, tagCtxs, isRefresh) {
// Called from within compiled template function, to render a template tag
// Returns the rendered tag
var render, tag, tags, attr, parentTag, i, l, itemRet, tagCtx, tagCtxCtx, content, boundTagFn, tagDef,
callInit, map, thisMap, args, prop, props, converter, initialTmpl,
ret = "",
boundTagKey = +tagCtxs === tagCtxs && tagCtxs, // if tagCtxs is an integer, then it is the boundTagKey
linkCtx = parentView.linkCtx || 0,
ctx = parentView.ctx,
parentTmpl = tmpl || parentView.tmpl;
if (tagName._is === "tag") {
tag = tagName;
tagName = tag.tagName;
}
tag = tag || linkCtx.tag;
// Provide tagCtx, linkCtx and ctx access from tag
if (boundTagKey) {
// if tagCtxs is an integer, we are data binding
// Call compiled function which returns the tagCtxs for current data
tagCtxs = (boundTagFn = parentTmpl.bnds[boundTagKey-1])(parentView.data, parentView, $views);
}
l = tagCtxs.length;
for (i = 0; i < l; i++) {
tagCtx = tagCtxs[i];
props = tagCtx.props;
// Set the tmpl property to the content of the block tag, unless set as an override property on the tag
content = tagCtx.tmpl;
content = tagCtx.content = content && parentTmpl.tmpls[content - 1];
tmpl = tagCtx.props.tmpl;
if (!i && (!tmpl || !tag)) {
tagDef = parentView.getRsc("tags", tagName) || error("Unknown tag: {{"+ tagName + "}}");
}
tmpl = tmpl || (tag ? tag : tagDef).template || content;
tmpl = "" + tmpl === tmpl // if a string
? parentView.getRsc("templates", tmpl) || $templates(tmpl)
: tmpl;
$extend(tagCtx, {
tmpl: tmpl,
render: renderContent,
index: i,
view: parentView,
ctx: extendCtx(tagCtx.ctx, ctx) // Extend parentView.ctx
}); // Extend parentView.ctx
if (!tag) {
// This will only be hit for initial tagCtx (not for {{else}}) - if the tag instance does not exist yet
// Instantiate tag if it does not yet exist
if (tagDef._ctr) {
// If the tag has not already been instantiated, we will create a new instance.
// ~tag will access the tag, even within the rendering of the template content of this tag.
// From child/descendant tags, can access using ~tag.parent, or ~parentTags.tagName
// TODO provide error handling owned by the tag - using tag.onError
// try {
tag = new tagDef._ctr();
callInit = !!tag.init;
// }
// catch(e) {
// tagDef.onError(e);
// }
// Set attr on linkCtx to ensure outputting to the correct target attribute.
tag.attr = tag.attr || tagDef.attr || undefined;
// Setting either linkCtx.attr or this.attr in the init() allows per-instance choice of target attrib.
} else {
// This is a simple tag declared as a function, or with init set to false. We won't instantiate a specific tag constructor - just a standard instance object.
tag = {
// tag instance object if no init constructor
render: tagDef.render
};
}
tag._ = {
inline: !linkCtx
};
if (linkCtx) {
// Set attr on linkCtx to ensure outputting to the correct target attribute.
linkCtx.attr = tag.attr = linkCtx.attr || tag.attr;
linkCtx.tag = tag;
tag.linkCtx = linkCtx;
}
if (tag._.bnd = boundTagFn || linkCtx.fn) {
// Bound if {^{tag...}} or data-link="{tag...}"
tag._.arrVws = {};
} else if (tag.dataBoundOnly) {
error("{^{" + tagName + "}} tag must be data-bound");
}
tag.tagName = tagName;
tag.parent = parentTag = ctx && ctx.tag;
tag._is = "tag";
tag._def = tagDef;
for (prop in props = tagCtx.props) {
if (rHasHandlers.test(prop)) {
tag[prop] = props[prop]; // Copy over the onFoo or convert or convertBack props from tagCtx.props to tag (overrides values in tagDef).
}
}
//TODO better perf for childTags() - keep child tag.tags array, (and remove child, when disposed)
// tag.tags = [];
// Provide this tag on view, for addBindingMarkers on bound tags to add the tag to view._.bnds, associated with the tag id,
}
tagCtx.tag = tag;
if (tag.map && tag.tagCtxs) {
tagCtx.map = tag.tagCtxs[i].map; // Copy over the compiled map instance from the previous tagCtxs to the refreshed ones
}
if (!tag.flow) {
tagCtxCtx = tagCtx.ctx = tagCtx.ctx || {};
// tags hash: tag.ctx.tags, merged with parentView.ctx.tags,
tags = tag.parents = tagCtxCtx.parentTags = ctx && extendCtx(tagCtxCtx.parentTags, ctx.parentTags) || {};
if (parentTag) {
tags[parentTag.tagName] = parentTag;
//TODO better perf for childTags: parentTag.tags.push(tag);
}
tagCtxCtx.tag = tag;
}
}
tag.tagCtxs = tagCtxs;
parentView._.tag = tag;
tag.rendering = {}; // Provide object for state during render calls to tag and elses. (Used by {{if}} and {{for}}...)
for (i = 0; i < l; i++) {
tagCtx = tag.tagCtx = tagCtxs[i];
props = tagCtx.props;
args = convertArgs(tag, tag.convert);
if ((map = props.map || tag).map) {
if (args.length || props.map) {
thisMap = tagCtx.map = $extend(tagCtx.map || { unmap: map.unmap }, props); // Compiled map instance
if (thisMap.src !== args[0]) {
if (thisMap.src) {
thisMap.unmap();
}
map.map.apply(thisMap, args);
}
args = [thisMap.tgt];
}
}
tag.ctx = tagCtx.ctx;
if (!i && callInit) {
initialTmpl = tag.template;
tag.init(tagCtx, linkCtx, tag.ctx);
callInit = undefined;
if (tag.template !== initialTmpl) {
tag._.tmpl = tag.template; // This will override the tag.template and also tagCtx.props.tmpl for all tagCtxs
}
}
itemRet = undefined;
render = tag.render;
if (render = tag.render) {
itemRet = render.apply(tag, args);
}
args = args.length ? args : [parentView]; // no arguments - get data context from view.
itemRet = itemRet !== undefined
? itemRet // Return result of render function unless it is undefined, in which case return rendered template
: tagCtx.render(args[0], true) || (isRefresh ? undefined : "");
// No return value from render, and no template/content tagCtx.render(...), so return undefined
ret = ret ? ret + (itemRet || "") : itemRet; // If no rendered content, this will be undefined
}
delete tag.rendering;
tag.tagCtx = tag.tagCtxs[0];
tag.ctx= tag.tagCtx.ctx;
if (tag._.inline && (attr = tag.attr) && attr !== htmlStr) {
// inline tag with attr set to "text" will insert HTML-encoded content - as if it was element-based innerText
ret = attr === "text"
? $converters.html(ret)
: "";
}
return boundTagKey && parentView._.onRender
// Call onRender (used by JsViews if present, to add binding annotations around rendered content)
? parentView._.onRender(ret, parentView, boundTagKey)
: ret;
}
//=================
// View constructor
//=================
function View(context, type, parentView, data, template, key, contentTmpl, onRender) {
// Constructor for view object in view hierarchy. (Augmented by JsViews if JsViews is loaded)
var views, parentView_, tag,
isArray = type === "array",
self_ = {
key: 0,
useKey: isArray ? 0 : 1,
id: "" + viewId++,
onRender: onRender,
bnds: {}
},
self = {
data: data,
tmpl: template,
content: contentTmpl,
views: isArray ? [] : {},
parent: parentView,
type: type,
// If the data is an array, this is an 'array view' with a views array for each child 'item view'
// If the data is not an array, this is an 'item view' with a views 'map' object for any child nested views
// ._.useKey is non zero if is not an 'array view' (owning a data array). Uuse this as next key for adding to child views map
get: getView,
getIndex: getIndex,
getRsc: getResource,
hlp: getHelper,
_: self_,
_is: "view"
};
if (parentView) {
views = parentView.views;
parentView_ = parentView._;
if (parentView_.useKey) {
// Parent is an 'item view'. Add this view to its views object
// self._key = is the key in the parent view map
views[self_.key = "_" + parentView_.useKey++] = self;
self.index = indexStr;
self.getIndex = getNestedIndex;
tag = parentView_.tag;
self_.bnd = isArray && (!tag || !!tag._.bnd && tag); // For array views that are data bound for collection change events, set the
// view._.bnd property to true for top-level link() or data-link="{for}", or to the tag instance for a data-bound tag, e.g. {^{for ...}}
} else {
// Parent is an 'array view'. Add this view to its views array
views.splice(
// self._.key = self.index - the index in the parent view array
self_.key = self.index = key,
0, self);
}
// If no context was passed in, use parent context
// If context was passed in, it should have been merged already with parent context
self.ctx = context || parentView.ctx;
} else {
self.ctx = context;
}
return self;
}
//=============
// Registration
//=============
function compileChildResources(parentTmpl) {
var storeName, resources, resourceName, settings, compile;
for (storeName in jsvStores) {
settings = jsvStores[storeName];
if ((compile = settings.compile) && (resources = parentTmpl[storeName + "s"])) {
for (resourceName in resources) {
// compile child resource declarations (templates, tags, converters or helpers)
resources[resourceName] = compile(resourceName, resources[resourceName], parentTmpl, storeName, settings);
}
}
}
}
function compileTag(name, tagDef, parentTmpl) {
var init, tmpl;
if ($isFunction(tagDef)) {
// Simple tag declared as function. No presenter instantation.
tagDef = {
depends: tagDef.depends,
render: tagDef
};
} else {
// Tag declared as object, used as the prototype for tag instantiation (control/presenter)
if (tmpl = tagDef.template) {
tagDef.template = "" + tmpl === tmpl ? ($templates[tmpl] || $templates(tmpl)) : tmpl;
}
if (tagDef.init !== false) {
// Set int: false on tagDef if you want to provide just a render method, or render and template, but no constuctor or prototype.
// so equivalent to setting tag to render function, except you can also provide a template.
init = tagDef._ctr = function(tagCtx) {};
(init.prototype = tagDef).constructor = init;
}
}
if (parentTmpl) {
tagDef._parentTmpl = parentTmpl;
}
//TODO tagDef.onError = function(e) {
// var error;
// if (error = this.prototype.onError) {
// error.call(this, e);
// } else {
// throw e;
// }
// }
return tagDef;
}
function compileTmpl(name, tmpl, parentTmpl, storeName, storeSettings, options) {
// tmpl is either a template object, a selector for a template script block, the name of a compiled template, or a template object
//==== nested functions ====
function tmplOrMarkupFromStr(value) {
// If value is of type string - treat as selector, or name of compiled template
// Return the template object, if already compiled, or the markup string
if (("" + value === value) || value.nodeType > 0) {
try {
elem = value.nodeType > 0
? value
: !rTmplString.test(value)
// If value is a string and does not contain HTML or tag content, then test as selector
&& jQuery && jQuery(global.document).find(value)[0]; // TODO address case where DOM is not available
// If selector is valid and returns at least one element, get first element
// If invalid, jQuery will throw. We will stay with the original string.
} catch (e) {}
if (elem) {
// Generally this is a script element.
// However we allow it to be any element, so you can for example take the content of a div,
// use it as a template, and replace it by the same content rendered against data.
// e.g. for linking the content of a div to a container, and using the initial content as template:
// $.link("#content", model, {tmpl: "#content"});
value = elem.getAttribute(tmplAttr);
name = name || value;
value = $templates[value];
if (!value) {
// Not already compiled and cached, so compile and cache the name
// Create a name for compiled template if none provided
name = name || "_" + autoTmplName++;
elem.setAttribute(tmplAttr, name);
// Use tmpl as options
value = $templates[name] = compileTmpl(name, elem.innerHTML, parentTmpl, storeName, storeSettings, options);
}
elem = null;
}
return value;
}
// If value is not a string, return undefined
}
var tmplOrMarkup, elem;
//==== Compile the template ====
tmpl = tmpl || "";
tmplOrMarkup = tmplOrMarkupFromStr(tmpl);
// If options, then this was already compiled from a (script) element template declaration.
// If not, then if tmpl is a template object, use it for options
options = options || (tmpl.markup ? tmpl : {});
options.tmplName = name;
if (parentTmpl) {
options._parentTmpl = parentTmpl;
}
// If tmpl is not a markup string or a selector string, then it must be a template object
// In that case, get it from the markup property of the object
if (!tmplOrMarkup && tmpl.markup && (tmplOrMarkup = tmplOrMarkupFromStr(tmpl.markup))) {
if (tmplOrMarkup.fn && (tmplOrMarkup.debug !== tmpl.debug || tmplOrMarkup.allowCode !== tmpl.allowCode)) {
// if the string references a compiled template object, but the debug or allowCode props are different, need to recompile
tmplOrMarkup = tmplOrMarkup.markup;
}
}
if (tmplOrMarkup !== undefined) {
if (name && !parentTmpl) {
$render[name] = function() {
return tmpl.render.apply(tmpl, arguments);
};
}
if (tmplOrMarkup.fn || tmpl.fn) {
// tmpl is already compiled, so use it, or if different name is provided, clone it
if (tmplOrMarkup.fn) {
if (name && name !== tmplOrMarkup.tmplName) {
tmpl = extendCtx(options, tmplOrMarkup);
} else {
tmpl = tmplOrMarkup;
}
}
} else {
// tmplOrMarkup is a markup string, not a compiled template
// Create template object
tmpl = TmplObject(tmplOrMarkup, options);
// Compile to AST and then to compiled function
tmplFn(tmplOrMarkup.replace(rEscapeQuotes, "\\$&"), tmpl);
}
compileChildResources(options);
return tmpl;
}
}
//==== /end of function compile ====
function TmplObject(markup, options) {
// Template object constructor
var htmlTag,
wrapMap = $viewsSettings.wrapMap || {},
tmpl = $extend(
{
markup: markup,
tmpls: [],
links: {}, // Compiled functions for link expressions
tags: {}, // Compiled functions for bound tag expressions
bnds: [],
_is: "template",
render: renderContent
},
options
);
if (!options.htmlTag) {
// Set tmpl.tag to the top-level HTML tag used in the template, if any...
htmlTag = rFirstElem.exec(markup);
tmpl.htmlTag = htmlTag ? htmlTag[1].toLowerCase() : "";
}
htmlTag = wrapMap[tmpl.htmlTag];
if (htmlTag && htmlTag !== wrapMap.div) {
// When using JsViews, we trim templates which are inserted into HTML contexts where text nodes are not rendered (i.e. not 'Phrasing Content').
// Currently not trimmed for <li> tag. (Not worth adding perf cost)
tmpl.markup = $.trim(tmpl.markup);
}
return tmpl;
}
function registerStore(storeName, storeSettings) {
function theStore(name, item, parentTmpl) {
// The store is also the function used to add items to the store. e.g. $.templates, or $.views.tags
// For store of name 'thing', Call as:
// $.views.things(items[, parentTmpl]),
// or $.views.things(name, item[, parentTmpl])
var onStore, compile, itemName, thisStore;
if (name && "" + name !== name && !name.nodeType && !name.markup) {
// Call to $.views.things(items[, parentTmpl]),
// Adding items to the store
// If name is a map, then item is parentTmpl. Iterate over map and call store for key.
for (itemName in name) {
theStore(itemName, name[itemName], item);
}
return $views;
}
// Adding a single unnamed item to the store
if (item === undefined) {
item = name;
name = undefined;
}
if (name && "" + name !== name) { // name must be a string
parentTmpl = item;
item = name;
name = undefined;
}
thisStore = parentTmpl ? parentTmpl[storeNames] = parentTmpl[storeNames] || {} : theStore;
compile = storeSettings.compile;
if (onStore = $viewsSub.onBeforeStoreItem) {
// e.g. provide an external compiler or preprocess the item.
compile = onStore(thisStore, name, item, compile) || compile;
}
if (!name) {
item = compile(undefined, item);
} else if (item === null) {
// If item is null, delete this entry
delete thisStore[name];
} else {
thisStore[name] = compile ? (item = compile(name, item, parentTmpl, storeName, storeSettings)) : item;
}
if (compile && item) {
item._is = storeName; // Only do this for compiled objects (tags, templates...)
}
if (onStore = $viewsSub.onStoreItem) {
// e.g. JsViews integration
onStore(thisStore, name, item, compile);
}
return item;
}
var storeNames = storeName + "s";
$views[storeNames] = theStore;
jsvStores[storeName] = storeSettings;
}
//==============
// renderContent
//==============
function renderContent(data, context, noIteration, parentView, key, onRender) {
// Render template against data as a tree of subviews (nested rendered template instances), or as a string (top-level template).
// If the data is the parent view, treat as noIteration, re-render with the same data context.
var i, l, dataItem, newView, childView, itemResult, swapContent, tagCtx, contentTmpl, tag_, outerOnRender, tmplName, tmpl,
self = this,
allowDataLink = !self.attr || self.attr === htmlStr,
result = "";
if (!!context === context) {
noIteration = context; // passing boolean as second param - noIteration
context = undefined;
}
if (key === true) {
swapContent = true;
key = 0;
}
if (self.tag) {
// This is a call from renderTag or tagCtx.render(...)
tagCtx = self;
self = self.tag;
tag_ = self._;
tmplName = self.tagName;
tmpl = tag_.tmpl || tagCtx.tmpl;
context = extendCtx(context, self.ctx);
contentTmpl = tagCtx.content; // The wrapped content - to be added to views, below
if (tagCtx.props.link === false) {
// link=false setting on block tag
// We will override inherited value of link by the explicit setting link=false taken from props
// The child views of an unlinked view are also unlinked. So setting child back to true will not have any effect.
context = context || {};
context.link = false;
}
parentView = parentView || tagCtx.view;
data = arguments.length ? data : parentView;
} else {
tmpl = self.jquery && (self[0] || error('Unknown template: "' + self.selector + '"')) // This is a call from $(selector).render
|| self;
}
if (tmpl) {
if (!parentView && data && data._is === "view") {
parentView = data; // When passing in a view to render or link (and not passing in a parent view) use the passed in view as parentView
}
if (parentView) {
contentTmpl = contentTmpl || parentView.content; // The wrapped content - to be added as #content property on views, below
onRender = onRender || parentView._.onRender;
if (data === parentView) {
// Inherit the data from the parent view.
// This may be the contents of an {{if}} block
data = parentView.data;
}
context = extendCtx(context, parentView.ctx);
}
if (!parentView || parentView.data === undefined) {
(context = context || {}).root = data; // Provide ~root as shortcut to top-level data.
}
// Set additional context on views created here, (as modified context inherited from the parent, and to be inherited by child views)
// Note: If no jQuery, $extend does not support chained copies - so limit extend() to two parameters
if (!tmpl.fn) {
tmpl = $templates[tmpl] || $templates(tmpl);
}
if (tmpl) {
onRender = (context && context.link) !== false && allowDataLink && onRender;
// If link===false, do not call onRender, so no data-linking marker nodes
outerOnRender = onRender;
if (onRender === true) {
// Used by view.refresh(). Don't create a new wrapper view.
outerOnRender = undefined;
onRender = parentView._.onRender;
}
context = tmpl.helpers
? extendCtx(tmpl.helpers, context)
: context;
if ($.isArray(data) && !noIteration) {
// Create a view for the array, whose child views correspond to each data item. (Note: if key and parentView are passed in
// along with parent view, treat as insert -e.g. from view.addViews - so parentView is already the view item for array)
newView = swapContent
? parentView :
(key !== undefined && parentView) || View(context, "array", parentView, data, tmpl, key, contentTmpl, onRender);
for (i = 0, l = data.length; i < l; i++) {
// Create a view for each data item.
dataItem = data[i];
childView = View(context, "item", newView, dataItem, tmpl, (key || 0) + i, contentTmpl, onRender);
itemResult = tmpl.fn(dataItem, childView, $views);
result += newView._.onRender ? newView._.onRender(itemResult, childView) : itemResult;
}
} else {
// Create a view for singleton data object. The type of the view will be the tag name, e.g. "if" or "myTag" except for
// "item", "array" and "data" views. A "data" view is from programatic render(object) against a 'singleton'.
newView = swapContent ? parentView : View(context, tmplName || "data", parentView, data, tmpl, key, contentTmpl, onRender);
if (tag_ && !self.flow) {
newView.tag = self;
}
result += tmpl.fn(data, newView, $views);
}
return outerOnRender ? outerOnRender(result, newView) : result;
}
}
return "";
}
//===========================
// Build and compile template
//===========================
// Generate a reusable function that will serve to render a template against data
// (Compile AST then build template function)
function error(message) {
throw new $viewsSub.Err(message);
}
function syntaxError(message) {
error("Syntax error\n" + message);
}
function tmplFn(markup, tmpl, isLinkExpr, convertBack) {
// Compile markup to AST (abtract syntax tree) then build the template function code from the AST nodes
// Used for compiling templates, and also by JsViews to build functions for data link expressions
//==== nested functions ====
function pushprecedingContent(shift) {
shift -= loc;
if (shift) {
content.push(markup.substr(loc, shift).replace(rNewLine, "\\n"));
}
}
function blockTagCheck(tagName) {
tagName && syntaxError('Unmatched or missing tag: "{{/' + tagName + '}}" in template:\n' + markup);
}
function parseTag(all, bind, tagName, converter, colon, html, comment, codeTag, params, slash, closeBlock, index) {
// bind tag converter colon html comment code params slash closeBlock
// /{(\^)?{(?:(?:(\w+(?=[\/\s}]))|(?:(\w+)?(:)|(>)|!--((?:[^-]|-(?!-))*)--|(\*)))\s*((?:[^}]|}(?!}))*?)(\/)?|(?:\/(\w+)))}}/g
// Build abstract syntax tree (AST): [tagName, converter, params, content, hash, bindings, contentMarkup]
if (html) {
colon = ":";
converter = htmlStr;
}
slash = slash || isLinkExpr;
var noError, current0,
pathBindings = bind && [],
code = "",
hash = "",
passedCtx = "",
// Block tag if not self-closing and not {{:}} or {{>}} (special case) and not a data-link expression
block = !slash && !colon && !comment;
//==== nested helper function ====
tagName = tagName || (params = params || "#data", colon); // {{:}} is equivalent to {{:#data}}
pushprecedingContent(index);
loc = index + all.length; // location marker - parsed up to here
if (codeTag) {
if (allowCode) {
content.push(["*", "\n" + params.replace(rUnescapeQuotes, "$1") + "\n"]);
}
} else if (tagName) {
if (tagName === "else") {
if (rTestElseIf.test(params)) {
syntaxError('for "{{else if expr}}" use "{{else expr}}"');
}
pathBindings = current[6];
current[7] = markup.substring(current[7], index); // contentMarkup for block tag
current = stack.pop();
content = current[3];
block = true;
}
if (params) {
// remove newlines from the params string, to avoid compiled code errors for unterminated strings
params = params.replace(rNewLine, " ");
code = parseParams(params, pathBindings, tmpl)
.replace(rBuildHash, function(all, isCtx, keyValue) {
if (isCtx) {
passedCtx += keyValue + ",";
} else {
hash += keyValue + ",";
}
hasHandlers = hasHandlers || rHasHandlers.test(keyValue.split(":")[0]);
return "";
});
}
hash = hash.slice(0, -1);
code = code.slice(0, -1);
noError = hash && (hash.indexOf("noerror:true") + 1) && hash || "";
newNode = [
tagName,
converter || !!convertBack || hasHandlers || "",
code,
block && [],
'\n\tparams:"' + params + '",\n\tprops:{' + hash + "}"
+ (passedCtx ? ",ctx:{" + passedCtx.slice(0, -1) + "}" : ""),
noError,
pathBindings || 0
];
content.push(newNode);
if (block) {
stack.push(current);
current = newNode;
current[7] = loc; // Store current location of open tag, to be able to add contentMarkup when we reach closing tag
}
} else if (closeBlock) {
current0 = current[0];
blockTagCheck(closeBlock !== current0 && current0 !== "else" && closeBlock);
current[7] = markup.substring(current[7], index); // contentMarkup for block tag
current = stack.pop();
}
blockTagCheck(!current && closeBlock);
content = current[3];
}
//==== /end of nested functions ====
var newNode, hasHandlers,
allowCode = tmpl && tmpl.allowCode,
astTop = [],
loc = 0,
stack = [],
content = astTop,
current = [, , , astTop];
//TODO result = tmplFnsCache[markup]; // Only cache if template is not named and markup length < ...,
//and there are no bindings or subtemplates?? Consider standard optimization for data-link="a.b.c"
// if (result) {
// tmpl.fn = result;
// } else {
// result = markup;
blockTagCheck(stack[0] && stack[0][3].pop()[0]);
// Build the AST (abstract syntax tree) under astTop
markup.replace(rTag, parseTag);
pushprecedingContent(markup.length);
if (loc = astTop[astTop.length - 1]) {
blockTagCheck("" + loc !== loc && (+loc[7] === loc[7]) && loc[0]);
}
// result = tmplFnsCache[markup] = buildCode(astTop, tmpl);
// }
return buildCode(astTop, isLinkExpr ? markup : tmpl, isLinkExpr);
}
function buildCode(ast, tmpl, isLinkExpr) {
// Build the template function code from the AST nodes, and set as property on the passed-in template object
// Used for compiling templates, and also by JsViews to build functions for data link expressions
var i, node, tagName, converter, params, hash, hasTag, hasEncoder, getsVal, hasCnvt, useCnvt, tmplBindings, pathBindings,
nestedTmpls, tmplName, nestedTmpl, tagAndElses, content, markup, nextIsElse, oldCode, isElse, isGetVal, prm, tagCtxFn,
tmplBindingKey = 0,
code = "",
noError = "",
tmplOptions = {},
l = ast.length;
if ("" + tmpl === tmpl) {
tmplName = isLinkExpr ? 'data-link="' + tmpl.replace(rNewLine, " ").slice(1, -1) + '"' : tmpl;
tmpl = 0;
} else {
tmplName = tmpl.tmplName || "unnamed";
if (tmpl.allowCode) {
tmplOptions.allowCode = true;
}
if (tmpl.debug) {
tmplOptions.debug = true;
}
tmplBindings = tmpl.bnds;
nestedTmpls = tmpl.tmpls;
}
for (i = 0; i < l; i++) {
// AST nodes: [tagName, converter, params, content, hash, noError, pathBindings, contentMarkup, link]
node = ast[i];
// Add newline for each callout to t() c() etc. and each markup string
if ("" + node === node) {
// a markup string to be inserted
code += '\nret+="' + node + '";';
} else {
// a compiled tag expression to be inserted
tagName = node[0];
if (tagName === "*") {
// Code tag: {{* }}
code += "" + node[1];
} else {
converter = node[1];
params = node[2];
content = node[3];
hash = node[4];
noError = node[5];
markup = node[7];
if (!(isElse = tagName === "else")) {
tmplBindingKey = 0;
if (tmplBindings && (pathBindings = node[6])) { // Array of paths, or false if not data-bound
tmplBindingKey = tmplBindings.push(pathBindings);
}
}
if (isGetVal = tagName === ":") {
if (converter) {
tagName = converter === htmlStr ? ">" : converter + tagName;
}
if (noError) {
// If the tag includes noerror=true, we will do a try catch around expressions for named or unnamed parameters
// passed to the tag, and return the empty string for each expression if it throws during evaluation
//TODO This does not work for general case - supporting noError on multiple expressions, e.g. tag args and properties.
//Consider replacing with try<a.b.c(p,q) + a.d, xxx> and return the value of the expression a.b.c(p,q) + a.d, or, if it throws, return xxx||'' (rather than always the empty string)
prm = "prm" + i;
noError = "try{var " + prm + "=[" + params + "][0];}catch(e){" + prm + '="";}\n';
params = prm;
}
} else {
if (content) {
// Create template object for nested template
nestedTmpl = TmplObject(markup, tmplOptions);
nestedTmpl.tmplName = tmplName + "/" + tagName;
// Compile to AST and then to compiled function
buildCode(content, nestedTmpl);
nestedTmpls.push(nestedTmpl);
}
if (!isElse) {
// This is not an else tag.
tagAndElses = tagName;
// Switch to a new code string for this bound tag (and its elses, if it has any) - for returning the tagCtxs array
oldCode = code;
code = "";
}
nextIsElse = ast[i + 1];
nextIsElse = nextIsElse && nextIsElse[0] === "else";
}
hash += ",\n\targs:[" + params + "]}";
if (isGetVal && (pathBindings || converter && converter !== htmlStr)) {
// For convertVal we need a compiled function to return the new tagCtx(s)
tagCtxFn = new Function("data,view,j,u", " // "
+ tmplName + " " + tmplBindingKey + " " + tagName + "\n" + noError + "return {" + hash + ";");
tagCtxFn.paths = pathBindings;
tagCtxFn._ctxs = tagName;
if (isLinkExpr) {
return tagCtxFn;
}
useCnvt = 1;
}
code += (isGetVal
? "\n" + (pathBindings ? "" : noError) + (isLinkExpr ? "return " : "ret+=") + (useCnvt // Call _cnvt if there is a converter: {{cnvt: ... }} or {^{cnvt: ... }}
? (useCnvt = 0, hasCnvt = true, 'c("' + converter + '",view,' + (pathBindings
? ((tmplBindings[tmplBindingKey - 1] = tagCtxFn), tmplBindingKey) // Store the compiled tagCtxFn in tmpl.bnds, and pass the key to convertVal()
: "{" + hash) + ");")
: tagName === ">"
? (hasEncoder = true, "h(" + params + ");")
: (getsVal = true, "(v=" + params + ")!=" + (isLinkExpr ? "=" : "") + 'u?v:"";') // Strict equality just for data-link="title{:expr}" so expr=null will remove title attribute
)
: (hasTag = true, "{view:view,tmpl:" // Add this tagCtx to the compiled code for the tagCtxs to be passed to renderTag()
+ (content ? nestedTmpls.length: "0") + "," // For block tags, pass in the key (nestedTmpls.length) to the nested content template
+ hash + ","));
if (tagAndElses && !nextIsElse) {
code = "[" + code.slice(0, -1) + "]"; // This is a data-link expression or the last {{else}} of an inline bound tag. We complete the code for returning the tagCtxs array
if (isLinkExpr || pathBindings) {
// This is a bound tag (data-link expression or inline bound tag {^{tag ...}}) so we store a compiled tagCtxs function in tmp.bnds
code = new Function("data,view,j,u", " // " + tmplName + " " + tmplBindingKey + " " + tagAndElses + "\nreturn " + code + ";");
if (pathBindings) {
(tmplBindings[tmplBindingKey - 1] = code).paths = pathBindings;
}
code._ctxs = tagName;
if (isLinkExpr) {
return code; // For a data-link expression we return the compiled tagCtxs function
}
}
// This is the last {{else}} for an inline tag.
// For a bound tag, pass the tagCtxs fn lookup key to renderTag.
// For an unbound tag, include the code directly for evaluating tagCtxs array
code = oldCode + '\nret+=t("' + tagAndElses + '",view,this,' + (tmplBindingKey || code) + ");";
pathBindings = 0;
tagAndElses = 0;
}
}
}
}
// Include only the var references that are needed in the code
code = "// " + tmplName
+ "\nvar j=j||" + (jQuery ? "jQuery." : "js") + "views"
+ (getsVal ? ",v" : "") // gets value
+ (hasTag ? ",t=j._tag" : "") // has tag
+ (hasCnvt ? ",c=j._cnvt" : "") // converter
+ (hasEncoder ? ",h=j.converters.html" : "") // html converter
+ (isLinkExpr ? ";\n" : ',ret="";\n')
+ ($viewsSettings.tryCatch ? "try{\n" : "")
+ (tmplOptions.debug ? "debugger;" : "")
+ code + (isLinkExpr ? "\n" : "\nreturn ret;\n")
+ ($viewsSettings.tryCatch ? "\n}catch(e){return j._err(e);}" : "");
try {
code = new Function("data,view,j,u", code);
} catch (e) {
syntaxError("Compiled template code:\n\n" + code, e);
}
if (tmpl) {
tmpl.fn = code;
}
return code;
}
function parseParams(params, bindings, tmpl) {
//function pushBindings() { // Consider structured path bindings
// if (bindings) {
// named ? bindings[named] = bindings.pop(): bindings.push(list = []);
// }
//}
function parseTokens(all, lftPrn0, lftPrn, bound, path, operator, err, eq, path2, prn, comma, lftPrn2, apos, quot, rtPrn, rtPrnDot, prn2, space, index, full) {
//rParams = /(\()(?=\s*\()|(?:([([])\s*)?(?:(\^?)(!*?[#~]?[\w$.^]+)?\s*((\+\+|--)|\+|-|&&|\|\||===|!==|==|!=|<=|>=|[<>%*:?\/]|(=))\s*|(!*?[#~]?[\w$.^]+)([([])?)|(,\s*)|(\(?)\\?(?:(')|("))|(?:\s*(([)\]])(?=\s*\.|\s*\^)|[)\]])([([]?))|(\s+)/g,
// lftPrn0 lftPrn bound path operator err eq path2 prn comma lftPrn2 apos quot rtPrn rtPrnDot prn2 space
// (left paren? followed by (path? followed by operator) or (path followed by paren?)) or comma or apos or quot or right paren or space
var expr;
operator = operator || "";
lftPrn = lftPrn || lftPrn0 || lftPrn2;
path = path || path2;
prn = prn || prn2 || "";
function parsePath(allPath, not, object, helper, view, viewProperty, pathTokens, leafToken) {
// rPath = /^(?:null|true|false|\d[\d.]*|(!*?)([\w$]+|\.|~([\w$]+)|#(view|([\w$]+))?)([\w$.^]*?)(?:[.[^]([\w$]+)\]?)?)$/g,
// none object helper view viewProperty pathTokens leafToken
if (object) {
if (bindings) {
if (named === "linkTo") {
bindto = bindings._jsvto = bindings._jsvto || [];
bindto.push(path);
}
if (!named || boundName) {
bindings.push(path.slice(not.length)); // Add path binding for paths on props and args,
// list.push(path);
}
}
if (object !== ".") {
var ret = (helper
? 'view.hlp("' + helper + '")'
: view
? "view"
: "data")
+ (leafToken
? (viewProperty
? "." + viewProperty
: helper
? ""
: (view ? "" : "." + object)
) + (pathTokens || "")
: (leafToken = helper ? "" : view ? viewProperty || "" : object, ""));
ret = ret + (leafToken ? "." + leafToken : "");
return not + (ret.slice(0, 9) === "view.data"
? ret.slice(5) // convert #view.data... to data...
: ret);
}
}
return allPath;
}
if (err && !aposed && !quoted) {
syntaxError(params);
} else {
if (bindings && rtPrnDot && !aposed && !quoted) {
// This is a binding to a path in which an object is returned by a helper/data function/expression, e.g. foo()^x.y or (a?b:c)^x.y
// We create a compiled function to get the object instance (which will be called when the dependent data of the subexpression changes, to return the new object, and trigger re-binding of the subsequent path)
if (!named || boundName || bindto) {
expr = pathStart[parenDepth];
if (full.length - 1 > index - expr) { // We need to compile a subexpression
expr = full.slice(expr, index + 1);
rtPrnDot = delimOpenChar1 + ":" + expr + delimCloseChar0; // The parameter or function subexpression
//TODO Optimize along the lines of:
//var paths = [];
//rtPrnDot = tmplLinks[rtPrnDot] = tmplLinks[rtPrnDot] || tmplFn(delimOpenChar0 + rtPrnDot + delimCloseChar1, tmpl, true, paths); // Compile the expression (or use cached copy already in tmpl.links)
//rtPrnDot.paths = rtPrnDot.paths || paths;
rtPrnDot = tmplLinks[rtPrnDot] = tmplLinks[rtPrnDot] || tmplFn(delimOpenChar0 + rtPrnDot + delimCloseChar1, tmpl, true); // Compile the expression (or use cached copy already in tmpl.links)
if (!rtPrnDot.paths) {
parseParams(expr, rtPrnDot.paths = [], tmpl);
}
(bindto || bindings).push({_jsvOb: rtPrnDot}); // Insert special object for in path bindings, to be used for binding the compiled sub expression ()
//list.push({_jsvOb: rtPrnDot});
}
}
}
return (aposed
// within single-quoted string
? (aposed = !apos, (aposed ? all : '"'))
: quoted
// within double-quoted string
? (quoted = !quot, (quoted ? all : '"'))
:
(
(lftPrn
? (parenDepth++, pathStart[parenDepth] = index++, lftPrn)
: "")
+ (space
? (parenDepth
? ""
//: (pushBindings(), named
// : ",")
: named
? (named = boundName = bindto = false, "\b")
: ","
)
: eq
// named param
// Insert backspace \b (\x08) as separator for named params, used subsequently by rBuildHash
? (parenDepth && syntaxError(params), named = path, boundName = bound, /*pushBindings(),*/ '\b' + path + ':')
: path
// path
? (path.split("^").join(".").replace(rPath, parsePath)
+ (prn
? (fnCall[++parenDepth] = true, path.charAt(0) !== "." && (pathStart[parenDepth] = index), prn)
: operator)
)
: operator
? operator
: rtPrn
// function
? ((fnCall[parenDepth--] = false, rtPrn)
+ (prn
? (fnCall[++parenDepth] = true, prn)
: "")
)
: comma
? (fnCall[parenDepth] || syntaxError(params), ",") // We don't allow top-level literal arrays or objects
: lftPrn0
? ""
: (aposed = apos, quoted = quot, '"')
))
);
}
}
var named, bindto, boundName, // list,
tmplLinks = tmpl.links,
fnCall = {},
pathStart = {0:-1},
parenDepth = 0,
quoted = false, // boolean for string content in double quotes
aposed = false; // or in single quotes
//pushBindings();
return (params + " ")
.replace(/\)\^/g, ").") // Treat "...foo()^bar..." as equivalent to "...foo().bar..."
//since preceding computed observables in the path will always be updated if their dependencies change
.replace(rParams, parseTokens);
}
//==========
// Utilities
//==========
// Merge objects, in particular contexts which inherit from parent contexts
function extendCtx(context, parentContext) {
// Return copy of parentContext, unless context is defined and is different, in which case return a new merged context
// If neither context nor parentContext are defined, return undefined
return context && context !== parentContext
? (parentContext
? $extend($extend({}, parentContext), context)
: context)
: parentContext && $extend({}, parentContext);
}
// Get character entity for HTML and Attribute encoding
function getCharEntity(ch) {
return charEntities[ch] || (charEntities[ch] = "&#" + ch.charCodeAt(0) + ";");
}
//========================== Initialize ==========================
for (jsvStoreName in jsvStores) {
registerStore(jsvStoreName, jsvStores[jsvStoreName]);
}
var $observable,
$templates = $views.templates,
$converters = $views.converters,
$helpers = $views.helpers,
$tags = $views.tags,
$viewsSub = $views.sub,
$isFunction = $viewsSub.isFn,
$viewsSettings = $views.settings;
if (jQuery) {
////////////////////////////////////////////////////////////////////////////////////////////////
// jQuery is loaded, so make $ the jQuery object
$ = jQuery;
$.fn.render = renderContent;
if ($observable = $.observable) {
$extend($viewsSub, $observable.sub); // jquery.observable.js was loaded before jsrender.js
delete $observable.sub;
}
} else {
////////////////////////////////////////////////////////////////////////////////////////////////
// jQuery is not loaded.
$ = global.jsviews = {};
$.isArray = Array && Array.isArray || function(obj) {
return Object.prototype.toString.call(obj) === "[object Array]";
};
// //========================== Future Node.js support ==========================
// if ((nodeJsModule = global.module) && nodeJsModule.exports) {
// nodeJsModule.exports = $;
// }
}
$.render = $render;
$.views = $views;
$.templates = $templates = $views.templates;
$viewsSettings({
debugMode: dbgMode,
delimiters: $viewsDelimiters,
_dbgMode: true,
tryCatch: true
});
//========================== Register tags ==========================
$tags({
"else": function() {}, // Does nothing but ensures {{else}} tags are recognized as valid
"if": {
render: function(val) {
// This function is called once for {{if}} and once for each {{else}}.
// We will use the tag.rendering object for carrying rendering state across the calls.
// If not done (a previous block has not been rendered), look at expression for this block and render the block if expression is truthy
// Otherwise return ""
var self = this,
ret = (self.rendering.done || !val && (arguments.length || !self.tagCtx.index))
? ""
: (self.rendering.done = true, self.selected = self.tagCtx.index,
// Test is satisfied, so render content on current context. We call tagCtx.render() rather than return undefined
// (which would also render the tmpl/content on the current context but would iterate if it is an array)
self.tagCtx.render(self.tagCtx.view, true)); // no arg, so renders against parentView.data
return ret;
},
onUpdate: function(ev, eventArgs, tagCtxs) {
var tci, prevArg, different;
for (tci = 0; (prevArg = this.tagCtxs[tci]) && prevArg.args.length; tci++) {
prevArg = prevArg.args[0];
different = !prevArg !== !tagCtxs[tci].args[0];
if ((!this.convert && !!prevArg) || different) {
return different;
// If there is no converter, and newArg and prevArg are both truthy, return false to cancel update. (Even if values on later elses are different, we still don't want to update, since rendered output would be unchanged)
// If newArg and prevArg are different, return true, to update
// If newArg and prevArg are both falsey, move to the next {{else ...}}
}
}
// Boolean value of all args are unchanged (falsey), so return false to cancel update
return false;
},
flow: true
},
"for": {
render: function(val) {
// This function is called once for {{for}} and once for each {{else}}.
// We will use the tag.rendering object for carrying rendering state across the calls.
var finalElse,
self = this,
tagCtx = self.tagCtx,
result = "",
done = 0;
if (!self.rendering.done) {
if (finalElse = !arguments.length) {
val = tagCtx.view.data; // For the final else, defaults to current data without iteration.
}
if (val !== undefined) {
result += tagCtx.render(val, finalElse); // Iterates except on final else, if data is an array. (Use {{include}} to compose templates without array iteration)
done += $.isArray(val) ? val.length : 1;
}
if (self.rendering.done = done) {
self.selected = tagCtx.index;
}
// If nothing was rendered we will look at the next {{else}}. Otherwise, we are done.
}
return result;
},
flow: true,
autoBind: true
},
include: {
flow: true,
autoBind: true
},
"*": {
// {{* code... }} - Ignored if template.allowCode is false. Otherwise include code in compiled template
render: retVal,
flow: true
}
});
function getTargetProps(source) {
// this pointer is theMap - which has tagCtx.props too
// arguments: tagCtx.args.
var key, prop,
props = [];
if (typeof source === "object") {
for (key in source) {
prop = source[key];
if (!prop || !prop.toJSON || prop.toJSON()) {
if (!$isFunction(prop)) {
props.push({ key: key, prop: source[key] });
}
}
}
}
return props;
}
$tags({
props: $extend($extend({}, $tags["for"]),
DataMap(getTargetProps)
)
});
$tags.props.autoBind = true;
//========================== Register converters ==========================
$converters({
html: function(text) {
// HTML encode: Replace < > & and ' and " by corresponding entities.
return text != undefined ? String(text).replace(rHtmlEncode, getCharEntity) : ""; // null and undefined return ""
},
attr: function(text) {
// Attribute encode: Replace < > & ' and " by corresponding entities.
return text != undefined ? String(text).replace(rAttrEncode, getCharEntity) : text === null ? text : ""; // null returns null, e.g. to remove attribute. undefined returns ""
},
url: function(text) {
// URL encoding helper.
return text != undefined ? encodeURI(String(text)) : text === null ? text : ""; // null returns null, e.g. to remove attribute. undefined returns ""
}
});
//========================== Define default delimiters ==========================
$viewsDelimiters();
})(this, this.jQuery);