├── .gitbook └── assets │ ├── react-firebase-tutorial-auth-2-gif.gif │ ├── react-firebase-tutorial-auth-3-loading-gif.gif │ ├── react-firebase-tutorial-auth-4-error-handling-gif.gif │ ├── react-firebase-tutorial-fig (1).gif │ ├── react-firebase-tutorial-fig.gif │ ├── screen-shot-2018-08-20-at-2.04.01-pm.png │ ├── screen-shot-2018-08-20-at-2.22.20-pm.png │ ├── screen-shot-2018-08-20-at-4.45.59-pm.png │ └── screen-shot-2018-08-21-at-11.48.50-am.png ├── .gitignore ├── .opensource └── project.json ├── .vscode └── last.sql ├── README.md ├── modules ├── auth │ ├── .gitignore │ ├── README.md │ ├── __tests__ │ │ └── index.test.tsx │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ ├── demo │ │ │ ├── app.tsx │ │ │ ├── index.html │ │ │ └── index.js │ │ ├── index.tsx │ │ ├── initialize-firebase-app.ts │ │ └── types.ts │ ├── tsconfig.json │ └── yarn.lock ├── database │ ├── .gitignore │ ├── README.md │ ├── __tests__ │ │ ├── FirebaseDatabaseMutation.test.tsx │ │ ├── FirebaseDatabaseNode.test.tsx │ │ ├── FirebaseDatabaseTranasaction.test.tsx │ │ └── reducers.test.ts │ ├── cypress.json │ ├── cypress │ │ ├── fixtures │ │ │ └── example.json │ │ ├── integration │ │ │ └── database.test.js │ │ ├── plugins │ │ │ └── index.js │ │ └── support │ │ │ ├── commands.js │ │ │ └── index.js │ ├── doczrc.js │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ ├── Context.ts │ │ ├── components │ │ │ ├── FirebaseDatabaseMutation.tsx │ │ │ ├── FirebaseDatabaseNode.tsx │ │ │ ├── FirebaseDatabaseNodeLifeCycle.tsx │ │ │ ├── FirebaseDatabaseNodes.tsx │ │ │ ├── FirebaseDatabaseProvider.tsx │ │ │ └── FirebaseDatabaseTransaction.tsx │ │ ├── demo │ │ │ ├── app.tsx │ │ │ ├── index.html │ │ │ ├── index.tsx │ │ │ └── mui.min.css │ │ ├── docs │ │ │ ├── FirebaseDatabaseNode.mdx │ │ │ └── index.tsx │ │ ├── get-firebase-query.ts │ │ ├── index.tsx │ │ ├── initialize-firebase-app.ts │ │ ├── reducers.ts │ │ ├── test-cases │ │ │ ├── MutationExamplePush.tsx │ │ │ ├── MutationExampleUpdate.tsx │ │ │ ├── NodeExampleBasic.tsx │ │ │ └── TransactionExampleBasic.tsx │ │ ├── test-utils.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── tsconfig.json │ └── yarn.lock ├── firestore │ ├── .gitignore │ ├── README.md │ ├── __tests__ │ │ ├── components │ │ │ ├── FirestoreBatchedWrite.test.tsx │ │ │ ├── FirestoreCollection.test.tsx │ │ │ ├── FirestoreDocument.test.tsx │ │ │ └── FirestoreTransaction.test.tsx │ │ └── e2e │ │ │ └── App.test.tsx │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ ├── Context.ts │ │ ├── components │ │ │ ├── FirestoreBatchedWrite.tsx │ │ │ ├── FirestoreCollection.tsx │ │ │ ├── FirestoreCollectionContextConsumerWithLifecycle.tsx │ │ │ ├── FirestoreDocument.tsx │ │ │ ├── FirestoreDocumentContextConsumerWithLifecycle.tsx │ │ │ ├── FirestoreMutation.tsx │ │ │ ├── FirestoreProvider.tsx │ │ │ └── FirestoreTransaction.tsx │ │ ├── demo │ │ │ ├── AddToCollection.tsx │ │ │ ├── App.tsx │ │ │ ├── BatchedWrite.tsx │ │ │ ├── DeleteDocument.tsx │ │ │ ├── RenderInfiniteList.tsx │ │ │ ├── SetDocument.tsx │ │ │ ├── UpdateDocument.tsx │ │ │ ├── firestore-schema.js │ │ │ ├── index.html │ │ │ ├── index.tsx │ │ │ └── test-credentials.ts │ │ ├── get-firestore-query.ts │ │ ├── index.tsx │ │ ├── initialize-firebase-app.ts │ │ ├── state-reducer.ts │ │ ├── test-utils.ts │ │ └── types.ts │ ├── tsconfig.json │ └── yarn.lock ├── generate-firebase-data │ ├── .gitignore │ ├── README.md │ ├── example-schemas │ │ └── schema-one.js │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ ├── cli.ts │ │ ├── index.ts │ │ └── test.ts │ ├── tsconfig.json │ └── yarn.lock ├── generate-firestore-data │ ├── .gitignore │ ├── README.md │ ├── example-schemas │ │ └── schema-one.js │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ ├── cli.ts │ │ ├── index.ts │ │ └── test.ts │ ├── tsconfig.json │ └── yarn.lock ├── generate-json │ ├── .gitignore │ ├── README.md │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ ├── generate-data.test.ts.snap │ │ │ └── generate-json.test.ts.snap │ │ ├── generate-data.test.ts │ │ └── generate-json.test.ts │ ├── example-schemas-output │ │ ├── keys.json │ │ ├── tree.json │ │ └── values.json │ ├── example-schemas │ │ └── schema-one.js │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ ├── cli.ts │ │ ├── index.ts │ │ └── utils.ts │ ├── tsconfig.json │ └── yarn.lock ├── hooks │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── rollup.config.js │ ├── src │ │ ├── index.tsx │ │ └── types.ts │ ├── tsconfig.json │ └── yarn.lock ├── react-firebase-docs │ ├── .gitignore │ ├── docs │ │ ├── README.md │ │ ├── SUMMARY.md │ │ ├── assets │ │ │ ├── data-shape-in-firebase.png │ │ │ ├── react-firebase-tutorial-auth-2-gif.gif │ │ │ ├── react-firebase-tutorial-auth-3-loading-gif.gif │ │ │ ├── react-firebase-tutorial-auth-4-error-handling-gif.gif │ │ │ ├── react-firebase-tutorial-dumb-ui-gif.gif │ │ │ ├── react-firebase-tutorial-fig.gif │ │ │ ├── react-firebase-tutorial-result-gif.gif │ │ │ ├── user-input-ui.png │ │ │ ├── wireframe-authed-2.png │ │ │ ├── wireframe-authed.png │ │ │ ├── wireframe-unauthed-2.png │ │ │ ├── wireframe-unauthed-breakdown.png │ │ │ └── wireframe-unauthed.png │ │ ├── generate-firebase-data.md │ │ ├── generate-firestore-data.md │ │ ├── generate-json-data.md │ │ ├── generate-json-data │ │ │ ├── README.md │ │ │ ├── setup.md │ │ │ └── usage.md │ │ ├── guides │ │ │ ├── README.md │ │ │ └── build-a-react-app-with-firebase-auth-and-realtime-database │ │ │ │ ├── README.md │ │ │ │ ├── add-firebase.md │ │ │ │ ├── add-google-and-anonymous-auth.md │ │ │ │ ├── add-react-and-react-dom.md │ │ │ │ ├── implementing-the-ui.md │ │ │ │ ├── listen-to-auth.md │ │ │ │ ├── read-data.md │ │ │ │ ├── setup-the-development-environment.md │ │ │ │ └── write-data.md │ │ ├── react-firebase-auth │ │ │ ├── api.md │ │ │ └── getting-started.md │ │ ├── react-firebase-realtime-database │ │ │ ├── api.md │ │ │ └── getting-started.md │ │ ├── react-firestore-database │ │ │ ├── api.md │ │ │ └── getting-started.md │ │ ├── try-it-out.md │ │ └── view-source.md │ ├── now.json │ ├── package.json │ └── website │ │ ├── blog │ │ └── 2018-08-23-introducing-react-firebase.md │ │ ├── core │ │ └── Footer.js │ │ ├── package.json │ │ ├── pages │ │ └── en │ │ │ ├── help.js │ │ │ ├── index.js │ │ │ └── users.js │ │ ├── sidebars.json │ │ ├── siteConfig.js │ │ └── static │ │ ├── css │ │ └── custom.css │ │ └── img │ │ ├── docusaurus.svg │ │ ├── favicon.png │ │ ├── favicon │ │ └── favicon.ico │ │ ├── logo.png │ │ ├── logo.svg │ │ └── oss_logo.png ├── sandboxes │ ├── firebase-auth │ │ ├── .gitignore │ │ ├── config.ts │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ │ └── index.tsx │ │ ├── tsconfig.json │ │ └── yarn.lock │ ├── firebase-database-flatlist-infinite-list │ │ ├── config.js │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ │ └── index.js │ │ └── yarn.lock │ ├── firebase-database-infinite-list │ │ ├── .gitignore │ │ ├── config.ts │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ │ └── index.tsx │ │ ├── tsconfig.json │ │ └── yarn.lock │ ├── firebase-database-mutation │ │ ├── .gitignore │ │ ├── config.ts │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ │ └── index.tsx │ │ ├── tsconfig.json │ │ └── yarn.lock │ ├── firebase-database-transaction │ │ ├── .gitignore │ │ ├── config.ts │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ │ └── index.tsx │ │ ├── tsconfig.json │ │ └── yarn.lock │ ├── firestore-add-to-collection │ │ ├── .gitignore │ │ ├── config.ts │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ │ └── index.tsx │ │ ├── tsconfig.json │ │ └── yarn.lock │ ├── firestore-batched-write │ │ ├── .gitignore │ │ ├── config.ts │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ │ └── index.tsx │ │ ├── tsconfig.json │ │ └── yarn.lock │ ├── firestore-collection-example │ │ ├── .gitignore │ │ ├── config.ts │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ │ └── index.tsx │ │ ├── tsconfig.json │ │ └── yarn.lock │ ├── firestore-infinite-list │ │ ├── .gitignore │ │ ├── config.ts │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ │ └── index.tsx │ │ ├── tsconfig.json │ │ └── yarn.lock │ ├── firestore-mutation-example │ │ ├── .gitignore │ │ ├── config.ts │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ │ └── index.tsx │ │ ├── tsconfig.json │ │ └── yarn.lock │ └── firestore-transaction │ │ ├── .gitignore │ │ ├── config.ts │ │ ├── index.html │ │ ├── package.json │ │ ├── src │ │ └── index.tsx │ │ ├── tsconfig.json │ │ └── yarn.lock └── tutorial-bookmarking-app │ ├── .gitignore │ ├── package.json │ ├── src │ ├── AutoComplete.tsx │ ├── index.html │ ├── index.tsx │ └── test-credentials.ts │ ├── tsconfig.json │ └── yarn.lock ├── package.json ├── react-firebase.code-workspace ├── react-native-examples ├── react-native-expo-firebase-example │ ├── .babelrc │ ├── .gitignore │ ├── .watchmanconfig │ ├── App.js │ ├── App.test.js │ ├── README.md │ ├── app.json │ ├── package.json │ ├── test-credentials.js │ └── yarn.lock └── react-native-firebase-starter │ ├── .babelrc │ ├── .buckconfig │ ├── .editorconfig │ ├── .flowconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .opensource │ └── project.json │ ├── .watchmanconfig │ ├── App.js │ ├── App.test.js │ ├── LICENSE │ ├── README.md │ ├── android │ ├── .editorconfig │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── reactfirebase │ │ │ │ └── reactfirebaseexample │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── keystores │ │ ├── BUCK │ │ └── debug.keystore.properties │ └── settings.gradle │ ├── app.json │ ├── assets │ └── RNFirebase.png │ ├── bin │ └── rename.js │ ├── index.js │ ├── ios │ ├── GoogleService-Info.plist │ ├── Podfile │ ├── Podfile.lock │ ├── reactfirebaseexample-tvOS │ │ └── Info.plist │ ├── reactfirebaseexample-tvOSTests │ │ └── Info.plist │ ├── reactfirebaseexample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── reactfirebaseexample-tvOS.xcscheme │ │ │ └── reactfirebaseexample.xcscheme │ ├── reactfirebaseexample.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── reactfirebaseexample │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── reactfirebaseexampleTests │ │ ├── Info.plist │ │ └── reactfirebaseexampleTests.m │ ├── package-lock.json │ ├── package.json │ └── yarn.lock └── yarn.lock /.gitbook/assets/react-firebase-tutorial-auth-2-gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/.gitbook/assets/react-firebase-tutorial-auth-2-gif.gif -------------------------------------------------------------------------------- /.gitbook/assets/react-firebase-tutorial-auth-3-loading-gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/.gitbook/assets/react-firebase-tutorial-auth-3-loading-gif.gif -------------------------------------------------------------------------------- /.gitbook/assets/react-firebase-tutorial-auth-4-error-handling-gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/.gitbook/assets/react-firebase-tutorial-auth-4-error-handling-gif.gif -------------------------------------------------------------------------------- /.gitbook/assets/react-firebase-tutorial-fig (1).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/.gitbook/assets/react-firebase-tutorial-fig (1).gif -------------------------------------------------------------------------------- /.gitbook/assets/react-firebase-tutorial-fig.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/.gitbook/assets/react-firebase-tutorial-fig.gif -------------------------------------------------------------------------------- /.gitbook/assets/screen-shot-2018-08-20-at-2.04.01-pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/.gitbook/assets/screen-shot-2018-08-20-at-2.04.01-pm.png -------------------------------------------------------------------------------- /.gitbook/assets/screen-shot-2018-08-20-at-2.22.20-pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/.gitbook/assets/screen-shot-2018-08-20-at-2.22.20-pm.png -------------------------------------------------------------------------------- /.gitbook/assets/screen-shot-2018-08-20-at-4.45.59-pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/.gitbook/assets/screen-shot-2018-08-20-at-4.45.59-pm.png -------------------------------------------------------------------------------- /.gitbook/assets/screen-shot-2018-08-21-at-11.48.50-am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/.gitbook/assets/screen-shot-2018-08-21-at-11.48.50-am.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/.gitignore -------------------------------------------------------------------------------- /.opensource/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/.opensource/project.json -------------------------------------------------------------------------------- /.vscode/last.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/README.md -------------------------------------------------------------------------------- /modules/auth/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/auth/.gitignore -------------------------------------------------------------------------------- /modules/auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/auth/README.md -------------------------------------------------------------------------------- /modules/auth/__tests__/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/auth/__tests__/index.test.tsx -------------------------------------------------------------------------------- /modules/auth/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/auth/package.json -------------------------------------------------------------------------------- /modules/auth/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/auth/rollup.config.js -------------------------------------------------------------------------------- /modules/auth/src/demo/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/auth/src/demo/app.tsx -------------------------------------------------------------------------------- /modules/auth/src/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/auth/src/demo/index.html -------------------------------------------------------------------------------- /modules/auth/src/demo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/auth/src/demo/index.js -------------------------------------------------------------------------------- /modules/auth/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/auth/src/index.tsx -------------------------------------------------------------------------------- /modules/auth/src/initialize-firebase-app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/auth/src/initialize-firebase-app.ts -------------------------------------------------------------------------------- /modules/auth/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/auth/src/types.ts -------------------------------------------------------------------------------- /modules/auth/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/auth/tsconfig.json -------------------------------------------------------------------------------- /modules/auth/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/auth/yarn.lock -------------------------------------------------------------------------------- /modules/database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/.gitignore -------------------------------------------------------------------------------- /modules/database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/README.md -------------------------------------------------------------------------------- /modules/database/__tests__/FirebaseDatabaseMutation.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/__tests__/FirebaseDatabaseMutation.test.tsx -------------------------------------------------------------------------------- /modules/database/__tests__/FirebaseDatabaseNode.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/__tests__/FirebaseDatabaseNode.test.tsx -------------------------------------------------------------------------------- /modules/database/__tests__/FirebaseDatabaseTranasaction.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/__tests__/FirebaseDatabaseTranasaction.test.tsx -------------------------------------------------------------------------------- /modules/database/__tests__/reducers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/__tests__/reducers.test.ts -------------------------------------------------------------------------------- /modules/database/cypress.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /modules/database/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/cypress/fixtures/example.json -------------------------------------------------------------------------------- /modules/database/cypress/integration/database.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/cypress/integration/database.test.js -------------------------------------------------------------------------------- /modules/database/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/cypress/plugins/index.js -------------------------------------------------------------------------------- /modules/database/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/cypress/support/commands.js -------------------------------------------------------------------------------- /modules/database/cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/cypress/support/index.js -------------------------------------------------------------------------------- /modules/database/doczrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/doczrc.js -------------------------------------------------------------------------------- /modules/database/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/package.json -------------------------------------------------------------------------------- /modules/database/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/rollup.config.js -------------------------------------------------------------------------------- /modules/database/src/Context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/src/Context.ts -------------------------------------------------------------------------------- /modules/database/src/components/FirebaseDatabaseMutation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/src/components/FirebaseDatabaseMutation.tsx -------------------------------------------------------------------------------- /modules/database/src/components/FirebaseDatabaseNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/src/components/FirebaseDatabaseNode.tsx -------------------------------------------------------------------------------- /modules/database/src/components/FirebaseDatabaseNodeLifeCycle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/src/components/FirebaseDatabaseNodeLifeCycle.tsx -------------------------------------------------------------------------------- /modules/database/src/components/FirebaseDatabaseNodes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/src/components/FirebaseDatabaseNodes.tsx -------------------------------------------------------------------------------- /modules/database/src/components/FirebaseDatabaseProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/src/components/FirebaseDatabaseProvider.tsx -------------------------------------------------------------------------------- /modules/database/src/components/FirebaseDatabaseTransaction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/src/components/FirebaseDatabaseTransaction.tsx -------------------------------------------------------------------------------- /modules/database/src/demo/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/src/demo/app.tsx -------------------------------------------------------------------------------- /modules/database/src/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/src/demo/index.html -------------------------------------------------------------------------------- /modules/database/src/demo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/src/demo/index.tsx -------------------------------------------------------------------------------- /modules/database/src/demo/mui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/src/demo/mui.min.css -------------------------------------------------------------------------------- /modules/database/src/docs/FirebaseDatabaseNode.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/src/docs/FirebaseDatabaseNode.mdx -------------------------------------------------------------------------------- /modules/database/src/docs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/src/docs/index.tsx -------------------------------------------------------------------------------- /modules/database/src/get-firebase-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/src/get-firebase-query.ts -------------------------------------------------------------------------------- /modules/database/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/src/index.tsx -------------------------------------------------------------------------------- /modules/database/src/initialize-firebase-app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/src/initialize-firebase-app.ts -------------------------------------------------------------------------------- /modules/database/src/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/src/reducers.ts -------------------------------------------------------------------------------- /modules/database/src/test-cases/MutationExamplePush.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/src/test-cases/MutationExamplePush.tsx -------------------------------------------------------------------------------- /modules/database/src/test-cases/MutationExampleUpdate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/src/test-cases/MutationExampleUpdate.tsx -------------------------------------------------------------------------------- /modules/database/src/test-cases/NodeExampleBasic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/src/test-cases/NodeExampleBasic.tsx -------------------------------------------------------------------------------- /modules/database/src/test-cases/TransactionExampleBasic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/src/test-cases/TransactionExampleBasic.tsx -------------------------------------------------------------------------------- /modules/database/src/test-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/src/test-utils.ts -------------------------------------------------------------------------------- /modules/database/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/src/types.ts -------------------------------------------------------------------------------- /modules/database/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/src/utils.ts -------------------------------------------------------------------------------- /modules/database/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/tsconfig.json -------------------------------------------------------------------------------- /modules/database/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/database/yarn.lock -------------------------------------------------------------------------------- /modules/firestore/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/firestore/.gitignore -------------------------------------------------------------------------------- /modules/firestore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/firestore/README.md -------------------------------------------------------------------------------- /modules/firestore/__tests__/components/FirestoreBatchedWrite.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/firestore/__tests__/components/FirestoreBatchedWrite.test.tsx -------------------------------------------------------------------------------- /modules/firestore/__tests__/components/FirestoreCollection.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/firestore/__tests__/components/FirestoreCollection.test.tsx -------------------------------------------------------------------------------- /modules/firestore/__tests__/components/FirestoreDocument.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/firestore/__tests__/components/FirestoreDocument.test.tsx -------------------------------------------------------------------------------- /modules/firestore/__tests__/components/FirestoreTransaction.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/firestore/__tests__/components/FirestoreTransaction.test.tsx -------------------------------------------------------------------------------- /modules/firestore/__tests__/e2e/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/firestore/__tests__/e2e/App.test.tsx -------------------------------------------------------------------------------- /modules/firestore/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/firestore/package.json -------------------------------------------------------------------------------- /modules/firestore/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/firestore/rollup.config.js -------------------------------------------------------------------------------- /modules/firestore/src/Context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/firestore/src/Context.ts -------------------------------------------------------------------------------- /modules/firestore/src/components/FirestoreBatchedWrite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/firestore/src/components/FirestoreBatchedWrite.tsx -------------------------------------------------------------------------------- /modules/firestore/src/components/FirestoreCollection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/firestore/src/components/FirestoreCollection.tsx -------------------------------------------------------------------------------- /modules/firestore/src/components/FirestoreCollectionContextConsumerWithLifecycle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/firestore/src/components/FirestoreCollectionContextConsumerWithLifecycle.tsx -------------------------------------------------------------------------------- /modules/firestore/src/components/FirestoreDocument.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/firestore/src/components/FirestoreDocument.tsx -------------------------------------------------------------------------------- /modules/firestore/src/components/FirestoreDocumentContextConsumerWithLifecycle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/firestore/src/components/FirestoreDocumentContextConsumerWithLifecycle.tsx -------------------------------------------------------------------------------- /modules/firestore/src/components/FirestoreMutation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/firestore/src/components/FirestoreMutation.tsx -------------------------------------------------------------------------------- /modules/firestore/src/components/FirestoreProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/firestore/src/components/FirestoreProvider.tsx -------------------------------------------------------------------------------- /modules/firestore/src/components/FirestoreTransaction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/firestore/src/components/FirestoreTransaction.tsx -------------------------------------------------------------------------------- /modules/firestore/src/demo/AddToCollection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/firestore/src/demo/AddToCollection.tsx -------------------------------------------------------------------------------- /modules/firestore/src/demo/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/firestore/src/demo/App.tsx -------------------------------------------------------------------------------- /modules/firestore/src/demo/BatchedWrite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/firestore/src/demo/BatchedWrite.tsx -------------------------------------------------------------------------------- /modules/firestore/src/demo/DeleteDocument.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/firestore/src/demo/DeleteDocument.tsx -------------------------------------------------------------------------------- /modules/firestore/src/demo/RenderInfiniteList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/firestore/src/demo/RenderInfiniteList.tsx -------------------------------------------------------------------------------- /modules/firestore/src/demo/SetDocument.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/firestore/src/demo/SetDocument.tsx -------------------------------------------------------------------------------- /modules/firestore/src/demo/UpdateDocument.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/firestore/src/demo/UpdateDocument.tsx -------------------------------------------------------------------------------- /modules/firestore/src/demo/firestore-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/firestore/src/demo/firestore-schema.js -------------------------------------------------------------------------------- /modules/firestore/src/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/firestore/src/demo/index.html -------------------------------------------------------------------------------- /modules/firestore/src/demo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/firestore/src/demo/index.tsx -------------------------------------------------------------------------------- /modules/firestore/src/demo/test-credentials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/firestore/src/demo/test-credentials.ts -------------------------------------------------------------------------------- /modules/firestore/src/get-firestore-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/firestore/src/get-firestore-query.ts -------------------------------------------------------------------------------- /modules/firestore/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/firestore/src/index.tsx -------------------------------------------------------------------------------- /modules/firestore/src/initialize-firebase-app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/firestore/src/initialize-firebase-app.ts -------------------------------------------------------------------------------- /modules/firestore/src/state-reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/firestore/src/state-reducer.ts -------------------------------------------------------------------------------- /modules/firestore/src/test-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/firestore/src/test-utils.ts -------------------------------------------------------------------------------- /modules/firestore/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/firestore/src/types.ts -------------------------------------------------------------------------------- /modules/firestore/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/firestore/tsconfig.json -------------------------------------------------------------------------------- /modules/firestore/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/firestore/yarn.lock -------------------------------------------------------------------------------- /modules/generate-firebase-data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/generate-firebase-data/.gitignore -------------------------------------------------------------------------------- /modules/generate-firebase-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/generate-firebase-data/README.md -------------------------------------------------------------------------------- /modules/generate-firebase-data/example-schemas/schema-one.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/generate-firebase-data/example-schemas/schema-one.js -------------------------------------------------------------------------------- /modules/generate-firebase-data/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/generate-firebase-data/package.json -------------------------------------------------------------------------------- /modules/generate-firebase-data/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/generate-firebase-data/rollup.config.js -------------------------------------------------------------------------------- /modules/generate-firebase-data/src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/generate-firebase-data/src/cli.ts -------------------------------------------------------------------------------- /modules/generate-firebase-data/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/generate-firebase-data/src/index.ts -------------------------------------------------------------------------------- /modules/generate-firebase-data/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/generate-firebase-data/src/test.ts -------------------------------------------------------------------------------- /modules/generate-firebase-data/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/generate-firebase-data/tsconfig.json -------------------------------------------------------------------------------- /modules/generate-firebase-data/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/generate-firebase-data/yarn.lock -------------------------------------------------------------------------------- /modules/generate-firestore-data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/generate-firestore-data/.gitignore -------------------------------------------------------------------------------- /modules/generate-firestore-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/generate-firestore-data/README.md -------------------------------------------------------------------------------- /modules/generate-firestore-data/example-schemas/schema-one.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/generate-firestore-data/example-schemas/schema-one.js -------------------------------------------------------------------------------- /modules/generate-firestore-data/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/generate-firestore-data/package.json -------------------------------------------------------------------------------- /modules/generate-firestore-data/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/generate-firestore-data/rollup.config.js -------------------------------------------------------------------------------- /modules/generate-firestore-data/src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/generate-firestore-data/src/cli.ts -------------------------------------------------------------------------------- /modules/generate-firestore-data/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/generate-firestore-data/src/index.ts -------------------------------------------------------------------------------- /modules/generate-firestore-data/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/generate-firestore-data/src/test.ts -------------------------------------------------------------------------------- /modules/generate-firestore-data/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/generate-firestore-data/tsconfig.json -------------------------------------------------------------------------------- /modules/generate-firestore-data/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/generate-firestore-data/yarn.lock -------------------------------------------------------------------------------- /modules/generate-json/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/generate-json/.gitignore -------------------------------------------------------------------------------- /modules/generate-json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/generate-json/README.md -------------------------------------------------------------------------------- /modules/generate-json/__tests__/__snapshots__/generate-data.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/generate-json/__tests__/__snapshots__/generate-data.test.ts.snap -------------------------------------------------------------------------------- /modules/generate-json/__tests__/__snapshots__/generate-json.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/generate-json/__tests__/__snapshots__/generate-json.test.ts.snap -------------------------------------------------------------------------------- /modules/generate-json/__tests__/generate-data.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/generate-json/__tests__/generate-data.test.ts -------------------------------------------------------------------------------- /modules/generate-json/__tests__/generate-json.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/generate-json/__tests__/generate-json.test.ts -------------------------------------------------------------------------------- /modules/generate-json/example-schemas-output/keys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/generate-json/example-schemas-output/keys.json -------------------------------------------------------------------------------- /modules/generate-json/example-schemas-output/tree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/generate-json/example-schemas-output/tree.json -------------------------------------------------------------------------------- /modules/generate-json/example-schemas-output/values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/generate-json/example-schemas-output/values.json -------------------------------------------------------------------------------- /modules/generate-json/example-schemas/schema-one.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/generate-json/example-schemas/schema-one.js -------------------------------------------------------------------------------- /modules/generate-json/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/generate-json/package.json -------------------------------------------------------------------------------- /modules/generate-json/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/generate-json/rollup.config.js -------------------------------------------------------------------------------- /modules/generate-json/src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/generate-json/src/cli.ts -------------------------------------------------------------------------------- /modules/generate-json/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/generate-json/src/index.ts -------------------------------------------------------------------------------- /modules/generate-json/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/generate-json/src/utils.ts -------------------------------------------------------------------------------- /modules/generate-json/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/generate-json/tsconfig.json -------------------------------------------------------------------------------- /modules/generate-json/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/generate-json/yarn.lock -------------------------------------------------------------------------------- /modules/hooks/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/hooks/.gitignore -------------------------------------------------------------------------------- /modules/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/hooks/README.md -------------------------------------------------------------------------------- /modules/hooks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/hooks/package.json -------------------------------------------------------------------------------- /modules/hooks/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/hooks/rollup.config.js -------------------------------------------------------------------------------- /modules/hooks/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/hooks/src/index.tsx -------------------------------------------------------------------------------- /modules/hooks/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/hooks/src/types.ts -------------------------------------------------------------------------------- /modules/hooks/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/hooks/tsconfig.json -------------------------------------------------------------------------------- /modules/hooks/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/hooks/yarn.lock -------------------------------------------------------------------------------- /modules/react-firebase-docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/.gitignore -------------------------------------------------------------------------------- /modules/react-firebase-docs/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/docs/README.md -------------------------------------------------------------------------------- /modules/react-firebase-docs/docs/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/docs/SUMMARY.md -------------------------------------------------------------------------------- /modules/react-firebase-docs/docs/assets/data-shape-in-firebase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/docs/assets/data-shape-in-firebase.png -------------------------------------------------------------------------------- /modules/react-firebase-docs/docs/assets/react-firebase-tutorial-auth-2-gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/docs/assets/react-firebase-tutorial-auth-2-gif.gif -------------------------------------------------------------------------------- /modules/react-firebase-docs/docs/assets/react-firebase-tutorial-auth-3-loading-gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/docs/assets/react-firebase-tutorial-auth-3-loading-gif.gif -------------------------------------------------------------------------------- /modules/react-firebase-docs/docs/assets/react-firebase-tutorial-auth-4-error-handling-gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/docs/assets/react-firebase-tutorial-auth-4-error-handling-gif.gif -------------------------------------------------------------------------------- /modules/react-firebase-docs/docs/assets/react-firebase-tutorial-dumb-ui-gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/docs/assets/react-firebase-tutorial-dumb-ui-gif.gif -------------------------------------------------------------------------------- /modules/react-firebase-docs/docs/assets/react-firebase-tutorial-fig.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/docs/assets/react-firebase-tutorial-fig.gif -------------------------------------------------------------------------------- /modules/react-firebase-docs/docs/assets/react-firebase-tutorial-result-gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/docs/assets/react-firebase-tutorial-result-gif.gif -------------------------------------------------------------------------------- /modules/react-firebase-docs/docs/assets/user-input-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/docs/assets/user-input-ui.png -------------------------------------------------------------------------------- /modules/react-firebase-docs/docs/assets/wireframe-authed-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/docs/assets/wireframe-authed-2.png -------------------------------------------------------------------------------- /modules/react-firebase-docs/docs/assets/wireframe-authed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/docs/assets/wireframe-authed.png -------------------------------------------------------------------------------- /modules/react-firebase-docs/docs/assets/wireframe-unauthed-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/docs/assets/wireframe-unauthed-2.png -------------------------------------------------------------------------------- /modules/react-firebase-docs/docs/assets/wireframe-unauthed-breakdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/docs/assets/wireframe-unauthed-breakdown.png -------------------------------------------------------------------------------- /modules/react-firebase-docs/docs/assets/wireframe-unauthed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/docs/assets/wireframe-unauthed.png -------------------------------------------------------------------------------- /modules/react-firebase-docs/docs/generate-firebase-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/docs/generate-firebase-data.md -------------------------------------------------------------------------------- /modules/react-firebase-docs/docs/generate-firestore-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/docs/generate-firestore-data.md -------------------------------------------------------------------------------- /modules/react-firebase-docs/docs/generate-json-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/docs/generate-json-data.md -------------------------------------------------------------------------------- /modules/react-firebase-docs/docs/generate-json-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/docs/generate-json-data/README.md -------------------------------------------------------------------------------- /modules/react-firebase-docs/docs/generate-json-data/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/docs/generate-json-data/setup.md -------------------------------------------------------------------------------- /modules/react-firebase-docs/docs/generate-json-data/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/docs/generate-json-data/usage.md -------------------------------------------------------------------------------- /modules/react-firebase-docs/docs/guides/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | # Guides 4 | 5 | -------------------------------------------------------------------------------- /modules/react-firebase-docs/docs/guides/build-a-react-app-with-firebase-auth-and-realtime-database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/docs/guides/build-a-react-app-with-firebase-auth-and-realtime-database/README.md -------------------------------------------------------------------------------- /modules/react-firebase-docs/docs/guides/build-a-react-app-with-firebase-auth-and-realtime-database/add-firebase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/docs/guides/build-a-react-app-with-firebase-auth-and-realtime-database/add-firebase.md -------------------------------------------------------------------------------- /modules/react-firebase-docs/docs/guides/build-a-react-app-with-firebase-auth-and-realtime-database/add-google-and-anonymous-auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/docs/guides/build-a-react-app-with-firebase-auth-and-realtime-database/add-google-and-anonymous-auth.md -------------------------------------------------------------------------------- /modules/react-firebase-docs/docs/guides/build-a-react-app-with-firebase-auth-and-realtime-database/add-react-and-react-dom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/docs/guides/build-a-react-app-with-firebase-auth-and-realtime-database/add-react-and-react-dom.md -------------------------------------------------------------------------------- /modules/react-firebase-docs/docs/guides/build-a-react-app-with-firebase-auth-and-realtime-database/implementing-the-ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/docs/guides/build-a-react-app-with-firebase-auth-and-realtime-database/implementing-the-ui.md -------------------------------------------------------------------------------- /modules/react-firebase-docs/docs/guides/build-a-react-app-with-firebase-auth-and-realtime-database/listen-to-auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/docs/guides/build-a-react-app-with-firebase-auth-and-realtime-database/listen-to-auth.md -------------------------------------------------------------------------------- /modules/react-firebase-docs/docs/guides/build-a-react-app-with-firebase-auth-and-realtime-database/read-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/docs/guides/build-a-react-app-with-firebase-auth-and-realtime-database/read-data.md -------------------------------------------------------------------------------- /modules/react-firebase-docs/docs/guides/build-a-react-app-with-firebase-auth-and-realtime-database/setup-the-development-environment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/docs/guides/build-a-react-app-with-firebase-auth-and-realtime-database/setup-the-development-environment.md -------------------------------------------------------------------------------- /modules/react-firebase-docs/docs/guides/build-a-react-app-with-firebase-auth-and-realtime-database/write-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/docs/guides/build-a-react-app-with-firebase-auth-and-realtime-database/write-data.md -------------------------------------------------------------------------------- /modules/react-firebase-docs/docs/react-firebase-auth/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/docs/react-firebase-auth/api.md -------------------------------------------------------------------------------- /modules/react-firebase-docs/docs/react-firebase-auth/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/docs/react-firebase-auth/getting-started.md -------------------------------------------------------------------------------- /modules/react-firebase-docs/docs/react-firebase-realtime-database/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/docs/react-firebase-realtime-database/api.md -------------------------------------------------------------------------------- /modules/react-firebase-docs/docs/react-firebase-realtime-database/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/docs/react-firebase-realtime-database/getting-started.md -------------------------------------------------------------------------------- /modules/react-firebase-docs/docs/react-firestore-database/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/docs/react-firestore-database/api.md -------------------------------------------------------------------------------- /modules/react-firebase-docs/docs/react-firestore-database/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/docs/react-firestore-database/getting-started.md -------------------------------------------------------------------------------- /modules/react-firebase-docs/docs/try-it-out.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/docs/try-it-out.md -------------------------------------------------------------------------------- /modules/react-firebase-docs/docs/view-source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/docs/view-source.md -------------------------------------------------------------------------------- /modules/react-firebase-docs/now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/now.json -------------------------------------------------------------------------------- /modules/react-firebase-docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/package.json -------------------------------------------------------------------------------- /modules/react-firebase-docs/website/blog/2018-08-23-introducing-react-firebase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/website/blog/2018-08-23-introducing-react-firebase.md -------------------------------------------------------------------------------- /modules/react-firebase-docs/website/core/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/website/core/Footer.js -------------------------------------------------------------------------------- /modules/react-firebase-docs/website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/website/package.json -------------------------------------------------------------------------------- /modules/react-firebase-docs/website/pages/en/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/website/pages/en/help.js -------------------------------------------------------------------------------- /modules/react-firebase-docs/website/pages/en/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/website/pages/en/index.js -------------------------------------------------------------------------------- /modules/react-firebase-docs/website/pages/en/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/website/pages/en/users.js -------------------------------------------------------------------------------- /modules/react-firebase-docs/website/sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/website/sidebars.json -------------------------------------------------------------------------------- /modules/react-firebase-docs/website/siteConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/website/siteConfig.js -------------------------------------------------------------------------------- /modules/react-firebase-docs/website/static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/website/static/css/custom.css -------------------------------------------------------------------------------- /modules/react-firebase-docs/website/static/img/docusaurus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/website/static/img/docusaurus.svg -------------------------------------------------------------------------------- /modules/react-firebase-docs/website/static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/website/static/img/favicon.png -------------------------------------------------------------------------------- /modules/react-firebase-docs/website/static/img/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/website/static/img/favicon/favicon.ico -------------------------------------------------------------------------------- /modules/react-firebase-docs/website/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/website/static/img/logo.png -------------------------------------------------------------------------------- /modules/react-firebase-docs/website/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/website/static/img/logo.svg -------------------------------------------------------------------------------- /modules/react-firebase-docs/website/static/img/oss_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/react-firebase-docs/website/static/img/oss_logo.png -------------------------------------------------------------------------------- /modules/sandboxes/firebase-auth/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .cache 4 | build -------------------------------------------------------------------------------- /modules/sandboxes/firebase-auth/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firebase-auth/config.ts -------------------------------------------------------------------------------- /modules/sandboxes/firebase-auth/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firebase-auth/index.html -------------------------------------------------------------------------------- /modules/sandboxes/firebase-auth/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firebase-auth/package.json -------------------------------------------------------------------------------- /modules/sandboxes/firebase-auth/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firebase-auth/src/index.tsx -------------------------------------------------------------------------------- /modules/sandboxes/firebase-auth/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firebase-auth/tsconfig.json -------------------------------------------------------------------------------- /modules/sandboxes/firebase-auth/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firebase-auth/yarn.lock -------------------------------------------------------------------------------- /modules/sandboxes/firebase-database-flatlist-infinite-list/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firebase-database-flatlist-infinite-list/config.js -------------------------------------------------------------------------------- /modules/sandboxes/firebase-database-flatlist-infinite-list/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firebase-database-flatlist-infinite-list/index.html -------------------------------------------------------------------------------- /modules/sandboxes/firebase-database-flatlist-infinite-list/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firebase-database-flatlist-infinite-list/package.json -------------------------------------------------------------------------------- /modules/sandboxes/firebase-database-flatlist-infinite-list/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firebase-database-flatlist-infinite-list/src/index.js -------------------------------------------------------------------------------- /modules/sandboxes/firebase-database-flatlist-infinite-list/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firebase-database-flatlist-infinite-list/yarn.lock -------------------------------------------------------------------------------- /modules/sandboxes/firebase-database-infinite-list/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .cache 4 | build -------------------------------------------------------------------------------- /modules/sandboxes/firebase-database-infinite-list/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firebase-database-infinite-list/config.ts -------------------------------------------------------------------------------- /modules/sandboxes/firebase-database-infinite-list/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firebase-database-infinite-list/index.html -------------------------------------------------------------------------------- /modules/sandboxes/firebase-database-infinite-list/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firebase-database-infinite-list/package.json -------------------------------------------------------------------------------- /modules/sandboxes/firebase-database-infinite-list/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firebase-database-infinite-list/src/index.tsx -------------------------------------------------------------------------------- /modules/sandboxes/firebase-database-infinite-list/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firebase-database-infinite-list/tsconfig.json -------------------------------------------------------------------------------- /modules/sandboxes/firebase-database-infinite-list/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firebase-database-infinite-list/yarn.lock -------------------------------------------------------------------------------- /modules/sandboxes/firebase-database-mutation/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .cache 4 | build -------------------------------------------------------------------------------- /modules/sandboxes/firebase-database-mutation/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firebase-database-mutation/config.ts -------------------------------------------------------------------------------- /modules/sandboxes/firebase-database-mutation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firebase-database-mutation/index.html -------------------------------------------------------------------------------- /modules/sandboxes/firebase-database-mutation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firebase-database-mutation/package.json -------------------------------------------------------------------------------- /modules/sandboxes/firebase-database-mutation/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firebase-database-mutation/src/index.tsx -------------------------------------------------------------------------------- /modules/sandboxes/firebase-database-mutation/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firebase-database-mutation/tsconfig.json -------------------------------------------------------------------------------- /modules/sandboxes/firebase-database-mutation/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firebase-database-mutation/yarn.lock -------------------------------------------------------------------------------- /modules/sandboxes/firebase-database-transaction/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .cache 4 | build -------------------------------------------------------------------------------- /modules/sandboxes/firebase-database-transaction/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firebase-database-transaction/config.ts -------------------------------------------------------------------------------- /modules/sandboxes/firebase-database-transaction/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firebase-database-transaction/index.html -------------------------------------------------------------------------------- /modules/sandboxes/firebase-database-transaction/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firebase-database-transaction/package.json -------------------------------------------------------------------------------- /modules/sandboxes/firebase-database-transaction/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firebase-database-transaction/src/index.tsx -------------------------------------------------------------------------------- /modules/sandboxes/firebase-database-transaction/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firebase-database-transaction/tsconfig.json -------------------------------------------------------------------------------- /modules/sandboxes/firebase-database-transaction/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firebase-database-transaction/yarn.lock -------------------------------------------------------------------------------- /modules/sandboxes/firestore-add-to-collection/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .cache 4 | build -------------------------------------------------------------------------------- /modules/sandboxes/firestore-add-to-collection/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firestore-add-to-collection/config.ts -------------------------------------------------------------------------------- /modules/sandboxes/firestore-add-to-collection/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firestore-add-to-collection/index.html -------------------------------------------------------------------------------- /modules/sandboxes/firestore-add-to-collection/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firestore-add-to-collection/package.json -------------------------------------------------------------------------------- /modules/sandboxes/firestore-add-to-collection/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firestore-add-to-collection/src/index.tsx -------------------------------------------------------------------------------- /modules/sandboxes/firestore-add-to-collection/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firestore-add-to-collection/tsconfig.json -------------------------------------------------------------------------------- /modules/sandboxes/firestore-add-to-collection/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firestore-add-to-collection/yarn.lock -------------------------------------------------------------------------------- /modules/sandboxes/firestore-batched-write/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .cache 4 | build -------------------------------------------------------------------------------- /modules/sandboxes/firestore-batched-write/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firestore-batched-write/config.ts -------------------------------------------------------------------------------- /modules/sandboxes/firestore-batched-write/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firestore-batched-write/index.html -------------------------------------------------------------------------------- /modules/sandboxes/firestore-batched-write/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firestore-batched-write/package.json -------------------------------------------------------------------------------- /modules/sandboxes/firestore-batched-write/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firestore-batched-write/src/index.tsx -------------------------------------------------------------------------------- /modules/sandboxes/firestore-batched-write/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firestore-batched-write/tsconfig.json -------------------------------------------------------------------------------- /modules/sandboxes/firestore-batched-write/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firestore-batched-write/yarn.lock -------------------------------------------------------------------------------- /modules/sandboxes/firestore-collection-example/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .cache 4 | build -------------------------------------------------------------------------------- /modules/sandboxes/firestore-collection-example/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firestore-collection-example/config.ts -------------------------------------------------------------------------------- /modules/sandboxes/firestore-collection-example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firestore-collection-example/index.html -------------------------------------------------------------------------------- /modules/sandboxes/firestore-collection-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firestore-collection-example/package.json -------------------------------------------------------------------------------- /modules/sandboxes/firestore-collection-example/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firestore-collection-example/src/index.tsx -------------------------------------------------------------------------------- /modules/sandboxes/firestore-collection-example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firestore-collection-example/tsconfig.json -------------------------------------------------------------------------------- /modules/sandboxes/firestore-collection-example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firestore-collection-example/yarn.lock -------------------------------------------------------------------------------- /modules/sandboxes/firestore-infinite-list/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .cache 4 | build -------------------------------------------------------------------------------- /modules/sandboxes/firestore-infinite-list/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firestore-infinite-list/config.ts -------------------------------------------------------------------------------- /modules/sandboxes/firestore-infinite-list/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firestore-infinite-list/index.html -------------------------------------------------------------------------------- /modules/sandboxes/firestore-infinite-list/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firestore-infinite-list/package.json -------------------------------------------------------------------------------- /modules/sandboxes/firestore-infinite-list/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firestore-infinite-list/src/index.tsx -------------------------------------------------------------------------------- /modules/sandboxes/firestore-infinite-list/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firestore-infinite-list/tsconfig.json -------------------------------------------------------------------------------- /modules/sandboxes/firestore-infinite-list/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firestore-infinite-list/yarn.lock -------------------------------------------------------------------------------- /modules/sandboxes/firestore-mutation-example/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .cache 4 | build -------------------------------------------------------------------------------- /modules/sandboxes/firestore-mutation-example/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firestore-mutation-example/config.ts -------------------------------------------------------------------------------- /modules/sandboxes/firestore-mutation-example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firestore-mutation-example/index.html -------------------------------------------------------------------------------- /modules/sandboxes/firestore-mutation-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firestore-mutation-example/package.json -------------------------------------------------------------------------------- /modules/sandboxes/firestore-mutation-example/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firestore-mutation-example/src/index.tsx -------------------------------------------------------------------------------- /modules/sandboxes/firestore-mutation-example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firestore-mutation-example/tsconfig.json -------------------------------------------------------------------------------- /modules/sandboxes/firestore-mutation-example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firestore-mutation-example/yarn.lock -------------------------------------------------------------------------------- /modules/sandboxes/firestore-transaction/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .cache 4 | build -------------------------------------------------------------------------------- /modules/sandboxes/firestore-transaction/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firestore-transaction/config.ts -------------------------------------------------------------------------------- /modules/sandboxes/firestore-transaction/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firestore-transaction/index.html -------------------------------------------------------------------------------- /modules/sandboxes/firestore-transaction/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firestore-transaction/package.json -------------------------------------------------------------------------------- /modules/sandboxes/firestore-transaction/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firestore-transaction/src/index.tsx -------------------------------------------------------------------------------- /modules/sandboxes/firestore-transaction/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firestore-transaction/tsconfig.json -------------------------------------------------------------------------------- /modules/sandboxes/firestore-transaction/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/sandboxes/firestore-transaction/yarn.lock -------------------------------------------------------------------------------- /modules/tutorial-bookmarking-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/tutorial-bookmarking-app/.gitignore -------------------------------------------------------------------------------- /modules/tutorial-bookmarking-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/tutorial-bookmarking-app/package.json -------------------------------------------------------------------------------- /modules/tutorial-bookmarking-app/src/AutoComplete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/tutorial-bookmarking-app/src/AutoComplete.tsx -------------------------------------------------------------------------------- /modules/tutorial-bookmarking-app/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/tutorial-bookmarking-app/src/index.html -------------------------------------------------------------------------------- /modules/tutorial-bookmarking-app/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/tutorial-bookmarking-app/src/index.tsx -------------------------------------------------------------------------------- /modules/tutorial-bookmarking-app/src/test-credentials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/tutorial-bookmarking-app/src/test-credentials.ts -------------------------------------------------------------------------------- /modules/tutorial-bookmarking-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/tutorial-bookmarking-app/tsconfig.json -------------------------------------------------------------------------------- /modules/tutorial-bookmarking-app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/modules/tutorial-bookmarking-app/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/package.json -------------------------------------------------------------------------------- /react-firebase.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-firebase.code-workspace -------------------------------------------------------------------------------- /react-native-examples/react-native-expo-firebase-example/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-expo-firebase-example/.babelrc -------------------------------------------------------------------------------- /react-native-examples/react-native-expo-firebase-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-expo-firebase-example/.gitignore -------------------------------------------------------------------------------- /react-native-examples/react-native-expo-firebase-example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /react-native-examples/react-native-expo-firebase-example/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-expo-firebase-example/App.js -------------------------------------------------------------------------------- /react-native-examples/react-native-expo-firebase-example/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-expo-firebase-example/App.test.js -------------------------------------------------------------------------------- /react-native-examples/react-native-expo-firebase-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-expo-firebase-example/README.md -------------------------------------------------------------------------------- /react-native-examples/react-native-expo-firebase-example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-expo-firebase-example/app.json -------------------------------------------------------------------------------- /react-native-examples/react-native-expo-firebase-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-expo-firebase-example/package.json -------------------------------------------------------------------------------- /react-native-examples/react-native-expo-firebase-example/test-credentials.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-expo-firebase-example/test-credentials.js -------------------------------------------------------------------------------- /react-native-examples/react-native-expo-firebase-example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-expo-firebase-example/yarn.lock -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/.babelrc -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/.buckconfig -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/.editorconfig -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/.flowconfig -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/.gitignore -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/.opensource/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/.opensource/project.json -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/App.js -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/App.test.js -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/LICENSE -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/README.md -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/android/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/android/.editorconfig -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/android/app/BUCK -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/android/app/build.gradle -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/android/app/src/main/java/com/reactfirebase/reactfirebaseexample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/android/app/src/main/java/com/reactfirebase/reactfirebaseexample/MainActivity.java -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/android/app/src/main/java/com/reactfirebase/reactfirebaseexample/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/android/app/src/main/java/com/reactfirebase/reactfirebaseexample/MainApplication.java -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/android/build.gradle -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/android/gradle.properties -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/android/gradlew -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/android/gradlew.bat -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/android/keystores/BUCK -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/android/settings.gradle -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/app.json -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/assets/RNFirebase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/assets/RNFirebase.png -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/bin/rename.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/bin/rename.js -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/index.js -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/ios/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/ios/GoogleService-Info.plist -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/ios/Podfile -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/ios/Podfile.lock -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/ios/reactfirebaseexample-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/ios/reactfirebaseexample-tvOS/Info.plist -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/ios/reactfirebaseexample-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/ios/reactfirebaseexample-tvOSTests/Info.plist -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/ios/reactfirebaseexample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/ios/reactfirebaseexample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/ios/reactfirebaseexample.xcodeproj/xcshareddata/xcschemes/reactfirebaseexample-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/ios/reactfirebaseexample.xcodeproj/xcshareddata/xcschemes/reactfirebaseexample-tvOS.xcscheme -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/ios/reactfirebaseexample.xcodeproj/xcshareddata/xcschemes/reactfirebaseexample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/ios/reactfirebaseexample.xcodeproj/xcshareddata/xcschemes/reactfirebaseexample.xcscheme -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/ios/reactfirebaseexample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/ios/reactfirebaseexample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/ios/reactfirebaseexample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/ios/reactfirebaseexample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/ios/reactfirebaseexample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/ios/reactfirebaseexample/AppDelegate.h -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/ios/reactfirebaseexample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/ios/reactfirebaseexample/AppDelegate.m -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/ios/reactfirebaseexample/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/ios/reactfirebaseexample/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/ios/reactfirebaseexample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/ios/reactfirebaseexample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/ios/reactfirebaseexample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/ios/reactfirebaseexample/Info.plist -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/ios/reactfirebaseexample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/ios/reactfirebaseexample/main.m -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/ios/reactfirebaseexampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/ios/reactfirebaseexampleTests/Info.plist -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/ios/reactfirebaseexampleTests/reactfirebaseexampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/ios/reactfirebaseexampleTests/reactfirebaseexampleTests.m -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/package-lock.json -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/package.json -------------------------------------------------------------------------------- /react-native-examples/react-native-firebase-starter/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/react-native-examples/react-native-firebase-starter/yarn.lock -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakannimer/react-firebase/HEAD/yarn.lock --------------------------------------------------------------------------------