2
0
mirror of https://github.com/frappe/books.git synced 2024-09-21 03:39:02 +00:00
books/ui/components/controls/Base.vue

112 lines
2.9 KiB
Vue
Raw Normal View History

2018-06-27 14:38:27 +00:00
<script>
export default {
render(h) {
if (this.onlyInput) {
return this.getInputElement(h);
}
return this.getWrapperElement(h);
},
props: {
docfield: Object,
2018-07-14 11:39:42 +00:00
value: [String, Number, Array, FileList],
2018-06-27 14:38:27 +00:00
onlyInput: {
type: Boolean,
default: false
},
disabled: Boolean
2018-06-27 14:38:27 +00:00
},
computed: {
id() {
return this.docfield.fieldname + '-'
+ document.querySelectorAll(`[data-fieldname="${this.docfield.fieldname}"]`).length;
},
inputClass() {
return [];
},
wrapperClass() {
return [];
},
labelClass() {
return [];
}
},
methods: {
getWrapperElement(h) {
return h('div', {
class: ['form-group', ...this.wrapperClass],
attrs: {
'data-fieldname': this.docfield.fieldname
}
}, this.getChildrenElement(h));
},
getChildrenElement(h) {
return [this.getLabelElement(h), this.getInputElement(h)]
2018-06-27 14:38:27 +00:00
},
getLabelElement(h) {
return h('label', {
class: [this.labelClass, 'text-muted'],
attrs: {
for: this.id
},
domProps: {
textContent: this.docfield.label
}
});
},
getInputElement(h) {
return h(this.getInputTag(), {
class: this.getInputClass(),
attrs: this.getInputAttrs(),
on: this.getInputListeners(),
domProps: this.getDomProps(),
ref: 'input'
}, this.getInputChildren(h));
},
getInputTag() {
return 'input';
},
getInputClass() {
return ['form-control', ...this.inputClass];
},
getInputAttrs() {
return {
id: this.id,
type: 'text',
placeholder: '',
value: this.value,
required: this.docfield.required,
disabled: this.disabled
2018-06-27 14:38:27 +00:00
}
},
getInputListeners() {
return {
change: (e) => {
this.handleChange(e.target.value);
}
2018-06-27 14:38:27 +00:00
};
},
getInputChildren() {
return null;
},
getDomProps() {
return null;
},
async handleChange(value) {
value = this.parse(value);
const isValid = await this.validate(value);
this.$refs.input.setCustomValidity(isValid === false ? 'error' : '');
this.$emit('change', value);
2018-07-14 11:39:42 +00:00
},
getValueFromInput(e) {
2018-06-27 14:38:27 +00:00
},
validate() {
return true;
},
parse(value) {
return value;
}
}
}
</script>