File tree 3 files changed +16
-2
lines changed
3 files changed +16
-2
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' @firebase/app-compat ' : patch
3
+ ---
4
+
5
+ Properly handle the case in app-compat checks where ` window ` exists but ` self ` does not. (This occurs in Ionic Stencil's Jest preset.)
Original file line number Diff line number Diff line change @@ -21,16 +21,22 @@ import { firebase as firebaseNamespace } from './firebaseNamespace';
21
21
import { logger } from './logger' ;
22
22
import { registerCoreComponents } from './registerCoreComponents' ;
23
23
24
+ declare global {
25
+ interface Window {
26
+ firebase : FirebaseNamespace ;
27
+ }
28
+ }
29
+
24
30
// Firebase Lite detection
25
31
// eslint-disable-next-line @typescript-eslint/no-explicit-any
26
- if ( isBrowser ( ) && ( self as any ) . firebase !== undefined ) {
32
+ if ( isBrowser ( ) && window . firebase !== undefined ) {
27
33
logger . warn ( `
28
34
Warning: Firebase is already defined in the global scope. Please make sure
29
35
Firebase library is only loaded once.
30
36
` ) ;
31
37
32
38
// eslint-disable-next-line
33
- const sdkVersion = ( ( self as any ) . firebase as FirebaseNamespace ) . SDK_VERSION ;
39
+ const sdkVersion = ( window . firebase as FirebaseNamespace ) . SDK_VERSION ;
34
40
if ( sdkVersion && sdkVersion . indexOf ( 'LITE' ) >= 0 ) {
35
41
logger . warn ( `
36
42
Warning: You are trying to load Firebase while using Firebase Performance standalone script.
Original file line number Diff line number Diff line change @@ -80,6 +80,9 @@ export function isNode(): boolean {
80
80
81
81
/**
82
82
* Detect Browser Environment
83
+ * Note: This will return true for certain test frameworks that are incompletely
84
+ * mimicking a browser, and should not lead to assuming all browser APIs are
85
+ * available.
83
86
*/
84
87
export function isBrowser ( ) : boolean {
85
88
return typeof window !== 'undefined' || isWebWorker ( ) ;
You can’t perform that action at this time.
0 commit comments