X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=blobdiff_plain;f=src%2Fmkws-handlebars.js;h=606dc101aab452d35cf4ab5c99ff80ffb57f60d6;hp=ce2420670c4482f62d574397b4f72ddec6e7bcf9;hb=058ce4a204a9ce4d63b2d319037f60cd9f94ff1b;hpb=ed0ef7080ed2b179f5d577c0476c96638df675fd diff --git a/src/mkws-handlebars.js b/src/mkws-handlebars.js index ce24206..606dc10 100644 --- a/src/mkws-handlebars.js +++ b/src/mkws-handlebars.js @@ -15,7 +15,7 @@ Handlebars.registerHelper('mkws-paragraphs', function(obj, nPara, nSent) { // {"hash":{},"data":{}} for parameters that are not provided. So we // have to be prepared for actual numbers, explicitly undefined // values and this dumb magic value. - if (nPara === undefined || nPara.hasOwnProperty('hash') || nPara == 0 || nPara > obj.length) { + if (obj && (nPara === undefined || nPara.hasOwnProperty('hash') || nPara == 0 || nPara > obj.length)) { nPara = obj.length; } if (nSent === undefined || nSent.hasOwnProperty('hash') || nSent == 0) { @@ -96,3 +96,65 @@ Handlebars.registerHelper('mkws-commaList', function(items, options) { Handlebars.registerHelper('mkws-index1', function(obj) { return obj.data.index + 1; }); + +Handlebars.registerHelper('mkws-repeat', function(count, options) { + var out = ""; + for (var i = 0; i < count; i++) { + out += options.fn(this); + } + return out; +}); + +// Ridiculous that Handlebars has no way to do "or" +Handlebars.registerHelper('mkws-if-either', function(cond1, cond2, options) { + if (typeof cond1 === 'function') { cond1 = cond1.call(this); } + if (typeof cond2 === 'function') { cond2 = cond2.call(this); } + + if (cond1 || cond2) { + return options.fn(this); + } else { + return options.inverse(this); + } +}); + +// Ridiculous that this, too, is not part of regular Handlebars +// This code is by Mike Griffin, taken from this blog comment: +// http://doginthehat.com.au/2012/02/comparison-block-helper-for-handlebars-templates/#comment-44 + +Handlebars.registerHelper('compare', function (lvalue, operator, rvalue, options) { + var operators, result; + + if (arguments.length < 3) { + throw new Error("Handlerbars Helper 'compare' needs 2 parameters"); + } + + if (options === undefined) { + options = rvalue; + rvalue = operator; + operator = "==="; + } + + operators = { + '==': function (l, r) { return l == r; }, + '===': function (l, r) { return l === r; }, + '!=': function (l, r) { return l != r; }, + '!==': function (l, r) { return l !== r; }, + '<': function (l, r) { return l < r; }, + '>': function (l, r) { return l > r; }, + '<=': function (l, r) { return l <= r; }, + '>=': function (l, r) { return l >= r; }, + 'typeof': function (l, r) { return typeof l == r; } + }; + + if (!operators[operator]) { + throw new Error("Handlerbars Helper 'compare' doesn't know the operator " + operator); + } + + result = operators[operator](lvalue, rvalue); + + if (result) { + return options.fn(this); + } else { + return options.inverse(this); + } +});