A set of reusable React Hooks for Firebase.
Hooks are a new feature that lets you use state and other React features without writing a class and are available in React v16.8.0 or later.
Official support for Hooks will be added to React Native in v0.59.0 - as soon as it's released, we'll make sure that React Firebase Hooks works with both the Firebase JS SDK and React Native Firebase.
React Firebase Hooks requires React 16.8.0 or later and Firebase v5.0.0 or later.
npm install --save react-firebase-hooks
This assumes that you’re using the npm package manager with a module bundler like Webpack or Browserify to consume CommonJS modules.
There has been a lot of hype around React Hooks, but this hype merely reflects that there are obvious real world benefits of Hooks to React developers everywhere.
This library explores how React Hooks can work to make integration with Firebase even more straightforward than it already is. It takes inspiration for naming from RxFire and is based on an internal library that we had been using in a number of apps prior to the release of React Hooks. The implementation with hooks is 10x simpler than our previous implementation.
React Firebase Hooks provides a convenience listener for Firebase Auth's auth state. The hook wraps around the firebase.auth().onAuthStateChange()
method to ensure that it is always up to date.
Parameters:
auth
:firebase.auth.Auth
Returns:
AuthStateHook
containing:
initialising
: If the listener is still waiting for the user to be loadeduser
: Thefirebase.User
, ornull
, if no user is logged in
Example:
import { useAuthState } from 'react-firebase-hooks/auth';
const CurrentUser = () => {
const { initialising, user } = useAuthState(firebase.auth());
const login = () => {
firebase.auth().signInWithEmailAndPassword('test@test.com', 'password');
};
const logout = () => {
firebase.auth().signOut();
};
if (initialising) {
return (
<div>
<p>Initialising User...</p>
</div>
);
}
if (user) {
return (
<div>
<p>Current User: {user.email}</p>
<button onClick={logout}>Log out</button>
</div>
);
}
return <button onClick={login}>Log in</button>;
};
React Firebase Hooks provides convenience listeners for Collections and Documents stored with
Cloud Firestore. The hooks wrap around the firebase.firestore.collection().onSnapshot()
and firebase.firestore().doc().onSnapshot()
methods.
In addition to returning the snapshot value, the hooks provide an error
and loading
property
to give a complete lifecycle for loading and listening to Cloud Firestore.
Parameters:
query
:firebase.firestore.Query
Returns:
CollectionHook
containing
error
: An optionalfirebase.FirebaseError
returned by Firebaseloading
: Aboolean
to indicate if the listener is still being loadedvalue
: Afirebase.firestore.QuerySnapshot
Example:
import { useCollection } from 'react-firebase-hooks/firestore';
const FirestoreCollection = () => {
const { error, loading, value } = useCollection(
firebase.firestore().collection('hooks')
);
return (
<div>
<p>
{error && <strong>Error: {error}</strong>}
{loading && <span>Collection: Loading...</span>}
{value && (
<span>
Collection:{' '}
{value.docs.map(doc => (
<React.Fragment key={doc.id}>
{JSON.stringify(doc.data())},{' '}
</React.Fragment>
))}
</span>
)}
</p>
</div>
);
};
Parameters:
docRef
:firebase.firestore.DocumentReference
Returns:
DocumentHook
containing
error
: An optionalfirebase.FirebaseError
returned by Firebaseloading
: Aboolean
to indicate if the listener is still being loadedvalue
: Afirebase.firestore.DocumentSnapshot
Example:
import { useDocument } from 'react-firebase-hooks/firestore';
const FirestoreDocument = () => {
const { error, loading, value } = useDocument(
firebase.firestore().doc('hooks/nBShXiRGFAhuiPfBaGpt')
);
return (
<div>
<p>
{error && <strong>Error: {error}</strong>}
{loading && <span>Document: Loading...</span>}
{value && <span>Document: {JSON.stringify(value.data())}</span>}
</p>
</div>
);
};
React Firebase Hooks provides convenience listeners for files stored within
Firebase Cloud Storage. The hooks wrap around the firebase.storage().ref().getDownloadURL()
method.
In addition to returning the download URL, the hooks provide an error
and loading
property
to give a complete lifecycle for loading from Cloud Storage.
Parameters:
ref
:firebase.storage.Reference
Returns:
DownloadURLHook
containing
error
: An optional error object returned by Firebaseloading
: Aboolean
to indicate if the download URL is still being loadedvalue
: The download URL
Example:
import { useDownloadURL } from 'react-firebase-hooks/storage';
const DownloadURL = () => {
const { error, loading, value } = useDownloadURL(
firebase.storage().ref('path/to/file')
);
return (
<div>
<p>
{error && <strong>Error: {error}</strong>}
{loading && <span>Download URL: Loading...</span>}
{!loading && value && (
<React.Fragment>
<span>Download URL: {value}</span>
</React.Fragment>
)}
</p>
</div>
);
};
React Firebase Hooks provides convenience listeners for lists and values stored within the
Firebase Realtime Database. The hooks wrap around the firebase.database().ref().on()
method.
In addition to returning the list or value, the hooks provide an error
and loading
property
to give a complete lifecycle for loading and listening to the Realtime Database.
Parameters:
ref
:firebase.database.Reference
Returns:
ListHook
containing
error
: An optional error object returned by Firebaseloading
: Aboolean
to indicate if the listener is still being loadedvalue
: A list offirebase.database.DataSnapshot
Example:
import { useList } from 'react-firebase-hooks/database';
const DatabaseList = () => {
const { error, loading, value } = useList(firebase.database().ref('list'));
return (
<div>
<p>
{error && <strong>Error: {error}</strong>}
{loading && <span>List: Loading...</span>}
{!loading && value && (
<React.Fragment>
<span>
List:{' '}
{value.map(v => (
<React.Fragment key={v.key}>{v.val()}, </React.Fragment>
))}
</span>
</React.Fragment>
)}
</p>
</div>
);
};
As above, but this hook returns a list of the DataSnapshot.key
values, rather than the the
DataSnapshot
s themselves.
Parameters:
ref
:firebase.database.Reference
Returns:
ListKeysHook
containing
error
: An optional error object returned by Firebaseloading
: Aboolean
to indicate if the listener is still being loadedvalue
: A list offirebase.database.DataSnapshot.key
values
Similar to useList
, but this hook returns a typed list of the DataSnapshot.val()
values, rather than the the
DataSnapshot
s themselves.
Parameters:
ref
:firebase.database.Reference
keyField
: (Optional) Name of field that should be populated with theDataSnapshot.key
property
Returns:
ListValsHook
containing
error
: An optional error object returned by Firebaseloading
: Aboolean
to indicate if the listener is still being loadedvalue
: A list offirebase.database.DataSnapshot.val()
values, combined with the optional key field
Parameters:
ref
:firebase.database.Reference
Returns:
ObjectHook
containing
error
: An optional error object returned by Firebaseloading
: Aboolean
to indicate if the listener is still being loadedvalue
: Afirebase.database.DataSnapshot
Example:
import { useObject } from 'react-firebase-hooks/database';
const DatabaseValue = () => {
const { error, loading, value } = useObject(firebase.database().ref('value'));
return (
<div>
<p>
{error && <strong>Error: {error}</strong>}
{loading && <span>Value: Loading...</span>}
{value && <span>Value: {value.val()}</span>}
</p>
</div>
);
};
As above, but this hook returns the typed contents of DataSnapshot.val()
rather than the
DataSnapshot
itself.
Parameters:
ref
:firebase.database.Reference
Returns:
ObjectValHook
containing
error
: An optional error object returned by Firebaseloading
: Aboolean
to indicate if the listener is still being loadedvalue
: The contents offirebase.database.DataSnapshot.val()
- See LICENSE