5f664dd78b
The idea is that the environment wraps up the mutable stuff in Handlebars (like the helpers) and that you could theoretically create a new one at any time and pass it in to Handlebars.template. Every test makes a new environment and uses it in template compilation.
170 lines
4.4 KiB
JavaScript
170 lines
4.4 KiB
JavaScript
/*jshint eqnull: true */
|
|
|
|
import { Exception, extend, isEmpty } from "./utils";
|
|
|
|
var K = function() { return this; };
|
|
|
|
export var VERSION = "1.0.0";
|
|
export var COMPILER_REVISION = 4;
|
|
|
|
export var REVISION_CHANGES = {
|
|
1: '<= 1.0.rc.2', // 1.0.rc.2 is actually rev2 but doesn't report it
|
|
2: '== 1.0.0-rc.3',
|
|
3: '== 1.0.0-rc.4',
|
|
4: '>= 1.0.0'
|
|
};
|
|
|
|
var toString = Object.prototype.toString,
|
|
functionType = '[object Function]',
|
|
objectType = '[object Object]';
|
|
|
|
export function HandlebarsEnvironment(helpers, partials) {
|
|
this.helpers = helpers || {};
|
|
this.partials = partials || {};
|
|
|
|
registerDefaultHelpers(this);
|
|
}
|
|
|
|
HandlebarsEnvironment.prototype = {
|
|
constructor: HandlebarsEnvironment,
|
|
|
|
registerHelper: function(name, fn, inverse) {
|
|
if (toString.call(name) === objectType) {
|
|
if (inverse || fn) { throw new Exception('Arg not supported with multiple helpers'); }
|
|
extend(this.helpers, name);
|
|
} else {
|
|
if (inverse) { fn.not = inverse; }
|
|
this.helpers[name] = fn;
|
|
}
|
|
},
|
|
|
|
registerPartial: function(name, str) {
|
|
if (toString.call(name) === objectType) {
|
|
extend(this.partials, name);
|
|
} else {
|
|
this.partials[name] = str;
|
|
}
|
|
}
|
|
};
|
|
|
|
function registerDefaultHelpers(instance) {
|
|
instance.registerHelper('helperMissing', function(arg) {
|
|
if(arguments.length === 2) {
|
|
return undefined;
|
|
} else {
|
|
throw new Error("Missing helper: '" + arg + "'");
|
|
}
|
|
});
|
|
|
|
instance.registerHelper('blockHelperMissing', function(context, options) {
|
|
var inverse = options.inverse || function() {}, fn = options.fn;
|
|
|
|
var type = toString.call(context);
|
|
|
|
if(type === functionType) { context = context.call(this); }
|
|
|
|
if(context === true) {
|
|
return fn(this);
|
|
} else if(context === false || context == null) {
|
|
return inverse(this);
|
|
} else if(type === "[object Array]") {
|
|
if(context.length > 0) {
|
|
return instance.helpers.each(context, options);
|
|
} else {
|
|
return inverse(this);
|
|
}
|
|
} else {
|
|
return fn(context);
|
|
}
|
|
});
|
|
|
|
instance.registerHelper('each', function(context, options) {
|
|
var fn = options.fn, inverse = options.inverse;
|
|
var i = 0, ret = "", data;
|
|
|
|
var type = toString.call(context);
|
|
if(type === functionType) { context = context.call(this); }
|
|
|
|
if (options.data) {
|
|
data = createFrame(options.data);
|
|
}
|
|
|
|
if(context && typeof context === 'object') {
|
|
if(context instanceof Array){
|
|
for(var j = context.length; i<j; i++) {
|
|
if (data) { data.index = i; }
|
|
ret = ret + fn(context[i], { data: data });
|
|
}
|
|
} else {
|
|
for(var key in context) {
|
|
if(context.hasOwnProperty(key)) {
|
|
if(data) { data.key = key; }
|
|
ret = ret + fn(context[key], {data: data});
|
|
i++;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if(i === 0){
|
|
ret = inverse(this);
|
|
}
|
|
|
|
return ret;
|
|
});
|
|
|
|
instance.registerHelper('if', function(conditional, options) {
|
|
var type = toString.call(conditional);
|
|
if(type === functionType) { conditional = conditional.call(this); }
|
|
|
|
if(!conditional || isEmpty(conditional)) {
|
|
return options.inverse(this);
|
|
} else {
|
|
return options.fn(this);
|
|
}
|
|
});
|
|
|
|
instance.registerHelper('unless', function(conditional, options) {
|
|
return instance.helpers['if'].call(this, conditional, {fn: options.inverse, inverse: options.fn});
|
|
});
|
|
|
|
instance.registerHelper('with', function(context, options) {
|
|
var type = toString.call(context);
|
|
if(type === functionType) { context = context.call(this); }
|
|
|
|
if (!isEmpty(context)) return options.fn(context);
|
|
});
|
|
|
|
instance.registerHelper('log', function(context, options) {
|
|
var level = options.data && options.data.level != null ? parseInt(options.data.level, 10) : 1;
|
|
Handlebars.log(level, context);
|
|
});
|
|
}
|
|
|
|
var levels = {
|
|
DEBUG: 0, INFO: 1, WARN: 2, ERROR: 3, level: 3
|
|
}
|
|
|
|
var methodMap = { 0: 'debug', 1: 'info', 2: 'warn', 3: 'error' };
|
|
|
|
export var logger = {
|
|
// can be overridden in the host environment
|
|
log: function(level, obj) {
|
|
if (Handlebars.logger.level <= level) {
|
|
var method = Handlebars.logger.methodMap[level];
|
|
if (typeof console !== 'undefined' && console[method]) {
|
|
console[method].call(console, obj);
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
export function log(level, obj) { logger.log(level, obj); };
|
|
|
|
export var createFrame = Object.create || function(object) {
|
|
K.prototype = object;
|
|
var obj = new K();
|
|
K.prototype = null;
|
|
return obj;
|
|
};
|