2
0
mirror of https://github.com/frappe/books.git synced 2024-09-21 03:39:02 +00:00
books/client/view/controls/index.js

23 lines
660 B
JavaScript
Raw Normal View History

2018-01-12 12:25:07 +00:00
const control_classes = {
Data: require('./data'),
Text: require('./text'),
2018-01-23 12:26:40 +00:00
Select: require('./select'),
Link: require('./link'),
Float: require('./float'),
2018-02-12 12:24:53 +00:00
Int: require('./int'),
2018-02-02 09:21:20 +00:00
Currency: require('./currency'),
2018-02-06 17:14:07 +00:00
Password: require('./password'),
Table: require('./table')
2018-01-12 12:25:07 +00:00
}
module.exports = {
2018-02-08 09:38:47 +00:00
getControlClass(fieldtype) {
2018-01-12 12:25:07 +00:00
return control_classes[fieldtype];
},
2018-02-08 09:38:47 +00:00
makeControl({field, form, parent}) {
const control_class = this.getControlClass(field.fieldtype);
2018-02-06 17:14:07 +00:00
let control = new control_class({field:field, form:form, parent:parent});
2018-01-12 12:25:07 +00:00
control.make();
return control;
}
}