Cloud Storage is designed to help you quickly and easily store and serve user-generated content, such as photos and videos.
Cloud Storage for AngularFire is contained in the @angular/fire/storage
module namespace. Import the AngularFireStorageModule
in your NgModule
. This sets up the AngularFireStorage
service for dependency injection.
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { AngularFireModule } from '@angular/fire/compat';
import { AngularFireStorageModule } from '@angular/fire/compat/storage';
import { environment } from '../environments/environment';
@NgModule({
imports: [
BrowserModule,
AngularFireModule.initializeApp(environment.firebase),
AngularFireStorageModule
],
declarations: [ AppComponent ],
bootstrap: [ AppComponent ]
})
export class AppModule {}
The BUCKET
injection token can be used to customise the storage bucket.
import {AngularFireStorageModule, BUCKET } from '@angular/fire/compat/storage';
@NgModule({
providers: [
{ provide: BUCKET, useValue: 'my-bucket-name' }
],
...
})
export class AppModule {}
Once the AngularFireStorageModule
is registered you can inject the AngularFireStorage
service.
import { Component } from '@angular/core';
import { AngularFireStorage } from '@angular/fire/compat/storage';
@Component({
selector: 'app-component',
template: ``
})
export class AppComponent {
constructor(private storage: AngularFireStorage) { }
}
There are three options for uploading files.
method | |
---|---|
put(data: Blob, metadata?: storage.UploadMetadata): AngularFireUploadTask |
Starts the upload of the blob to the storage reference's path. Returns an AngularFireUploadTask for upload monitoring. |
putString(data: string, format?: StringFormat, metadata?: UploadMetadata): AngularFireUploadTask |
Updates an existing item in the array. Accepts a key, database reference, or an unwrapped snapshot. |
upload(path: string, data: StringFormat, metadata?: UploadMetadata): AngularFireUploadTask |
Upload or update a new file to the storage reference's path. Returns an AngularFireUploadTask for upload monitoring. |
import { Component } from '@angular/core';
import { AngularFireStorage } from '@angular/fire/compat/storage';
@Component({
selector: 'app-root',
template: `
<input type="file" (change)="uploadFile($event)">
`
})
export class AppComponent {
constructor(private storage: AngularFireStorage) { }
uploadFile(event) {
const file = event.target.files[0];
const filePath = 'name-your-file-path-here';
const ref = this.storage.ref(filePath);
const task = ref.put(file);
}
}
import { Component } from '@angular/core';
import { AngularFireStorage } from '@angular/fire/compat/storage';
@Component({
selector: 'app-root',
template: `
<input type="file" (change)="uploadFile($event)">
`
})
export class AppComponent {
constructor(private storage: AngularFireStorage) { }
uploadFile(event) {
const file = event.target.files[0];
const filePath = 'name-your-file-path-here';
const ref = this.storage.ref(filePath);
const task = ref.putString(file);
}
}
import { Component } from '@angular/core';
import { AngularFireStorage } from '@angular/fire/compat/storage';
@Component({
selector: 'app-root',
template: `
<input type="file" (change)="uploadFile($event)">
`
})
export class AppComponent {
constructor(private storage: AngularFireStorage) { }
uploadFile(event) {
const file = event.target.files[0];
const filePath = 'name-your-file-path-here';
const task = this.storage.upload(filePath, file);
}
}
An AngularFireUploadTask
has methods for observing upload percentage as well as the final download URL.
method | |
---|---|
snapshotChanges(): Observable<FirebaseStorage.UploadTaskSnapshot> |
Emits the raw UploadTaskSnapshot as the file upload progresses. |
percentageChanges(): Observable<number> |
Emits the upload completion percentage. |
getDownloadURL(): Observable<any> |
Emits the download url when available |
The method getDownloadURL()
doesn't rely on the task anymore, hence, in order to get the url we should use the finalize method from RxJS on top of the storage ref.
import { finalize } from 'rxjs/operators';
@Component({
selector: 'app-root',
template: `
<input type="file" (change)="uploadFile($event)" />
<div>{{ uploadPercent | async }}</div>
<a [href]="downloadURL | async">{{ downloadURL | async }}</a>
`
})
export class AppComponent {
uploadPercent: Observable<number>;
downloadURL: Observable<string>;
constructor(private storage: AngularFireStorage) {}
uploadFile(event) {
const file = event.target.files[0];
const filePath = 'name-your-file-path-here';
const fileRef = this.storage.ref(filePath);
const task = this.storage.upload(filePath, file);
// observe percentage changes
this.uploadPercent = task.percentageChanges();
// get notified when the download URL is available
task.snapshotChanges().pipe(
finalize(() => this.downloadURL = fileRef.getDownloadURL() )
)
.subscribe()
}
}
A convenient pipe exists for simple in page references.
@Component({
selector: 'app-root',
template: `<img [src]="'users/davideast.jpg' | getDownloadURL" />`
})
export class AppComponent {}
To download a file you'll need to create a reference and call the getDownloadURL()
method on an AngularFireStorageReference
.
@Component({
selector: 'app-root',
template: `<img [src]="profileUrl | async" />`
})
export class AppComponent {
profileUrl: Observable<string | null>;
constructor(private storage: AngularFireStorage) {
const ref = this.storage.ref('users/davideast.jpg');
this.profileUrl = ref.getDownloadURL();
}
}
Cloud Storage for Firebase allows you to upload and download metadata associated with files. This is useful because you can store important metadata and download it without needing to download the entire file.
@Component({
selector: 'app-root',
template: `<pre><code>{{ meta | async }}</code></pre>`
})
export class AppComponent {
meta: Observable<any>;
constructor(private storage: AngularFireStorage) {
const ref = this.storage.ref('users/davideast.jpg');
this.meta = ref.getMetadata();
}
}
@Component({
selector: 'app-root',
template: `
<input type="file" (change)="uploadFile($event)" />
`
})
export class AppComponent {
constructor(private storage: AngularFireStorage) {}
uploadFile(event) {
const file = event.target.files[0];
const filePath = 'name-your-file-path-here';
const ref = this.storage.ref(filePath);
const task = ref.put(file, { customMetadata: { blah: 'blah' } });
}
}