76 lines
1.6 KiB
Vue
76 lines
1.6 KiB
Vue
|
<script>
|
||
|
export default {
|
||
|
props: {
|
||
|
branchId: {
|
||
|
type: String,
|
||
|
required: true,
|
||
|
},
|
||
|
path: {
|
||
|
type: String,
|
||
|
required: false,
|
||
|
default: '',
|
||
|
},
|
||
|
},
|
||
|
mounted() {
|
||
|
this.$refs.fileUpload.addEventListener('change', this.openFile);
|
||
|
},
|
||
|
beforeDestroy() {
|
||
|
this.$refs.fileUpload.removeEventListener('change', this.openFile);
|
||
|
},
|
||
|
methods: {
|
||
|
createFile(target, file, isText) {
|
||
|
const { name } = file;
|
||
|
let { result } = target;
|
||
|
|
||
|
if (!isText) {
|
||
|
result = result.split('base64,')[1];
|
||
|
}
|
||
|
|
||
|
this.$emit('create', {
|
||
|
name: `${(this.path ? `${this.path}/` : '')}${name}`,
|
||
|
branchId: this.branchId,
|
||
|
type: 'blob',
|
||
|
content: result,
|
||
|
base64: !isText,
|
||
|
});
|
||
|
},
|
||
|
readFile(file) {
|
||
|
const reader = new FileReader();
|
||
|
const isText = file.type.match(/text.*/) !== null;
|
||
|
|
||
|
reader.addEventListener('load', e => this.createFile(e.target, file, isText), { once: true });
|
||
|
|
||
|
if (isText) {
|
||
|
reader.readAsText(file);
|
||
|
} else {
|
||
|
reader.readAsDataURL(file);
|
||
|
}
|
||
|
},
|
||
|
openFile() {
|
||
|
Array.from(this.$refs.fileUpload.files).forEach(file => this.readFile(file));
|
||
|
},
|
||
|
startFileUpload() {
|
||
|
this.$refs.fileUpload.click();
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div>
|
||
|
<a
|
||
|
href="#"
|
||
|
role="button"
|
||
|
@click.stop.prevent="startFileUpload"
|
||
|
>
|
||
|
{{ __('Upload file') }}
|
||
|
</a>
|
||
|
<input
|
||
|
id="file-upload"
|
||
|
type="file"
|
||
|
class="hidden"
|
||
|
ref="fileUpload"
|
||
|
/>
|
||
|
</div>
|
||
|
</template>
|