Redux bindings for Firebase. Includes Higher Order Component (HOC) for use with React.
The Material Example is deployed to demo.react-redux-firebase.com.
- Integrated into redux
- Support for updating and nested props
- Population capability (similar to mongoose's
populate
or SQL'sJOIN
) - Out of the box support for authentication (with auto load user profile)
- Firebase Storage Support
- Support small data ( using
value
) or large datasets ( usingchild_added
,child_removed
,child_changed
) - queries support (
orderByChild
,orderByKey
,orderByValue
,orderByPriority
,limitToLast
,limitToFirst
,startAt
,endAt
,equalTo
right now ) - Automatic binding/unbinding
- Declarative decorator syntax for React components
- Tons of integrations including
redux-thunk
andredux-observable
- Action Types and other Constants exported for external use (such as in
redux-observable
) - Firebase v3+ support
- Server Side Rendering Support
react-native
support using native modules or web sdk
npm install --save react-redux-firebase
The above install command will install the @latest
tag. You may also use the following tags when installing to get different versions:
@canary
- Most possible up to date code. Currently, points to active progress withv2.0.0-*
pre-releases. Warning: Syntax is different than current stable version.
Be aware of changes when using a version that is not tagged @latest
. Please report any issues you encounter, and try to keep an eye on the releases page for updates.
Note: If you are just starting a new project, you may want to use v2.0.0
since it has an even easier syntax. For clarity on the transition, view the v1
-> v2
migration guide
Include reactReduxFirebase
in your store compose function and firebaseStateReducer
in your reducers:
import { createStore, combineReducers, compose } from 'redux'
import { reactReduxFirebase, firebaseStateReducer } from 'react-redux-firebase'
const firebaseConfig = {
apiKey: '<your-api-key>',
authDomain: '<your-auth-domain>',
databaseURL: '<your-database-url>',
storageBucket: '<your-storage-bucket>'
}
const reduxFirebaseConfig = { userProfile: 'users' }
// Add redux Firebase to compose
const createStoreWithFirebase = compose(
reactReduxFirebase(firebaseConfig, reduxFirebaseConfig),
)(createStore)
// Add Firebase to reducers
const rootReducer = combineReducers({
firebase: firebaseStateReducer
})
// Create store with reducers and initial state
const initialState = {}
const store = createStoreWithFirebase(rootReducer, initialState)
In components:
import React, { Component } from 'react'
import PropTypes from 'prop-types' // can also come from react if react <= 15.4.0
import { connect } from 'react-redux'
import { compose } from 'redux'
import {
firebaseConnect,
isLoaded,
isEmpty,
dataToJS,
pathToJS
} from 'react-redux-firebase'
class Todos extends Component {
static propTypes = {
todos: PropTypes.object,
auth: PropTypes.object,
firebase: PropTypes.object
}
addTodo = () => {
const { newTodo } = this.refs
return this.props.firebase
.push('/todos', { text: newTodo.value, done: false })
.then(() => {
newTodo.value = ''
console.log('Todo Created!')
})
.catch((err) => {
console.log('Error creating todo:', err) // error is also set to state.firebase.authError
})
}
render() {
const { todos } = this.props;
// Build Todos list if todos exist and are loaded
const todosList = !isLoaded(todos)
? 'Loading'
: isEmpty(todos)
? 'Todo list is empty'
: Object.keys(todos).map(
(key, id) => (
<TodoItem key={key} id={id} todo={todos[key]}/>
)
)
return (
<div>
<h1>Todos</h1>
<ul>
{todosList}
</ul>
<input type="text" ref="newTodo" />
<button onClick={this.handleAdd}>
Add
</button>
</div>
)
}
}
export default compose(
firebaseConnect([
'todos' // { path: 'todos' } // object notation
]),
connect(
(state) => ({
todos: dataToJS(state.firebase, 'todos'), // in v2 todos: state.firebase.data.todos
auth: pathToJS(state.firebase, 'auth') // in v2 todos: state.firebase.auth
})
)
)(Todos)
Alternatively, if you choose to use decorators:
@firebaseConnect([
'todos' // { path: 'todos' } // object notation
])
@connect(
({ firebase }) => ({
todos: dataToJS(firebase, 'todos'), // in v2 todos: firebase.data.todos
auth: pathToJS(firebase, 'auth') // in v2 todos: firebase.auth
})
)
export default class Todos extends Component {
}
Though they are optional, it is highly recommended that you use decorators with this library. The Simple Example shows implementation without decorators, while the Decorators Example shows the same application with decorators implemented.
A side by side comparison using react-redux's connect
function/HOC is the best way to illustrate the difference:
class SomeComponent extends Component {
}
export default connect()(SomeComponent)
vs.
@connect()
export default class SomeComponent extends Component {
}
To enable this functionality, you will most likely need to install a plugin (depending on your build setup). For Webpack and Babel, you will need to make sure you have installed and enabled babel-plugin-transform-decorators-legacy by doing the following:
- run
npm i --save-dev babel-plugin-transform-decorators-legacy
- Add the following line to your
.babelrc
:
{
"plugins": ["transform-decorators-legacy"]
}
See full documentation at react-redux-firebase.com
Examples folder is broken into two categories complete and snippets. /complete
contains full applications that can be run as is, while /snippets
contains small amounts of code to show functionality (dev tools and deps not included).
Snippet showing querying based on data in redux state. One of the most common examples of this is querying based on the current users auth UID.
Snippet showing how to use decorators to simplify connect functions (redux's connect
and react-redux-firebase's firebaseConnect
)
A simple example that was created using create-react-app's. Shows a list of todo items and allows you to add to them.
An example that user Material UI built on top of the output of create-react-app's eject command. Shows a list of todo items and allows you to add to them. This is what is deployed to redux-firebasev3.firebaseapp.com.
Join us on the redux-firebase gitter.
View docs for recipes on integrations with:
- redux-thunk
- redux-observable
- redux-saga
- redux-form
- redux-auth-wrapper
- redux-persist - improved integration with
v2.0.0
- react-native
- react-native-firebase - requires
v2.0.0
generator-react-firebase is a yeoman generator uses react-redux-firebase when opting to include redux.
The examples folder contains full applications that can be copied/adapted and used as a new project.
-
How is this different than
redux-react-firebase
?This library was actually originally forked from redux-react-firebase, but adds extended functionality such as:
- populate functionality (similar to mongoose's
populate
or SQL'sJOIN
) react-native
support (web/js or native modules throughreact-native-firebase
)- tons of integrations
profileFactory
- change format of profile stored on FirebasegetFirebase
- access to firebase instance that fires actions when methods are called- access to firebase's
storage
andmessaging
services uniqueSet
method helper for only setting if location doesn't already exist- Object or String notation for paths (
[{ path: '/todos' }]
equivalent to['/todos']
) - Action Types and other Constants are exposed for external usage (such as with
redux-observable
) - Server Side Rendering Support
- Complete Firebase Auth Integration including
signInWithRedirect
compatibility for OAuth Providers
I have been talking to the author of redux-react-firebase about combining, but we are not sure that the users of both want that at this point. Join us on the redux-firebase gitter if you haven't already since a ton of this type of discussion goes on there.
What about redux-firebase?
The author of redux-firebase has agreed to share the npm namespace! Currently the plan is to take the framework agnostic redux core logic of
react-redux-firebase
and place it intoredux-firebase
). Eventuallyreact-redux-firebase
and potentially other framework libraries can depend on that core (the newredux-firebase
). - populate functionality (similar to mongoose's
-
Why use redux if I have Firebase to store state?
This isn't a super quick answer, so I wrote up a medium article to explain
-
Where can I find some examples?
- Recipes Section of the docs
- examples folder contains complete example apps as well as useful snippets
-
How does
connect
relate tofirebaseConnect
? -
How do I help?
- Join the conversion on gitter
- Post Issues
- Create Pull Requests
This project exists thanks to all the people who contribute.
Thank you to all our backers! 🙏