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

48 lines
1.0 KiB
Vue
Raw Normal View History

2018-06-27 14:38:27 +00:00
<script>
import Base from './Base';
export default {
extends: Base,
computed: {
inputClass() {
return ['d-none'];
}
},
methods: {
getWrapperElement(h) {
let fileName = 'Choose a file..';
if (this.$refs.input && this.$refs.input.files.length) {
fileName = this.$refs.input.files[0].name;
}
const fileButton = h('button', {
class: ['btn btn-outline-secondary btn-block'],
domProps: {
textContent: fileName
},
on: {
click: () => this.$refs.input.click()
}
});
return h('div', {
class: ['form-group', ...this.wrapperClass],
attrs: {
'data-fieldname': this.docfield.fieldname
}
}, [this.getLabelElement(h), this.getInputElement(h), fileButton]);
},
getInputAttrs() {
return {
id: this.id,
type: 'file',
value: this.value,
2018-07-12 11:29:10 +00:00
required: this.docfield.required,
disabled: this.disabled
2018-06-27 14:38:27 +00:00
}
}
}
}
</script>