mirror of
https://github.com/zhigang1992/reactfire.git
synced 2026-06-11 00:09:22 +08:00
2.9 KiB
2.9 KiB
Reactfire
Hooks, Context Providers, and Components that make it easy to interact with Firebase.
!!! If you're looking for docs for the deprecated ReactFire v1 (the one that uses mixins), click here
What is ReactFire?
- Easy realtime updates for your function components - Reactfire's hooks, like
useFirestoreCollectionanduseUser, let you easily subscribe to events, and automatically unsubscribe when your component unmounts. - Loading states handled by
<Suspense>- Reactfire's hooks throw promises that Suspense can catch. No moreisLoaded ?...- let React handle it for you. - Dead-simple Real User Monitoring (RUM) - Easily enable Firebase Performance Monitoring's automatic traces, and instrument your Suspenseful loads with Reactfire's
<SuspenseWithPerf>component
Status: Beta
Install
# npm
npm install reactfire
# yarn
yarn add reactfire
Example use
Check out the live version on StackBlitz!
import React, { Component } from 'react';
import { render } from 'react-dom';
import './style.css';
import {
FirebaseAppProvider,
useFirestoreDoc,
useFirebaseApp,
SuspenseWithPerf
} from 'reactfire';
import 'firebase/performance';
import 'firebase/firestore';
const firebaseConfig = {
/* add your config object from the Firebase console */
};
function Burrito() {
// create a ref
const firebaseApp = useFirebaseApp();
const burritoRef = firebaseApp
.firestore()
.collection('tryreactfire')
.doc('burrito');
// subscribe to the doc. just one line!
// throws a Promise for Suspense to catch,
// and then streams live updates
const burritoDoc = useFirestoreDoc(burritoRef);
// get the value from the doc
const isYummy = burritoDoc.data().yummy;
return <p>The burrito is {isYummy ? 'good' : 'bad'}!</p>;
}
function App() {
return (
<FirebaseAppProvider firebaseConfig={firebaseConfig} initPerformance>
<h1>🌯</h1>
<SuspenseWithPerf
fallback={'loading burrito status...'}
traceId={'load-burrito-status'}
>
<Burrito />
</SuspenseWithPerf>
</FirebaseAppProvider>
);
}
render(<App />, document.getElementById('root'));
Learn More
Contributing
For development
yarn installcdinto the reactfire/reactfire directory. runyarn run watch.- In a new terminal,
cdinto the reactfire/sample-simple directory. runyarn start. - Head over to https://localhost:3000 to see the running sample
Testing
cdinto the reactfire/reactfire directory- run
yarn test