Created
November 22, 2012 22:01
-
-
Save jCrip/4133086 to your computer and use it in GitHub Desktop.
HANDLEBARS: Comparison Block Helper
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
/* ===================================== | |
{{#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