Merge pull request #1030 from dod-ccpo/file-upload-fixes

File upload fixes
This commit is contained in:
richard-dds
2019-08-19 10:36:10 -04:00
committed by GitHub
4 changed files with 30 additions and 8 deletions

View File

@@ -46,9 +46,9 @@ export default {
return {
hasInitialData: !!this.initialData,
attachment: this.initialData || null,
showErrors: this.initialErrors,
changed: false,
uploadError: null,
uploadError: false,
sizeError: false,
}
},
@@ -63,15 +63,22 @@ export default {
methods: {
addAttachment: async function(e) {
this.clearErrors()
const file = e.target.files[0]
if (file.size > 64000000) {
this.sizeError = true
return
}
const response = await this.uploader.upload(file, this.objectName)
if (response.ok) {
this.attachment = e.target.value
this.$refs.attachmentFilename.value = file.name
this.$refs.attachmentObjectName.value = this.objectName
this.$refs.attachmentInput.disabled = true
} else {
this.showErrors = true
this.uploadError = true
}
@@ -89,9 +96,9 @@ export default {
this.attachment = null
if (this.$refs.attachmentInput) {
this.$refs.attachmentInput.value = null
this.$refs.attachmentInput.disabled = false
}
this.showErrors = false
this.uploadError = false
this.clearErrors()
this.changed = true
emitEvent('field-change', this, {
@@ -100,6 +107,10 @@ export default {
watch: this.watch,
})
},
clearErrors: function() {
this.uploadError = false
this.sizeError = false
},
},
computed: {
@@ -114,5 +125,12 @@ export default {
hideInput: function() {
return this.hasInitialData && !this.changed
},
showErrors: function() {
return (
(!this.changed && this.initialErrors) ||
this.uploadError ||
this.sizeError
)
},
},
}