Skip to content

Commit d454cf0

Browse files
authored
feat(core): Register AngularFire and Angular versions with the JS SDK
If the JS SDK has the `registerVersion` API, we should register the version of Angular and AngularFire.
1 parent 25e5b04 commit d454cf0

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

src/core/firebase.app.module.ts

+10-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { InjectionToken, NgModule, Optional, NgZone } from '@angular/core';
1+
import { InjectionToken, NgModule, Optional, NgZone, VERSION as NG_VERSION, Version } from '@angular/core';
22
import { auth, database, messaging, storage, firestore, functions } from 'firebase/app';
33
// @ts-ignore (https://github.com/firebase/firebase-js-sdk/pull/1206)
44
import firebase from 'firebase/app'; // once fixed can pull in as "default as firebase" above
@@ -42,8 +42,11 @@ export class FirebaseApp {
4242
firestore: () => FirebaseFirestore;
4343
functions: (region?: string) => FirebaseFunctions;
4444
remoteConfig: () => FirebaseRemoteConfig;
45+
registerVersion?: (library: string, version: string) => void;
4546
}
4647

48+
export const VERSION = new Version('ANGULARFIRE2_VERSION');
49+
4750
export function _firebaseAppFactory(options: FirebaseOptions, zone: NgZone, nameOrConfig?: string|FirebaseAppConfig|null) {
4851
const name = typeof nameOrConfig === 'string' && nameOrConfig || '[DEFAULT]';
4952
const config = typeof nameOrConfig === 'object' && nameOrConfig || {};
@@ -52,7 +55,12 @@ export function _firebaseAppFactory(options: FirebaseOptions, zone: NgZone, name
5255
const existingApp = firebase.apps.filter(app => app && app.name === config.name)[0] as any;
5356
// We support FirebaseConfig, initializeApp's public type only accepts string; need to cast as any
5457
// Could be solved with https://github.com/firebase/firebase-js-sdk/pull/1206
55-
return (existingApp || zone.runOutsideAngular(() => firebase.initializeApp(options, config as any))) as FirebaseApp;
58+
const app = (existingApp || zone.runOutsideAngular(() => firebase.initializeApp(options, config as any))) as FirebaseApp;
59+
if (app.registerVersion) {
60+
app.registerVersion('angularfire', VERSION.full);
61+
app.registerVersion('angular', NG_VERSION.full);
62+
}
63+
return app;
5664
}
5765

5866
const FirebaseAppProvider = {

tools/build.js

+7
Original file line numberDiff line numberDiff line change
@@ -307,6 +307,12 @@ function replaceDynamicImportsForUMD() {
307307
writeFileSync('./dist/packages-dist/remote-config/remote-config.d.ts', readFileSync('./dist/packages-dist/remote-config/remote-config.d.ts', 'utf8').replace("implements remoteConfig.Value", "implements Partial<remoteConfig.Value>"));
308308
}
309309

310+
function writeCoreVersion() {
311+
writeFileSync('./dist/packages-dist/bundles/core.umd.js', readFileSync('./dist/packages-dist/bundles/core.umd.js', 'utf8').replace('ANGULARFIRE2_VERSION', VERSIONS.ANGULARFIRE2_VERSION));
312+
writeFileSync('./dist/packages-dist/firebase.app.module.js', readFileSync('./dist/packages-dist/firebase.app.module.js', 'utf8').replace('ANGULARFIRE2_VERSION', VERSIONS.ANGULARFIRE2_VERSION));
313+
writeFileSync('./dist/packages-dist/es2015/firebase.app.module.js', readFileSync('./dist/packages-dist/es2015/firebase.app.module.js', 'utf8').replace('ANGULARFIRE2_VERSION', VERSIONS.ANGULARFIRE2_VERSION));
314+
}
315+
310316
function measure(module) {
311317
const path = `${process.cwd()}/dist/packages-dist/bundles/${module}.umd.js`;
312318
const file = readFileSync(path);
@@ -408,6 +414,7 @@ function buildLibrary(globals) {
408414
switchMap(() => from(createTestUmd(globals))),
409415
tap(() => {
410416
replaceDynamicImportsForUMD();
417+
writeCoreVersion();
411418
const coreStats = measure('core');
412419
const analyticsStats = measure('analytics');
413420
const authStats = measure('auth');

0 commit comments

Comments
 (0)