Last active
January 3, 2016 07:29
-
-
Save minwe/8430031 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*Here’s a way that’s more readable … (I think anyway) | |
Look how the syntax reads … | |
===================================== | |
{{#compare Database.Tables.Count ">" 5}} | |
There are more than 5 tables | |
{{/compare}} | |
{{#compare "Test" "Test"}} | |
Default comparison of "===" | |
{{/compare}} | |
===================================== | |
*/ | |
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); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment