2017-06-29 16:24:34 +00:00
|
|
|
import { NativeModules } from 'react-native';
|
|
|
|
|
|
|
|
import INTERNALS from './internals';
|
2017-08-15 16:28:51 +00:00
|
|
|
import { capitalizeFirstLetter } from './utils';
|
2017-06-29 16:24:34 +00:00
|
|
|
|
|
|
|
import AdMob, { statics as AdMobStatics } from './modules/admob';
|
2017-07-04 12:05:19 +00:00
|
|
|
import Auth, { statics as AuthStatics } from './modules/auth';
|
2017-07-12 15:11:07 +00:00
|
|
|
import Analytics from './modules/analytics';
|
|
|
|
import Crash from './modules/crash';
|
|
|
|
import Performance from './modules/perf';
|
2017-07-04 12:05:19 +00:00
|
|
|
import RemoteConfig from './modules/config';
|
2017-06-29 16:24:34 +00:00
|
|
|
import Storage, { statics as StorageStatics } from './modules/storage';
|
|
|
|
import Database, { statics as DatabaseStatics } from './modules/database';
|
|
|
|
import Messaging, { statics as MessagingStatics } from './modules/messaging';
|
|
|
|
|
|
|
|
const FirebaseCoreModule = NativeModules.RNFirebase;
|
|
|
|
|
|
|
|
export default class FirebaseApp {
|
|
|
|
constructor(name: string, options: Object = {}) {
|
|
|
|
this._name = name;
|
|
|
|
this._namespaces = {};
|
|
|
|
this._options = Object.assign({}, options);
|
|
|
|
|
|
|
|
// native ios/android to confirm initialized
|
2017-07-17 17:20:27 +00:00
|
|
|
this._initialized = false;
|
2017-07-18 05:02:53 +00:00
|
|
|
this._nativeInitialized = false;
|
|
|
|
|
|
|
|
// modules
|
|
|
|
this.admob = this._staticsOrModuleInstance('admob', AdMobStatics, AdMob);
|
|
|
|
this.auth = this._staticsOrModuleInstance('auth', AuthStatics, Auth);
|
|
|
|
this.analytics = this._staticsOrModuleInstance('analytics', {}, Analytics);
|
|
|
|
this.config = this._staticsOrModuleInstance('config', {}, RemoteConfig);
|
|
|
|
this.crash = this._staticsOrModuleInstance('crash', {}, Crash);
|
|
|
|
this.database = this._staticsOrModuleInstance('database', DatabaseStatics, Database);
|
|
|
|
this.messaging = this._staticsOrModuleInstance('messaging', MessagingStatics, Messaging);
|
|
|
|
this.perf = this._staticsOrModuleInstance('perf', {}, Performance);
|
|
|
|
this.storage = this._staticsOrModuleInstance('storage', StorageStatics, Storage);
|
2017-06-29 16:24:34 +00:00
|
|
|
}
|
|
|
|
|
2017-07-17 17:20:27 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param native
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
_initializeApp(native = false) {
|
|
|
|
if (native) {
|
2017-07-18 05:02:53 +00:00
|
|
|
// for apps already initialized natively that
|
|
|
|
// we have info from RN constants
|
2017-06-29 16:24:34 +00:00
|
|
|
this._initialized = true;
|
2017-07-17 17:20:27 +00:00
|
|
|
this._nativeInitialized = true;
|
2017-07-17 16:36:50 +00:00
|
|
|
} else {
|
|
|
|
FirebaseCoreModule.initializeApp(this._name, this._options, (error, result) => {
|
|
|
|
this._initialized = true;
|
2017-07-17 19:56:08 +00:00
|
|
|
INTERNALS.SharedEventEmitter.emit(`AppReady:${this._name}`, { error, result });
|
2017-07-17 16:36:50 +00:00
|
|
|
});
|
|
|
|
}
|
2017-06-29 16:24:34 +00:00
|
|
|
}
|
|
|
|
|
2017-07-17 17:20:27 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @return {*}
|
|
|
|
*/
|
2017-06-29 16:24:34 +00:00
|
|
|
get name() {
|
2017-07-17 16:36:50 +00:00
|
|
|
if (this._name === INTERNALS.STRINGS.DEFAULT_APP_NAME) {
|
|
|
|
// ios and android firebase sdk's return different
|
|
|
|
// app names - so we just return what the web sdk
|
|
|
|
// would if it was default.
|
|
|
|
return '[DEFAULT]';
|
|
|
|
}
|
|
|
|
|
2017-06-29 16:24:34 +00:00
|
|
|
return this._name;
|
|
|
|
}
|
|
|
|
|
2017-07-17 17:20:27 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @return {*}
|
|
|
|
*/
|
2017-06-29 16:24:34 +00:00
|
|
|
get options() {
|
|
|
|
return Object.assign({}, this._options);
|
|
|
|
}
|
|
|
|
|
2017-07-17 17:20:27 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @return {Promise}
|
|
|
|
*/
|
2017-06-29 16:24:34 +00:00
|
|
|
delete() {
|
2017-07-17 17:20:27 +00:00
|
|
|
if (this._name === INTERNALS.STRINGS.DEFAULT_APP_NAME && this._nativeInitialized) {
|
|
|
|
return Promise.reject(
|
|
|
|
new Error('Unable to delete the default native firebase app instance.'),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-07-18 05:02:53 +00:00
|
|
|
return FirebaseCoreModule.deleteApp(this._name);
|
2017-06-29 16:24:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-07-18 05:02:53 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @return {*}
|
|
|
|
*/
|
2017-07-17 19:56:08 +00:00
|
|
|
onReady(): Promise {
|
|
|
|
if (this._initialized) return Promise.resolve(this);
|
|
|
|
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
INTERNALS.SharedEventEmitter.once(`AppReady:${this._name}`, ({ error }) => {
|
|
|
|
if (error) return reject(new Error(error)); // error is a string as it's from native
|
|
|
|
return resolve(this); // return app
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-06-29 16:24:34 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param name
|
|
|
|
* @param statics
|
|
|
|
* @param InstanceClass
|
|
|
|
* @return {function()}
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
_staticsOrModuleInstance(name, statics = {}, InstanceClass): Function {
|
|
|
|
const getInstance = () => {
|
|
|
|
const _name = `_${name}`;
|
|
|
|
|
|
|
|
if (!this._namespaces[_name]) {
|
|
|
|
this._namespaces[_name] = new InstanceClass(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
return this._namespaces[_name];
|
|
|
|
};
|
|
|
|
|
2017-08-15 16:28:51 +00:00
|
|
|
Object.assign(getInstance, statics, {
|
2017-08-17 16:25:13 +00:00
|
|
|
nativeModuleExists: !!NativeModules[`RNFirebase${InstanceClass._NATIVE_MODULE || capitalizeFirstLetter(name)}`],
|
2017-08-15 16:28:51 +00:00
|
|
|
});
|
2017-08-15 20:29:50 +00:00
|
|
|
|
2017-06-29 16:24:34 +00:00
|
|
|
return getInstance;
|
|
|
|
}
|
|
|
|
}
|