87 lines
2 KiB
Vue
87 lines
2 KiB
Vue
<script>
|
|
import ItemButton from './button.vue';
|
|
import { isTextFile } from '~/ide/utils';
|
|
|
|
export default {
|
|
components: {
|
|
ItemButton,
|
|
},
|
|
props: {
|
|
path: {
|
|
type: String,
|
|
required: false,
|
|
default: '',
|
|
},
|
|
showLabel: {
|
|
type: Boolean,
|
|
required: false,
|
|
default: true,
|
|
},
|
|
buttonCssClasses: {
|
|
type: String,
|
|
required: false,
|
|
default: null,
|
|
},
|
|
},
|
|
methods: {
|
|
createFile(target, file) {
|
|
const { name } = file;
|
|
const encodedContent = target.result.split('base64,')[1];
|
|
const rawContent = encodedContent ? atob(encodedContent) : '';
|
|
const isText = isTextFile(rawContent, file.type, name);
|
|
|
|
const emitCreateEvent = content =>
|
|
this.$emit('create', {
|
|
name: `${this.path ? `${this.path}/` : ''}${name}`,
|
|
type: 'blob',
|
|
content,
|
|
binary: !isText,
|
|
rawPath: !isText ? target.result : '',
|
|
});
|
|
|
|
if (isText) {
|
|
const reader = new FileReader();
|
|
|
|
reader.addEventListener('load', e => emitCreateEvent(e.target.result), { once: true });
|
|
reader.readAsText(file);
|
|
} else {
|
|
emitCreateEvent(encodedContent);
|
|
}
|
|
},
|
|
readFile(file) {
|
|
const reader = new FileReader();
|
|
|
|
reader.addEventListener('load', e => this.createFile(e.target, file), { once: true });
|
|
reader.readAsDataURL(file);
|
|
},
|
|
openFile() {
|
|
Array.from(this.$refs.fileUpload.files).forEach(file => this.readFile(file));
|
|
},
|
|
startFileUpload() {
|
|
this.$refs.fileUpload.click();
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<item-button
|
|
:class="buttonCssClasses"
|
|
:show-label="showLabel"
|
|
:icon-classes="showLabel ? 'mr-2' : ''"
|
|
:label="__('Upload file')"
|
|
class="d-flex"
|
|
icon="upload"
|
|
@click="startFileUpload"
|
|
/>
|
|
<input
|
|
id="file-upload"
|
|
ref="fileUpload"
|
|
type="file"
|
|
class="hidden"
|
|
multiple
|
|
@change="openFile"
|
|
/>
|
|
</div>
|
|
</template>
|