UNPKG

@react-native-firebase/app

Version:

A well tested, feature rich Firebase implementation for React Native, supporting iOS & Android. Individual module support for Admob, Analytics, Auth, Crash Reporting, Cloud Firestore, Database, Dynamic Links, Functions, Messaging (FCM), Remote Config, Sto

88 lines (78 loc) 3.15 kB
import { MODULAR_DEPRECATION_ARG } from '@react-native-firebase/app/lib/common'; /* eslint-disable @typescript-eslint/no-unused-vars */ import { deleteApp as deleteAppCompat, getApp as getAppCompat, getApps as getAppsCompat, initializeApp as initializeAppCompat, setLogLevel as setLogLevelCompat, } from '../internal'; import { setUserLogHandler } from '../internal/logger'; import sdkVersion from '../version'; /** * @typedef {import('..').ReactNativeFirebase.FirebaseApp} FirebaseApp * @typedef {import('..').ReactNativeFirebase.FirebaseAppOptions} FirebaseAppOptions * @typedef {import('..').ReactNativeFirebase.LogLevelString} LogLevelString * @typedef {import('../internal/logger').LogCallback} LogCallback * @typedef {import('../internal/logger').LogOptions} LogOptions */ /** * Renders this app unusable and frees the resources of all associated services. * @param {FirebaseApp} app - The app to delete. * @returns {Promise<void>} */ export function deleteApp(app) { return deleteAppCompat.call(null, app.name, app._nativeInitialized, MODULAR_DEPRECATION_ARG); } /** * Registers a library's name and version for platform logging purposes. @param {string} libraryKeyOrName - library name or key. @param {string} version - library version. @param {string | undefined} variant - library variant. Optional. * @returns {Promise<void>} */ export function registerVersion(libraryKeyOrName, version, variant) { throw new Error('registerVersion is only supported on Web'); } /** * Sets log handler for VertexAI only currently. * @param {LogCallback | null} logCallback - The callback function to handle logs. * @param {LogOptions} [options] - Optional settings for log handling. * @returns {void} */ export function onLog(logCallback, options) { setUserLogHandler(logCallback, options); } /** * Gets the list of all initialized apps. * @returns {FirebaseApp[]} - An array of all initialized Firebase apps. */ export function getApps() { return getAppsCompat.call(null, MODULAR_DEPRECATION_ARG); } /** * Initializes a Firebase app with the provided options and name. * @param {FirebaseAppOptions} options - Options to configure the services used in the app. * @param {string} [name] - The optional name of the app to initialize ('[DEFAULT]' if omitted). * @returns {FirebaseApp} - The initialized Firebase app. */ export function initializeApp(options, name) { return initializeAppCompat.call(null, options, name, MODULAR_DEPRECATION_ARG); } /** * Retrieves an instance of a Firebase app. * @param {string} [name] - The optional name of the app to return ('[DEFAULT]' if omitted). * @returns {FirebaseApp} - The requested Firebase app instance. */ export function getApp(name) { return getAppCompat.call(null, name, MODULAR_DEPRECATION_ARG); } /** * Sets the log level across all Firebase SDKs. * @param {LogLevelString} logLevel - The log level to set ('debug', 'verbose', 'info', 'warn', 'error', 'silent'). * @returns {void} */ export function setLogLevel(logLevel) { return setLogLevelCompat.call(null, logLevel, MODULAR_DEPRECATION_ARG); } export const SDK_VERSION = sdkVersion;