pleroma-fe/src/components/media_upload/media_upload.js

50 lines
1.1 KiB
JavaScript
Raw Normal View History

2016-11-06 19:28:37 +01:00
/* eslint-env browser */
import statusPosterService from '../../services/status_poster/status_poster.service.js'
const mediaUpload = {
mounted () {
const input = this.$el.querySelector('input')
input.addEventListener('change', ({target}) => {
2016-11-07 15:04:27 +01:00
const file = target.files[0]
this.uploadFile(file)
})
},
data () {
return {
uploading: false
}
},
methods: {
uploadFile(file) {
const self = this
const store = this.$store
2016-11-07 15:04:27 +01:00
const formData = new FormData()
formData.append('media', file)
2016-11-13 18:26:10 +01:00
self.$emit('uploading')
self.uploading = true
2016-11-06 19:28:37 +01:00
statusPosterService.uploadMedia({ store, formData })
.then((fileData) => {
self.$emit('uploaded', fileData)
2016-11-13 18:26:10 +01:00
self.uploading = false
}, (error) => {
self.$emit('upload-failed')
self.uploading = false
2016-11-06 19:28:37 +01:00
})
}
2016-11-13 18:26:10 +01:00
},
props: [
'dropFiles'
],
watch: {
'dropFiles': function (fileInfos) {
if (!this.uploading)
this.uploadFile(fileInfos[0])
2016-11-13 18:26:10 +01:00
}
2016-11-06 19:28:37 +01:00
}
}
export default mediaUpload