You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
973 B
32 lines
973 B
'use strict';
|
|
define(['app'], function () {
|
|
Handlebars.registerHelper('formBuilder', function (){
|
|
var ret = "";
|
|
_.each(this.fields, function(field){
|
|
ret += NzbDrone.Form.FieldBuilder(field);
|
|
});
|
|
|
|
return new Handlebars.SafeString(ret);
|
|
});
|
|
|
|
NzbDrone.Form.FieldBuilder = function(field) {
|
|
if (!field.type) {
|
|
return Handlebars.helpers.partial.apply(field, ['Form/TextboxTemplate']);
|
|
}
|
|
|
|
if (field.type === 'password') {
|
|
return Handlebars.helpers.partial.apply(field, ['Form/PasswordTemplate']);
|
|
}
|
|
|
|
if (field.type === 'checkbox') {
|
|
return Handlebars.helpers.partial.apply(field, ['Form/CheckboxTemplate']);
|
|
}
|
|
|
|
if (field.type === 'select') {
|
|
return Handlebars.helpers.partial.apply(field, ['Form/SelectTemplate']);
|
|
}
|
|
|
|
return Handlebars.helpers.partial.apply(field, ['Form/TextboxTemplate']);
|
|
};
|
|
});
|