Last active
August 1, 2019 23:11
-
-
Save birchb/0743f55d8e957cafd2384d04807d89c0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// adapted from https://github.com/quasarframework/quasar/issues/3428 | |
import { QUploaderBase } from 'quasar' | |
import _ from 'lodash' | |
export default { | |
name: 'toStorage', | |
props: { | |
pathPrefix: { | |
type: String, | |
default: '' | |
} | |
}, | |
data () { | |
return { | |
storage: this.$storage.ref(), | |
activeTasks: [] | |
} | |
}, | |
mixins: [ QUploaderBase ], | |
computed: { | |
isIdle () { | |
return this.activeTasks.length === 0 | |
}, | |
isUploading () { | |
return this.activeTasks.length > 0 | |
} | |
}, | |
methods: { | |
abort () { | |
this.activeTasks.forEach(task => { | |
task.cancel() | |
}) | |
this.activeTasks = [] | |
}, | |
upload () { | |
if (this.disable || !this.queuedFiles.length) { return } | |
this.queuedFiles.forEach(file => { | |
this.__uploadSingleFile(file) | |
}) | |
}, | |
__uploadSingleFile (file) { | |
let pathPrefix = this.pathPrefix || '' | |
// const fileRef = this.storage.child(pathPrefix + file.name) | |
const fileRef = this.storage.child(`${pathPrefix}/${file.name}`) | |
this.__updateFile(file, 'uploading', 0) | |
const uploadTask = fileRef.put(file) | |
this.activeTasks.push(uploadTask) | |
// Listen for state changes, errors, and completion of the upload. | |
uploadTask.on( | |
this.$firebase.storage.TaskEvent.STATE_CHANGED, // or 'state_changed' | |
snapshot => { | |
// Get task progress, including the number of bytes uploaded and the total number of bytes to be uploaded | |
if (file.__status !== 'failed') { | |
const loaded = Math.min(snapshot.totalBytes, snapshot.bytesTransferred) | |
this.uploadedSize += loaded - file.__uploaded | |
this.__updateFile(file, 'uploading', loaded) | |
} | |
}, error => { | |
// A full list of error codes is available at | |
// https://firebase.google.com/docs/storage/web/handle-errors | |
this.queuedFiles.push(file) | |
this.__updateFile(file, 'failed') | |
this.__emit('failed', { file, error }) | |
this.uploadedSize -= file.__uploaded | |
this.activeTasks = this.activeTasks.filter(t => t !== uploadTask) | |
}, () => { | |
// Upload completed successfully, now we can get the download URL | |
uploadTask.snapshot.ref.getDownloadURL().then(downloadURL => { | |
const fullPath = uploadTask.snapshot.ref.fullPath | |
const fileName = uploadTask.snapshot.ref.name | |
this.uploadedFiles.push(file) | |
this.__updateFile(file, 'uploaded') | |
// file is not an available option on next line. If I want to store metadata, I'll have to do so on my own. | |
// * Just copy file.size and file.type | |
let uploadTime = _.round(new Date().getTime() / 1000) | |
console.log('TCL: __uploadSingleFile -> uploadTime', uploadTime) | |
let [fileSize, fileType] = [file.size, file.type] | |
console.log(downloadURL, fileName, fileSize, fileType, fullPath, uploadTime) | |
this.__emit('uploaded', { downloadURL, fileName, fileSize, fileType, fullPath, uploadTime }) | |
this.uploadedSize += file.size - file.__uploaded | |
}).catch(error => { | |
this.__emit('failed', { file, error }) | |
}) | |
this.activeTasks = this.activeTasks.filter(t => t !== uploadTask) | |
} | |
) | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment