Radarr/UI/Mixins/handlebars.mixin.js

37 lines
1.1 KiB
JavaScript
Raw Normal View History

2013-05-01 00:01:54 +00:00
'use strict';
2013-05-01 22:42:30 +00:00
Handlebars.registerHelper('partial', function (templateName) {
2013-05-01 00:01:54 +00:00
//TODO: We should be able to pass in the context, either an object or a property
var templateFunction = Marionette.TemplateCache.get(templateName);
return new Handlebars.SafeString(templateFunction(this));
});
2013-05-19 23:17:32 +00:00
Handlebars.registerHelper('formField', function () {
if (!this.type) {
return Handlebars.helpers.partial.apply(this, ['Form/TextboxTemplate']);
}
2013-05-20 04:19:54 +00:00
if (this.type === 'password') {
return Handlebars.helpers.partial.apply(this, ['Form/PasswordTemplate']);
}
if (this.type === 'checkbox') {
return Handlebars.helpers.partial.apply(this, ['Form/CheckboxTemplate']);
}
2013-05-19 23:17:32 +00:00
return Handlebars.helpers.partial.apply(this, ['Form/TextboxTemplate']);
});
2013-05-01 00:01:54 +00:00
Handlebars.registerHelper("debug", function(optionalValue) {
console.log("Current Context");
console.log("====================");
console.log(this);
if (optionalValue) {
console.log("Value");
console.log("====================");
console.log(optionalValue);
}
2013-05-01 22:42:30 +00:00
});