mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
167 lines
4.1 KiB
Vue
167 lines
4.1 KiB
Vue
<template>
|
|
<div class="dropzone" :class="{ 'is-error': error }">
|
|
<input
|
|
ref="file"
|
|
type="file"
|
|
@change="showImagePreview($event)"
|
|
class="dummy"
|
|
/>
|
|
<img
|
|
ref="image"
|
|
:src="imagePreview"
|
|
class="image-preview"
|
|
v-if="imagePreview"
|
|
/>
|
|
|
|
<div class="dropzone-message" v-show="! isData">
|
|
<upload-icon size="19" class="icon-upload"></upload-icon>
|
|
<span class="dropzone-title">
|
|
{{ $t('input_image.title') }}
|
|
</span>
|
|
<span class="dropzone-description">
|
|
{{ $t('input_image.supported') }}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { UploadIcon } from 'vue-feather-icons'
|
|
|
|
export default {
|
|
name: 'ImageInput',
|
|
props: [
|
|
'image', 'error'
|
|
],
|
|
components: {
|
|
UploadIcon
|
|
},
|
|
data() {
|
|
return {
|
|
imagePreview: undefined
|
|
}
|
|
},
|
|
computed: {
|
|
isData() {
|
|
return typeof this.imagePreview === 'undefined' || this.imagePreview === '' ? false : true
|
|
},
|
|
},
|
|
methods: {
|
|
showImagePreview(event) {
|
|
const imgPath = event.target.files[0].name,
|
|
extn = imgPath
|
|
.substring(imgPath.lastIndexOf('.') + 1)
|
|
.toLowerCase()
|
|
|
|
if (['png', 'jpg', 'jpeg'].includes(extn)) {
|
|
const file = event.target.files[0],
|
|
reader = new FileReader()
|
|
|
|
reader.onload = () => (this.imagePreview = reader.result)
|
|
|
|
reader.readAsDataURL(file)
|
|
|
|
// Update user avatar
|
|
this.$emit('input', event.target.files[0])
|
|
} else {
|
|
alert( this.$t('validation_errors.wrong_image') )
|
|
}
|
|
}
|
|
},
|
|
created() {
|
|
// If has default image then load
|
|
if (this.image) this.imagePreview = this.image
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import '@assets/vue-file-manager/_variables';
|
|
@import '@assets/vue-file-manager/_mixins';
|
|
|
|
.dropzone {
|
|
border: 1px dashed #a1abc2;
|
|
border-radius: 8px;
|
|
position: relative;
|
|
text-align: center;
|
|
display: flex;
|
|
align-items: center;
|
|
min-height: 210px;
|
|
|
|
&.is-error {
|
|
border: 2px dashed rgba(253, 57, 122, 0.3);
|
|
|
|
.dropzone-title {
|
|
color: $danger;
|
|
}
|
|
|
|
.icon-upload path {
|
|
fill: $danger
|
|
}
|
|
}
|
|
|
|
input[type='file'] {
|
|
opacity: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
z-index: 1;
|
|
width: 100%;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.image-preview {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: contain;
|
|
left: 0;
|
|
padding: 7px;
|
|
display: block;
|
|
|
|
&.fit-image {
|
|
object-fit: cover;
|
|
border-radius: 12px;
|
|
overflow: hidden;
|
|
|
|
}
|
|
}
|
|
|
|
.dropzone-message {
|
|
padding: 50px 0;
|
|
width: 100%;
|
|
|
|
.dropzone-title {
|
|
@include font-size(16);
|
|
font-weight: 700;
|
|
display: block;
|
|
}
|
|
|
|
.dropzone-description {
|
|
color: $text_muted;
|
|
@include font-size(12);
|
|
}
|
|
}
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
.dropzone {
|
|
|
|
.dropzone-message {
|
|
|
|
.icon-upload {
|
|
path, polyline, line {
|
|
stroke: $theme;
|
|
}
|
|
}
|
|
|
|
.dropzone-description {
|
|
color: $dark_mode_text_secondary;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|