- set
- setWithMeta
- push
- pushWithMeta
- update
- updateWithMeta
- remove
- uniqueSet
- uploadFile
- uploadFiles
- deleteFile
- watchEvent
- unWatchEvent
- promiseEvents
- login
- logout
- createUser
- resetPassword
- confirmPasswordReset
- verifyPasswordResetCode
- updateProfile
- updateAuth
- updateEmail
- reloadAuth
- linkWithCredential
- signInWithPhoneNumber
- ref
- database
- storage
- auth
Sets data to Firebase.
Parameters
path
String Path to location on Firebase which to setvalue
(Object | String | Boolean | Number) Value to write to FirebaseonComplete
Function Function to run on complete (not required
)
Examples
Basic
import React, { Component } from 'react'
import PropTypes from 'prop-types'
import { firebaseConnect } from 'react-redux-firebase'
const Example = ({ firebase: { set } }) => (
<button onClick={() => set('some/path', { here: 'is a value' })}>
Set To Firebase
</button>
)
export default firebaseConnect()(Example)
Returns Promise Containing reference snapshot
Sets data to Firebase along with meta data. Currently, this includes createdAt and createdBy. Warning using this function may have unintented consequences (setting createdAt even if data already exists)
Parameters
path
String Path to location on Firebase which to setvalue
(Object | String | Boolean | Number) Value to write to FirebaseonComplete
Function Function to run on complete (not required
)
Returns Promise Containing reference snapshot
Pushes data to Firebase.
Parameters
path
String Path to location on Firebase which to pushvalue
(Object | String | Boolean | Number) Value to push to FirebaseonComplete
Function Function to run on complete (not required
)
Examples
Basic
import React, { Component } from 'react'
import PropTypes from 'prop-types'
import { firebaseConnect } from 'react-redux-firebase'
const Example = ({ firebase: { push } }) => (
<button onClick={() => push('some/path', true)}>
Push To Firebase
</button>
)
export default firebaseConnect()(Example)
Returns Promise Containing reference snapshot
Pushes data to Firebase along with meta data. Currently, this includes createdAt and createdBy.
Parameters
path
String Path to location on Firebase which to setvalue
(Object | String | Boolean | Number) Value to write to FirebaseonComplete
Function Function to run on complete (not required
)
Returns Promise Containing reference snapshot
Updates data on Firebase and sends new data.
Parameters
path
String Path to location on Firebase which to updatevalue
(Object | String | Boolean | Number) Value to update to FirebaseonComplete
Function Function to run on complete (not required
)
Examples
Basic
import React, { Component } from 'react'
import PropTypes from 'prop-types'
import { firebaseConnect } from 'react-redux-firebase'
const Example = ({ firebase: { update } }) => (
<button onClick={() => update('some/path', { here: 'is a value' })}>
Update To Firebase
</button>
)
export default firebaseConnect()(Example)
Returns Promise Containing reference snapshot
Updates data on Firebase along with meta. Warning using this function may have unintented consequences (setting createdAt even if data already exists)
Parameters
path
String Path to location on Firebase which to updatevalue
(Object | String | Boolean | Number) Value to update to FirebaseonComplete
Function Function to run on complete (not required
)
Returns Promise Containing reference snapshot
Removes data from Firebase at a given path. NOTE A
seperate action is not dispatched unless dispatchRemoveAction: true
is
provided to config on store creation. That means that a listener must
be attached in order for state to be updated when calling remove.
Parameters
path
String Path to location on Firebase which to removeonComplete
Function Function to run on complete (not required
)options
Examples
Basic
import React, { Component } from 'react'
import PropTypes from 'prop-types'
import { firebaseConnect } from 'react-redux-firebase'
const Example = ({ firebase: { remove } }) => (
<button onClick={() => remove('some/path')}>
Remove From Firebase
</button>
)
export default firebaseConnect()(Example)
Returns Promise Containing reference snapshot
Sets data to Firebase only if the path does not already exist, otherwise it rejects. Internally uses a Firebase transaction to prevent a race condition between seperate clients calling uniqueSet.
Parameters
path
String Path to location on Firebase which to setvalue
(Object | String | Boolean | Number) Value to write to FirebaseonComplete
Function Function to run on complete (not required
)
Examples
Basic
import React, { Component } from 'react'
import PropTypes from 'prop-types'
import { firebaseConnect } from 'react-redux-firebase'
const Example = ({ firebase: { uniqueSet } }) => (
<button onClick={() => uniqueSet('some/unique/path', true)}>
Unique Set To Firebase
</button>
)
export default firebaseConnect()(Example)
Returns Promise Containing reference snapshot
Upload a file to Firebase Storage with the option to store its metadata in Firebase Database
Parameters
path
String Path to location on Firebase which to setfile
File File object to upload (usually first element from array output of select-file or a drag/droponDrop
)dbPath
String Database path to place uploaded file metadataoptions
Object Optionsoptions.name
String Name of the file
Returns Promise Containing the File object
Upload multiple files to Firebase Storage with the option to store their metadata in Firebase Database
Parameters
path
String Path to location on Firebase which to setfiles
Array Array of File objects to upload (usually from a select-file or a drag/droponDrop
)dbPath
String Database path to place uploaded files metadata.options
Object Optionsoptions.name
String Name of the file
Returns Promise Containing an array of File objects
Delete a file from Firebase Storage with the option to remove its metadata in Firebase Database
Parameters
path
String Path to location on Firebase which to setdbPath
String Database path to place uploaded file metadata
Returns Promise Containing the File object
Watch event. Note: this method is used internally so examples have not yet been created, and it may not work as expected.
Parameters
type
String Type of watch eventpath
String Path to location on Firebase which to set listenerstoreAs
String Name of listener results within redux storeoptions
Object Event options object (optional, default{}
)
Returns Promise
Unset a listener watch event. Note: this method is used internally so examples have not yet been created, and it may not work as expected.
Parameters
type
String Type of watch eventpath
String Path to location on Firebase which to unset listenerqueryId
String Id of the listeneroptions
Object Event options object (optional, default{}
)
Returns Promise
Similar to the firebaseConnect Higher Order Component but
presented as a function (not a React Component). Useful for populating
your redux state without React, e.g., for server side rendering. Only
once
type should be used as other query types such as value
do not
return a Promise.
Parameters
watchArray
Array Array of objects or strings for paths to sync from Firebase. Can also be a function that returns the array. The function is passed the props object specified as the next parameter.options
Object The options object that you would like to pass to your watchArray generating function.
Returns Promise
Logs user into Firebase. For examples, visit the auth section
Parameters
credentials
Object Credentials for authenticatingcredentials.provider
String External provider (google | facebook | twitter)credentials.type
String Type of external authentication (popup | redirect) (only used with provider)credentials.email
String Credentials for authenticatingcredentials.password
String Credentials for authenticating (only used with email)
Returns Promise Containing user's auth data
Logs user out of Firebase and empties firebase state from redux store
Returns Promise
Creates a new user in Firebase authentication. If
userProfile
config option is set, user profiles will be set to this
location.
Parameters
credentials
Object Credentials for authenticatingprofile
Object Data to include within new user profile
Returns Promise Containing user's auth data
Sends password reset email
Parameters
credentials
Object Credentials for authenticatingcredentials.email
String Credentials for authenticating
Returns Promise
Confirm that a user's password has been reset
Parameters
Returns Promise
Verify that a password reset code from a password reset email is valid
Parameters
code
String Password reset code to verify
Returns Promise Containing user auth info
Update user profile on Firebase Real Time Database or
Firestore (if useFirestoreForProfile: true
config passed to
reactReduxFirebase). Real Time Database update uses update
method
internally while updating profile on Firestore uses set
with
Parameters
profileUpdate
Object Profile data to place in new profileoptions
Object Options object (used to change how profile update occurs)options.useSet
Boolean Use set with merge instead of update. Setting tofalse
uses update (can cause issue of profile document does not exist). Note: Only used when updating profile on Firestore (optional, defaulttrue
)options.merge
Boolean Whether or not to use merge when setting profile. Note: Only used when updating profile on Firestore (optional, defaulttrue
)
Returns Promise
Update Auth Object
Parameters
Returns Promise
Update user's email
Parameters
Returns Promise
Reload user's auth object. Must be authenticated.
Returns Promise
Links the user account with the given credentials.
Parameters
credential
firebase.auth.AuthCredential The auth credential
Returns Promise
Asynchronously signs in using a phone number. This method
sends a code via SMS to the given phone number, and returns a modified
firebase.auth.ConfirmationResult. The confirm
method
authenticates and does profile handling.
Parameters
credential
firebase.auth.ConfirmationResult The auth credential
Returns Promise
Firebase ref function
Returns firebase.database.Reference
Firebase database service instance including all Firebase storage methods
Returns firebase.database.Database Firebase database service
Firebase storage service instance including all Firebase storage methods
Returns firebase.database.Storage Firebase storage service
Firebase auth service instance including all Firebase auth methods
Returns firebase.database.Auth