const addFileForm = document.querySelector(".addFile")
addFileForm.addEventListener('submit', e => {
e.preventDefault()
const file = addFileForm.file.files[0]
const metadata = { contentType: file.type }; // 'image/png'
// Upload file and metadata to the object 'images/mountains.jpg'
const photoRef = ref(storage, `/files/${file.name}`) //const filesRef = photoRef.parent ref by another ref
const uploadTask = uploadBytesResumable(photoRef, file, metadata);
// Start upload task and listen for state changes, errors, and completion of the upload (try/catch/finally).
uploadTask.on('state_changed',progresshandler, errorhandler, completeHandler);
})
const progressHandler =(snapshot) => {
// Get task progress, including the number of bytes uploaded and the total number of bytes to be uploaded
const progress = (snapshot.bytesTransferred / snapshot.totalBytes) * 100;
console.log('Upload is ' + progress + '% done');
switch (snapshot.state) {
case 'paused':
console.log('Upload is paused'); // call uploadTask.pause()
break;
case 'running':
console.log('Upload is running'); // call uploadTask.resume()
break;
}
}
const errorHandler = (error) => {
// A full list of error codes is available at
// https://firebase.google.com/docs/storage/web/handle-errors
switch (error.code) {
case 'storage/unauthorized':
// User doesn't have permission to access the object
break;
case 'storage/canceled':
// User canceled the upload by call uploadTask.caancel()
break;
// ...
case 'storage/unknown':
// Unknown error occurred, inspect error.serverResponse
break;
}
}
get a download URL of a file
// or photoRef
getDownloadURL(uploadTask.snapshot.ref)
.then((url) => {
const img = document.querySelector('.file');
img.setAttribute('src', url);
})
.catch((error) => {
switch (error.code) {
case 'storage/object-not-found':
// File doesn't exist
break;
case 'storage/unauthorized':
// User doesn't have permission to access the object
break;
case 'storage/canceled':
// User canceled the upload
break;
case 'storage/unknown':
// Unknown error occurred, inspect the server response
break;
}
});