-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
Copy pathstorage.ts
30 lines (24 loc) · 956 Bytes
/
storage.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import { ɵgetAllInstancesOf } from '@angular/fire';
import { FirebaseStorage } from 'firebase/storage';
import { from, timer } from 'rxjs';
import { concatMap, distinct } from 'rxjs/operators';
// see notes in core/firebase.app.module.ts for why we're building the class like this
// eslint-disable-next-line @typescript-eslint/no-empty-interface
export interface Storage extends FirebaseStorage {}
export class Storage {
constructor(auth: FirebaseStorage) {
return auth;
}
}
export const STORAGE_PROVIDER_NAME = 'storage';
// eslint-disable-next-line @typescript-eslint/no-empty-interface
export interface StorageInstances extends Array<FirebaseStorage> {}
export class StorageInstances {
constructor() {
return ɵgetAllInstancesOf<FirebaseStorage>(STORAGE_PROVIDER_NAME);
}
}
export const storageInstance$ = timer(0, 300).pipe(
concatMap(() => from(ɵgetAllInstancesOf<FirebaseStorage>(STORAGE_PROVIDER_NAME))),
distinct(),
);