2016-11-06 10:28:37 -08:00
|
|
|
/* eslint-env browser */
|
|
|
|
import statusPosterService from '../../services/status_poster/status_poster.service.js'
|
2018-12-09 22:50:04 -08:00
|
|
|
import fileSizeFormatService from '../../services/file_size_format/file_size_format.js'
|
|
|
|
|
2016-11-06 10:28:37 -08:00
|
|
|
const mediaUpload = {
|
2017-02-21 05:13:19 -08:00
|
|
|
data () {
|
|
|
|
return {
|
2019-02-04 07:45:26 -08:00
|
|
|
uploading: false,
|
|
|
|
uploadReady: true
|
2017-02-21 05:13:19 -08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
2017-02-21 12:48:48 -08:00
|
|
|
uploadFile (file) {
|
2017-02-21 05:13:19 -08:00
|
|
|
const self = this
|
|
|
|
const store = this.$store
|
2018-12-08 07:23:21 -08:00
|
|
|
if (file.size > store.state.instance.uploadlimit) {
|
2018-12-10 06:06:32 -08:00
|
|
|
const filesize = fileSizeFormatService.fileSizeFormat(file.size)
|
|
|
|
const allowedsize = fileSizeFormatService.fileSizeFormat(store.state.instance.uploadlimit)
|
2019-07-05 00:02:14 -07:00
|
|
|
self.$emit('upload-failed', 'file_too_big', { filesize: filesize.num, filesizeunit: filesize.unit, allowedsize: allowedsize.num, allowedsizeunit: allowedsize.unit })
|
2018-12-08 07:23:21 -08:00
|
|
|
return
|
|
|
|
}
|
2016-11-07 06:04:27 -08:00
|
|
|
const formData = new FormData()
|
2019-03-15 12:02:00 -07:00
|
|
|
formData.append('file', file)
|
2016-11-13 09:26:10 -08:00
|
|
|
|
|
|
|
self.$emit('uploading')
|
|
|
|
self.uploading = true
|
|
|
|
|
2016-11-06 10:28:37 -08:00
|
|
|
statusPosterService.uploadMedia({ store, formData })
|
|
|
|
.then((fileData) => {
|
|
|
|
self.$emit('uploaded', fileData)
|
2016-11-13 09:26:10 -08:00
|
|
|
self.uploading = false
|
2017-02-22 13:43:40 -08:00
|
|
|
}, (error) => { // eslint-disable-line handle-callback-err
|
2018-12-12 05:38:01 -08:00
|
|
|
self.$emit('upload-failed', 'default')
|
2016-11-13 09:26:10 -08:00
|
|
|
self.uploading = false
|
2016-11-06 10:28:37 -08:00
|
|
|
})
|
2017-02-22 04:53:05 -08:00
|
|
|
},
|
|
|
|
fileDrop (e) {
|
2017-02-22 13:33:28 -08:00
|
|
|
if (e.dataTransfer.files.length > 0) {
|
2019-07-05 00:02:14 -07:00
|
|
|
e.preventDefault() // allow dropping text like before
|
2020-06-08 04:30:16 -07:00
|
|
|
for (const file of e.dataTransfer.files) {
|
|
|
|
this.uploadFile(file)
|
|
|
|
}
|
2017-02-22 04:53:05 -08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
fileDrag (e) {
|
|
|
|
let types = e.dataTransfer.types
|
2017-02-22 13:33:28 -08:00
|
|
|
if (types.contains('Files')) {
|
2017-02-22 04:53:05 -08:00
|
|
|
e.dataTransfer.dropEffect = 'copy'
|
|
|
|
} else {
|
|
|
|
e.dataTransfer.dropEffect = 'none'
|
|
|
|
}
|
2019-02-04 07:45:26 -08:00
|
|
|
},
|
|
|
|
clearFile () {
|
|
|
|
this.uploadReady = false
|
|
|
|
this.$nextTick(() => {
|
|
|
|
this.uploadReady = true
|
|
|
|
})
|
|
|
|
},
|
2019-07-05 00:02:14 -07:00
|
|
|
change ({ target }) {
|
2019-02-04 07:45:26 -08:00
|
|
|
for (var i = 0; i < target.files.length; i++) {
|
|
|
|
let file = target.files[i]
|
|
|
|
this.uploadFile(file)
|
|
|
|
}
|
2017-02-21 05:13:19 -08:00
|
|
|
}
|
2016-11-13 09:26:10 -08:00
|
|
|
},
|
2017-02-21 05:13:19 -08:00
|
|
|
props: [
|
|
|
|
'dropFiles'
|
|
|
|
],
|
|
|
|
watch: {
|
|
|
|
'dropFiles': function (fileInfos) {
|
2017-02-21 12:48:48 -08:00
|
|
|
if (!this.uploading) {
|
2017-02-21 05:13:19 -08:00
|
|
|
this.uploadFile(fileInfos[0])
|
2017-02-21 12:48:48 -08:00
|
|
|
}
|
2016-11-13 09:26:10 -08:00
|
|
|
}
|
2016-11-06 10:28:37 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default mediaUpload
|