This fork contains some important changes that to be frank you probably need if you want to build serious applications with Firebase and React (which you should by the way, the combination is incredible).
I have not paid great detail to cleanly designing these APIs yet so don't consider them stable at this point. They are very likely to evolve, sometimes quite drastically.
Calls to any of the "bind" or "unbind" methods are idempotent. If the binding is the same then nothing will happen, if the binding is different then the old one will be unbound and a new one will be create. Exceptions will not be thrown in these circumstances. Idempotency is an important trait of readable and robust code. In particular this is important if you're going to use react router and have navigation within the same React component, in this case it's likely you would want to change existing bindings.
rebind() {
this.bindAsObject(firebaseRoot.child('foo').child(this.props.params.foo), 'foo');
}
componentWillMount() {
this.rebind();
}
componentDidUpdate() {
this.rebind();
}In your render method you can check if your bindings have been loaded yet. This is also useful for server side rendering.
render() {
// You can check if all the bindings have been loaded.
if (!this.areAllBindingsLoaded()) {
return <div>Loading...</div>;
}
// ...or you can check if individual bindings are (this is less useful(.
if (!this.isBindingLoaded('foo')) {
return <div>Loading...</div>;
}
return <div>{foo.name}</div>
}In your render method you can check if your bindings have been loaded:
render() {
if (!this.areAllBindingsLoaded()) {
return <div>Loading...</div>;
}
if (!this.isBindingLoaded('foo')) {
return <div>Loading...</div>;
}
}You can have a error reporting callback on the entire component by overriding firebaseDidCancel. Errors are also always logged to the console instead of being swallowed.
firebaseDidCancel(error) {
this.setState({error: error});
}If you have a really large array your render method is going to be called for each element. Render methods and virtual DOM diffing is fast in React but not this fast.
You don't need to write any code for this to happen, it just works out of the box.
Sometimes you need to post-process a binding before it's usable in e.g. your render() method. You can do this in the render() method but if the post-processing is expensive it will make your it slow. In this case you can use bindAsTransform which works like bindAsDataSnapshot and also takes a function, when the data is loaded or changes the DataSnapshot is run through the function and the result is stored in the binding. The result is cached so that the render() method can do as little work as possible.
bindAsTransform(firebaseRef, 'data',
dataSnapshot => {
// extract some interesting data from the dataSnapshot here.
return data;
}
);Original documentation follows...
ReactJS is a framework for building large, complex user
interfaces. Firebase complements it perfectly
by providing an easy-to-use, realtime data source for populating the state of React components.
With ReactFire, it only
takes a few lines of JavaScript to integrate Firebase data into React apps via the ReactFireMixin.
Read through our documentation on using Firebase with React and check out our live Todo app demo to get started!
In order to use ReactFire in your project, you need to include the following files in your HTML:
<!-- React -->
<script src="https://fb.me/react-0.14.7.min.js"></script>
<script src="https://fb.me/react-dom-0.14.7.min.js"></script>
<!-- Firebase -->
<script src="https://cdn.firebase.com/js/client/2.4.0/firebase.js"></script>
<!-- ReactFire -->
<script src="https://cdn.firebase.com/libs/reactfire/0.6.0/reactfire.min.js"></script>Use the URL above to download both the minified and non-minified versions of ReactFire from the Firebase CDN. You can also download them from the releases page of this GitHub repository. Firebase and React can be downloaded directly from their respective websites.
You can also install ReactFire via npm or Bower. If downloading via npm, you will have to install
React and Firebase separately (that is, they are peerDependencies):
$ npm install reactfire react firebase --saveOn Bower, the React and Firebase dependencies will be downloaded automatically:
$ bower install reactfire --saveReactFire requires Firebase in order to store data. You can sign up here for a free account.
To use the ReactFireMixin in a React component, add it to the component's mixins property:
var ExampleComponent = React.createClass({
mixins: [ReactFireMixin],
...
});The ReactFire APIs will then be available from the this object inside of ExampleComponent.
The ReactFire quickstart is a great place to get started. There is a walkthrough on how to create the Todo app demo in the ReactFire guide. Finally, there is a full API reference as well.
If you'd like to contribute to ReactFire, you'll need to run the following commands to get your environment set up:
$ git clone https://github.com/firebase/reactfire.git
$ cd reactfire # go to the reactfire directory
$ npm install -g gulp # globally install gulp task runner
$ npm install -g bower # globally install Bower package manager
$ npm install # install local npm build / test dependencies
$ bower install # install local JavaScript dependencies
$ gulp watch # watch for source file changesgulp watch will watch for changes in the /src/ directory and lint, concatenate, and minify the
source files when a change occurs. The output files - reactfire.js and reactfire.min.js - are
written to the /dist/ directory.
You can run the test suite by navigating to file:///path/to/reactfire/tests/index.html or via the
command line using gulp test.