4
4
*/
5
5
6
6
7
- import { NativeModules , NativeEventEmitter , AsyncStorage } from 'react-native' ;
7
+ import { NativeModules , NativeEventEmitter } from 'react-native' ;
8
8
9
- import Log from './utils/log'
9
+ import Log from './utils/log' ;
10
10
import promisify from './utils/promisify' ;
11
11
import Singleton from './utils/singleton' ;
12
12
@@ -34,7 +34,7 @@ export default class Firestack extends Singleton {
34
34
* @param options
35
35
* @param name - TODO support naming multiple instances
36
36
*/
37
- constructor ( options , name ) {
37
+ constructor ( options : Object , name : string ) {
38
38
const instance = super ( options ) ;
39
39
40
40
instance . options = options || { } ;
@@ -49,7 +49,6 @@ export default class Firestack extends Singleton {
49
49
delete instance . options . remoteConfig ;
50
50
51
51
instance . configured = instance . options . configure || false ;
52
- instance . _auth = null ;
53
52
54
53
instance . eventHandlers = { } ;
55
54
@@ -59,13 +58,24 @@ export default class Firestack extends Singleton {
59
58
instance . _auth = new Auth ( instance , instance . options ) ;
60
59
}
61
60
61
+ _db : ?Object ;
62
+ _log : ?Object ;
63
+ _auth : ?Object ;
64
+ _store : ?Object ;
65
+ _storage : ?Object ;
66
+ _presence : ?Object ;
67
+ _analytics : ?Object ;
68
+ _constants : ?Object ;
69
+ _messaging : ?Object ;
70
+ _remoteConfig : ?Object ;
71
+
62
72
/**
63
73
* Support web version of initApp.
64
74
* @param options
65
75
* @param name
66
76
* @returns {* }
67
77
*/
68
- static initializeApp ( options , name = 'default' ) {
78
+ static initializeApp ( options : Object = { } , name : string = 'default' ) {
69
79
if ( ! instances [ name ] ) instances [ name ] = new Firestack ( options ) ;
70
80
return instances [ name ] ;
71
81
}
@@ -76,7 +86,7 @@ export default class Firestack extends Singleton {
76
86
* @param opts
77
87
* @returns {Promise.<TResult>|*|Promise.<T> }
78
88
*/
79
- configure ( opts = { } ) {
89
+ configure ( opts : Object = { } ) {
80
90
if ( ! this . configurePromise ) {
81
91
const firestackOptions = Object . assign ( { } , this . options , opts ) ;
82
92
@@ -88,12 +98,13 @@ export default class Firestack extends Singleton {
88
98
return configuredProperties ;
89
99
} ) . catch ( ( err ) => {
90
100
log . info ( 'Native error occurred while calling configure' , err ) ;
91
- } )
101
+ } ) ;
92
102
}
93
103
return this . configurePromise ;
94
104
}
95
105
96
- onReady ( cb ) {
106
+ onReady ( cb : Function ) {
107
+ // TODO wut o.O
97
108
return this . configurePromise = this . configurePromise . then ( cb ) ;
98
109
}
99
110
@@ -104,24 +115,18 @@ export default class Firestack extends Singleton {
104
115
* idea or not (imperative vs. direct manipulation/proxy)
105
116
*/
106
117
auth ( ) {
107
- console . log ( 'auth GET' ) ;
108
- if ( ! this . _auth ) {
109
- this . _auth = new Auth ( this ) ;
110
- }
111
118
return this . _auth ;
112
119
}
113
120
114
- // database
121
+
115
122
database ( ) {
116
123
if ( ! this . _db ) {
117
124
this . _db = new Database ( this ) ;
118
125
}
119
126
return this . _db ;
120
- // db.enableLogging(this._debug);
121
- // return this.appInstance.database();
122
127
}
123
128
124
- // analytics
129
+
125
130
analytics ( ) {
126
131
if ( ! this . _analytics ) {
127
132
this . _analytics = new Analytics ( this ) ;
@@ -137,71 +142,61 @@ export default class Firestack extends Singleton {
137
142
return this . _storage ;
138
143
}
139
144
140
- // presence
141
145
presence ( ) {
142
146
if ( ! this . _presence ) {
143
147
this . _presence = new Presence ( this ) ;
144
148
}
145
149
return this . _presence ;
146
150
}
147
151
148
- // CloudMessaging
149
152
messaging ( ) {
150
- if ( ! this . _cloudMessaging ) {
151
- this . _cloudMessaging = new Messaging ( this ) ;
153
+ if ( ! this . _messaging ) {
154
+ this . _messaging = new Messaging ( this ) ;
152
155
}
153
- return this . _cloudMessaging ;
156
+ return this . _messaging ;
154
157
}
155
158
156
- /**
157
- * remote config
158
- */
159
159
remoteConfig ( ) {
160
- if ( ! this . remoteConfig ) {
161
- this . remoteConfig = new RemoteConfig ( this . _remoteConfig ) ;
160
+ if ( ! this . _remoteConfig ) {
161
+ this . _remoteConfig = new RemoteConfig ( this ) ;
162
162
}
163
- return this . remoteConfig ;
163
+ return this . _remoteConfig ;
164
164
}
165
165
166
166
// other
167
- get ServerValue ( ) {
167
+ get ServerValue ( ) : Promise < * > {
168
168
return promisify ( 'serverValue' , FirestackModule ) ( ) ;
169
169
}
170
170
171
-
172
- /**
173
- * app instance
174
- **/
175
- get app ( ) {
171
+ // TODO what are these for?
172
+ get app ( ) : Object {
176
173
return this . appInstance ;
177
174
}
178
175
179
- /**
180
- * app instance
181
- **/
182
- getInstance ( ) {
176
+ // TODO what are these for?
177
+ getInstance ( ) : Object {
183
178
return this . appInstance ;
184
179
}
185
180
186
- get apps ( ) {
181
+ get apps ( ) : Array < string > {
187
182
return Object . keys ( instances ) ;
188
183
}
189
184
190
185
/**
191
186
* Logger
192
187
*/
193
- get log ( ) {
188
+ get log ( ) : Log {
194
189
return this . _log ;
195
190
}
196
191
197
192
/**
198
193
* Redux store
199
194
**/
200
- get store ( ) {
195
+ get store ( ) : Object {
201
196
return this . _store ;
202
197
}
203
198
204
- get constants ( ) {
199
+ get constants ( ) : Object {
205
200
if ( ! this . _constants ) {
206
201
this . _constants = Object . assign ( { } , Storage . constants )
207
202
}
@@ -211,7 +206,7 @@ export default class Firestack extends Singleton {
211
206
/**
212
207
* Set the redux store helper
213
208
*/
214
- setStore ( store ) {
209
+ setStore ( store : Object ) {
215
210
if ( store ) {
216
211
this . log . info ( 'Setting the store for Firestack instance' ) ;
217
212
this . _store = store ;
@@ -221,19 +216,17 @@ export default class Firestack extends Singleton {
221
216
/**
222
217
* Global event handlers for the single Firestack instance
223
218
*/
224
- on ( name , cb , nativeModule ) {
219
+ on ( name : string , cb : Function , nativeModule : Object = FirestackModuleEvt ) {
225
220
if ( ! this . eventHandlers [ name ] ) {
226
221
this . eventHandlers [ name ] = [ ] ;
227
222
}
228
- if ( ! nativeModule ) {
229
- nativeModule = FirestackModuleEvt ;
230
- }
223
+
231
224
const sub = nativeModule . addListener ( name , cb ) ;
232
225
this . eventHandlers [ name ] . push ( sub ) ;
233
226
return sub ;
234
227
}
235
228
236
- off ( name ) {
229
+ off ( name : string ) {
237
230
if ( this . eventHandlers [ name ] ) {
238
231
this . eventHandlers [ name ]
239
232
. forEach ( subscription => subscription . remove ( ) ) ;
0 commit comments