4
4
*/
5
5
import Log from './utils/log'
6
6
7
+ const instances = {
8
+ default : null ,
9
+ } ;
10
+
7
11
// const firebase = require('firebase');
8
12
9
13
// const app = require('firebase/app');
10
14
// const storage = require('firebase/storage');
11
15
// const db = require('firebase/database');
12
16
13
- import { NativeModules , NativeEventEmitter , AsyncStorage } from 'react-native' ;
17
+ import { NativeModules , NativeEventEmitter , AsyncStorage } from 'react-native' ;
14
18
// TODO: Break out modules into component pieces
15
19
// i.e. auth component, storage component, etc.
16
20
const FirestackModule = NativeModules . Firestack ;
@@ -20,17 +24,17 @@ import promisify from './utils/promisify'
20
24
import Singleton from './utils/singleton'
21
25
22
26
import RemoteConfig from './modules/remoteConfig'
23
- import { Authentication } from './modules/authentication'
24
- import { Database } from './modules/database'
25
- import { Analytics } from './modules/analytics'
26
- import { Storage } from './modules/storage'
27
- import { Presence } from './modules/presence'
28
- import { CloudMessaging } from './modules/cloudmessaging'
27
+ import { Authentication } from './modules/authentication'
28
+ import { Database } from './modules/database'
29
+ import { Analytics } from './modules/analytics'
30
+ import { Storage } from './modules/storage'
31
+ import { Presence } from './modules/presence'
32
+ import { CloudMessaging } from './modules/cloudmessaging'
29
33
30
34
let log ;
31
35
export class Firestack extends Singleton {
32
36
33
- constructor ( options ) {
37
+ constructor ( options , name ) {
34
38
var instance = super ( options ) ;
35
39
36
40
instance . options = options || { } ;
@@ -55,10 +59,27 @@ export class Firestack extends Singleton {
55
59
instance . _auth = new Authentication ( instance , instance . options ) ;
56
60
}
57
61
62
+ /**
63
+ * Support web version of initApp.
64
+ * @param options
65
+ * @param name
66
+ * @returns {* }
67
+ */
68
+ static initializeApp ( options , name = 'default' ) {
69
+ if ( ! instances [ name ] ) instances [ name ] = new Firestack ( options ) ;
70
+ return instances [ name ] ;
71
+ }
72
+
73
+
74
+ /**
75
+ *
76
+ * @param opts
77
+ * @returns {Promise.<TResult>|*|Promise.<T> }
78
+ */
58
79
configure ( opts = { } ) {
59
80
if ( ! this . configurePromise ) {
60
81
const firestackOptions = Object . assign ( { } , this . options , opts ) ;
61
-
82
+
62
83
this . configurePromise = promisify ( 'configureWithOptions' , FirestackModule ) ( firestackOptions )
63
84
. then ( ( configuredProperties ) => {
64
85
log . info ( 'Native configureWithOptions success' , configuredProperties ) ;
@@ -82,63 +103,89 @@ export class Firestack extends Singleton {
82
103
* when they are needed. Not sure if this is a good
83
104
* idea or not (imperative vs. direct manipulation/proxy)
84
105
*/
85
- get auth ( ) {
86
- if ( ! this . _auth ) { this . _auth = new Authentication ( this ) ; }
106
+ auth ( ) {
107
+ if ( ! this . _auth ) {
108
+ this . _auth = new Authentication ( this ) ;
109
+ }
87
110
return this . _auth ;
88
111
}
112
+
89
113
// database
90
- get database ( ) {
91
- if ( ! this . _db ) { this . _db = new Database ( this ) ; }
114
+ database ( ) {
115
+ if ( ! this . _db ) {
116
+ this . _db = new Database ( this ) ;
117
+ }
92
118
return this . _db ;
93
119
// db.enableLogging(this._debug);
94
120
// return this.appInstance.database();
95
121
}
96
122
97
123
// analytics
98
- get analytics ( ) {
99
- if ( ! this . _analytics ) { this . _analytics = new Analytics ( this ) ; }
124
+ analytics ( ) {
125
+ if ( ! this . _analytics ) {
126
+ this . _analytics = new Analytics ( this ) ;
127
+ }
100
128
return this . _analytics ;
101
129
}
102
130
103
131
// storage
104
- get storage ( ) {
105
- if ( ! this . _storage ) { this . _storage = new Storage ( this ) ; }
132
+ storage ( ) {
133
+ if ( ! this . _storage ) {
134
+ this . _storage = new Storage ( this ) ;
135
+ }
106
136
return this . _storage ;
107
137
}
108
138
109
139
// presence
110
- get presence ( ) {
111
- if ( ! this . _presence ) { this . _presence = new Presence ( this ) ; }
140
+ presence ( ) {
141
+ if ( ! this . _presence ) {
142
+ this . _presence = new Presence ( this ) ;
143
+ }
112
144
return this . _presence ;
113
145
}
146
+
114
147
// CloudMessaging
115
- get cloudMessaging ( ) {
116
- if ( ! this . _cloudMessaging ) { this . _cloudMessaging = new CloudMessaging ( this ) ; }
148
+ messaging ( ) {
149
+ if ( ! this . _cloudMessaging ) {
150
+ this . _cloudMessaging = new CloudMessaging ( this ) ;
151
+ }
117
152
return this . _cloudMessaging ;
118
153
}
119
154
120
- // other
121
- get ServerValue ( ) {
122
- return promisify ( 'serverValue' , FirestackModule ) ( ) ;
123
- }
124
-
125
155
/**
126
156
* remote config
127
157
*/
128
- get remoteConfig ( ) {
158
+ remoteConfig ( ) {
129
159
if ( ! this . remoteConfig ) {
130
160
this . remoteConfig = new RemoteConfig ( this . _remoteConfig ) ;
131
161
}
132
162
return this . remoteConfig ;
133
163
}
134
164
165
+ // other
166
+ get ServerValue ( ) {
167
+ return promisify ( 'serverValue' , FirestackModule ) ( ) ;
168
+ }
169
+
170
+
135
171
/**
136
172
* app instance
137
173
**/
138
174
get app ( ) {
139
175
return this . appInstance ;
140
176
}
141
177
178
+ /**
179
+ * app instance
180
+ **/
181
+ getInstance ( ) {
182
+ return this . appInstance ;
183
+ }
184
+
185
+ get apps ( ) {
186
+ return Object . keys ( instances ) ;
187
+ }
188
+
142
189
/**
143
190
* Logger
144
191
*/
0 commit comments