mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
48 lines
1.5 KiB
Vue
48 lines
1.5 KiB
Vue
<template>
|
|
<div class="relative cursor-pointer">
|
|
<input ref="file" type="file" @change="showImagePreview($event)" class="absolute top-0 bottom-0 left-0 right-0 z-10 w-full cursor-pointer opacity-0" />
|
|
<img v-if="imagePreview" ref="image" :src="imagePreview" class="relative z-0 h-14 w-14 cursor-pointer rounded-xl object-cover shadow-lg md:h-16 md:w-16" alt="avatar" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'AvatarInput',
|
|
props: ['avatar'],
|
|
data() {
|
|
return {
|
|
imagePreview: undefined,
|
|
}
|
|
},
|
|
watch: {
|
|
imagePreview(val) {
|
|
this.$store.commit('UPDATE_AVATAR', val)
|
|
},
|
|
},
|
|
methods: {
|
|
showImagePreview(event) {
|
|
let imgPath = event.target.files[0].name,
|
|
extension = imgPath.substring(imgPath.lastIndexOf('.') + 1).toLowerCase()
|
|
|
|
if (['png', 'jpg', 'jpeg'].includes(extension)) {
|
|
let file = event.target.files[0],
|
|
reader = new FileReader()
|
|
|
|
reader.onload = () => (this.imagePreview = reader.result)
|
|
|
|
reader.readAsDataURL(file)
|
|
|
|
// Update user avatar
|
|
this.$updateImage('/user/settings', 'avatar', event.target.files[0])
|
|
} else {
|
|
alert(this.$t('validation_errors.wrong_image'))
|
|
}
|
|
},
|
|
},
|
|
created() {
|
|
// If there is default image then load
|
|
if (this.avatar) this.imagePreview = this.avatar
|
|
},
|
|
}
|
|
</script>
|