-
Notifications
You must be signed in to change notification settings - Fork 131
/
Copy pathfirestack.js
196 lines (164 loc) · 4.8 KB
/
firestack.js
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
/**
* @providesModule Firestack
* @flow
*/
import Log from './utils/log'
// const firebase = require('firebase');
// const app = require('firebase/app');
// const storage = require('firebase/storage');
// const db = require('firebase/database');
import {NativeModules, NativeEventEmitter, AsyncStorage} from 'react-native';
// TODO: Break out modules into component pieces
// i.e. auth component, storage component, etc.
const FirestackModule = NativeModules.Firestack;
const FirestackModuleEvt = new NativeEventEmitter(FirestackModule);
import promisify from './utils/promisify'
import Singleton from './utils/singleton'
import RemoteConfig from './modules/remoteConfig'
import {Authentication} from './modules/authentication'
import {Database} from './modules/database'
import {Analytics} from './modules/analytics'
import {Storage} from './modules/storage'
import {Presence} from './modules/presence'
import {CloudMessaging} from './modules/cloudmessaging'
let log;
export class Firestack extends Singleton {
constructor(options) {
var instance = super(options);
instance.options = options || {};
instance._debug = instance.options.debug || false;
Log.enable(instance._debug);
log = instance._log = new Log('firestack');
log.info('Creating new firestack instance');
instance._remoteConfig = instance.options.remoteConfig || {};
delete instance.options.remoteConfig;
instance.configured = instance.options.configure || false;
instance.auth = null;
instance.eventHandlers = {};
log.info('Calling configure with options', instance.options);
instance.configurePromise = instance.configure(instance.options);
instance._auth = new Authentication(instance, instance.options);
}
configure(opts = {}) {
if (!this.configurePromise) {
const firestackOptions = Object.assign({}, this.options, opts);
this.configurePromise = promisify('configureWithOptions', FirestackModule)(firestackOptions)
.then((configuredProperties) => {
log.info('Native configureWithOptions success', configuredProperties);
this.configured = true;
this.firestackOptions = configuredProperties;
return configuredProperties;
}).catch((err) => {
log.info('Native error occurred while calling configure', err);
})
}
return this.configurePromise;
}
onReady(cb) {
return this.configurePromise = this.configurePromise.then(cb);
}
/**
* Wrappers
* We add methods from each wrapper to this instance
* when they are needed. Not sure if this is a good
* idea or not (imperative vs. direct manipulation/proxy)
*/
get auth() {
if (!this._auth) { this._auth = new Authentication(this); }
return this._auth;
}
// database
get database() {
if (!this._db) { this._db = new Database(this); }
return this._db;
// db.enableLogging(this._debug);
// return this.appInstance.database();
}
// analytics
get analytics() {
if (!this._analytics) { this._analytics = new Analytics(this); }
return this._analytics;
}
// storage
get storage() {
if (!this._storage) { this._storage = new Storage(this); }
return this._storage;
}
// presence
get presence() {
if (!this._presence) { this._presence = new Presence(this); }
return this._presence;
}
// CloudMessaging
get cloudMessaging() {
if (!this._cloudMessaging) { this._cloudMessaging = new CloudMessaging(this); }
return this._cloudMessaging;
}
// other
get ServerValue() {
return promisify('serverValue', FirestackModule)();
}
/**
* remote config
*/
get remoteConfig() {
if (!this.remoteConfig) {
this.remoteConfig = new RemoteConfig(this._remoteConfig);
}
return this.remoteConfig;
}
/**
* app instance
**/
get app() {
return this.appInstance;
}
/**
* Logger
*/
get log() {
return this._log;
}
/**
* Redux store
**/
get store() {
return this._store;
}
get constants() {
if (!this._constants) {
this._constants = Object.assign({}, Storage.constants)
}
return this._constants;
}
/**
* Set the redux store helper
*/
setStore(store) {
if (store) {
this.log.info('Setting the store for Firestack instance');
this._store = store;
}
}
/**
* Global event handlers for the single Firestack instance
*/
on(name, cb, nativeModule) {
if (!this.eventHandlers[name]) {
this.eventHandlers[name] = [];
}
if (!nativeModule) {
nativeModule = FirestackModuleEvt;
}
const sub = nativeModule.addListener(name, cb);
this.eventHandlers[name].push(sub);
return sub;
}
off(name) {
if (this.eventHandlers[name]) {
this.eventHandlers[name]
.forEach(subscription => subscription.remove());
}
}
}
export default Firestack