Table of Contents

actionsPrefix

Prefix for all actions within library

Type: string

Examples

import { constants } from 'react-redux-firebase'
constants.actionsPrefix === '@@reactReduxFirebase' // true

actionTypes

Object containing all action types

Properties

  • START String @@reactReduxFirebase/START
  • SET String @@reactReduxFirebase/SET
  • SET_PROFILE String @@reactReduxFirebase/SET_PROFILE
  • LOGIN String @@reactReduxFirebase/LOGIN
  • LOGOUT String @@reactReduxFirebase/LOGOUT
  • LOGIN_ERROR String @@reactReduxFirebase/LOGIN_ERROR
  • NO_VALUE String @@reactReduxFirebase/NO_VALUE
  • UNAUTHORIZED_ERROR String @@reactReduxFirebase/UNAUTHORIZED_ERROR
  • ERROR String @@reactReduxFirebase/ERROR
  • UNSET_LISTENER String @@reactReduxFirebase/UNSET_LISTENER
  • AUTHENTICATION_INIT_STARTED String @@reactReduxFirebase/AUTHENTICATION_INIT_STARTED
  • AUTHENTICATION_INIT_FINISHED String @@reactReduxFirebase/AUTHENTICATION_INIT_FINISHED
  • FILE_UPLOAD_START String @@reactReduxFirebase/FILE_UPLOAD_START
  • FILE_UPLOAD_ERROR String @@reactReduxFirebase/FILE_UPLOAD_ERROR
  • FILE_UPLOAD_PROGRESS String @@reactReduxFirebase/FILE_UPLOAD_PROGRESS
  • FILE_UPLOAD_COMPLETE String @@reactReduxFirebase/FILE_UPLOAD_COMPLETE
  • FILE_DELETE_START String @@reactReduxFirebase/FILE_DELETE_START
  • FILE_DELETE_ERROR String @@reactReduxFirebase/FILE_DELETE_ERROR
  • FILE_DELETE_COMPLETE String @@reactReduxFirebase/FILE_DELETE_COMPLETE
  • AUTH_UPDATE_START String @@reactReduxFirebase/AUTH_UPDATE_START
  • AUTH_UPDATE_ERROR String @@reactReduxFirebase/AUTH_UPDATE_ERROR
  • AUTH_UPDATE_COMPLETE String @@reactReduxFirebase/AUTH_UPDATE_COMPLETE
  • PROFILE_UPDATE_START String @@reactReduxFirebase/PROFILE_UPDATE_START
  • PROFILE_UPDATE_ERROR String @@reactReduxFirebase/PROFILE_UPDATE_ERROR
  • PROFILE_UPDATE_COMPLETE String @@reactReduxFirebase/PROFILE_UPDATE_COMPLETE
  • EMAIL_UPDATE_START String @@reactReduxFirebase/EMAIL_UPDATE_START
  • EMAIL_UPDATE_ERROR String @@reactReduxFirebase/EMAIL_UPDATE_ERROR
  • EMAIL_UPDATE_COMPLETE String @@reactReduxFirebase/EMAIL_UPDATE_COMPLETE

Examples

import { actionTypes } from 'react-redux-firebase'
actionTypes.SET === '@@reactReduxFirebase/SET' // true

defaultConfig

Default configuration options

Properties

  • userProfile String null Location on Firebase where user profiles are stored. Often set to 'users'.
  • enableLogging Boolean false Whether or not firebase database logging is enabled.
  • updateProfileOnLogin Boolean true Whether or not to update user profile when logging in.
  • resetBeforeLogin Boolean true Whether or not to reset auth and profile when logging in (see issue #254 for more details).
  • enableRedirectHandling Boolean true Whether or not to enable redirect handling. This must be disabled if environment is not http/https such as with react-native.
  • enableEmptyAuthChanges Boolean false Whether or not to enable empty auth changes. When set to true, onAuthStateChanged will be fired with, empty auth changes such as undefined on initialization (see #137). Requires v1.5.0-alpha or higher.
  • autoPopulateProfile Boolean true Whether or not to automatically populate profile with data loaded through profileParamsToPopulate config.
  • setProfilePopulateResults Boolean true Whether or not to call SET actions for data that results from populating profile to redux under the data path. For example role parameter on profile populated from 'roles' root. True will call SET_PROFILE as well as a SET action with the role that is loaded (places it in data/roles).
  • dispatchOnUnsetListener Boolean false Whether or not to dispatch UNSET_LISTENER when disabling listeners for a specific path. USE WITH CAUTION Setting this to true allows an action to be called that removes data from redux (which might not always be expected).

results matching ""

    No results matching ""