1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/UI/Form/FormBuilder.js

32 lines
1005 B
JavaScript
Raw Normal View History

2013-05-22 06:33:35 +03:00
'use strict';
define(['app', 'handlebars'], function (App,Handlebars) {
Handlebars.registerHelper('formBuilder', function () {
2013-06-22 09:24:24 +03:00
var ret = '';
_.each(this.fields, function (field) {
2013-05-22 06:33:35 +03:00
ret += NzbDrone.Form.FieldBuilder(field);
});
return new Handlebars.SafeString(ret);
});
NzbDrone.Form.FieldBuilder = function (field) {
2013-05-22 06:33:35 +03:00
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']);
}
2013-06-13 10:20:33 +03:00
if (field.type === 'select') {
return Handlebars.helpers.partial.apply(field, ['Form/SelectTemplate']);
}
2013-05-22 06:33:35 +03:00
return Handlebars.helpers.partial.apply(field, ['Form/TextboxTemplate']);
};
});