├── .babelrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── Example ├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── README.md ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── firebaselocalcache │ │ │ │ ├── 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 ├── app │ ├── Helpers.js │ ├── HomeScreen.js │ ├── ViewItemScreen.js │ └── components │ │ ├── ChildAddedList.js │ │ └── ItemList.js ├── index.android.js ├── index.ios.js ├── ios │ ├── firebaseLocalCache-tvOS │ │ └── Info.plist │ ├── firebaseLocalCache-tvOSTests │ │ └── Info.plist │ ├── firebaseLocalCache.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── firebaseLocalCache-tvOS.xcscheme │ │ │ └── firebaseLocalCache.xcscheme │ ├── firebaseLocalCache │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── firebaseLocalCacheTests │ │ ├── Info.plist │ │ └── firebaseLocalCacheTests.m └── package.json ├── LICENSE ├── README.md ├── __tests__ └── index-test.js ├── dist └── index.js ├── docs └── index.md ├── package.json └── src └── index.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "stage-0"] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } -------------------------------------------------------------------------------- /Example/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/.buckconfig -------------------------------------------------------------------------------- /Example/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/.flowconfig -------------------------------------------------------------------------------- /Example/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /Example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/.gitignore -------------------------------------------------------------------------------- /Example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/README.md -------------------------------------------------------------------------------- /Example/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/android/app/BUCK -------------------------------------------------------------------------------- /Example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/android/app/build.gradle -------------------------------------------------------------------------------- /Example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /Example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Example/android/app/src/main/java/com/firebaselocalcache/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/android/app/src/main/java/com/firebaselocalcache/MainActivity.java -------------------------------------------------------------------------------- /Example/android/app/src/main/java/com/firebaselocalcache/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/android/app/src/main/java/com/firebaselocalcache/MainApplication.java -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/android/build.gradle -------------------------------------------------------------------------------- /Example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/android/gradle.properties -------------------------------------------------------------------------------- /Example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/android/gradlew -------------------------------------------------------------------------------- /Example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/android/gradlew.bat -------------------------------------------------------------------------------- /Example/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/android/keystores/BUCK -------------------------------------------------------------------------------- /Example/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /Example/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'firebaseLocalCache' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /Example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/app.json -------------------------------------------------------------------------------- /Example/app/Helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/app/Helpers.js -------------------------------------------------------------------------------- /Example/app/HomeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/app/HomeScreen.js -------------------------------------------------------------------------------- /Example/app/ViewItemScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/app/ViewItemScreen.js -------------------------------------------------------------------------------- /Example/app/components/ChildAddedList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/app/components/ChildAddedList.js -------------------------------------------------------------------------------- /Example/app/components/ItemList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/app/components/ItemList.js -------------------------------------------------------------------------------- /Example/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/index.android.js -------------------------------------------------------------------------------- /Example/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/index.ios.js -------------------------------------------------------------------------------- /Example/ios/firebaseLocalCache-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/ios/firebaseLocalCache-tvOS/Info.plist -------------------------------------------------------------------------------- /Example/ios/firebaseLocalCache-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/ios/firebaseLocalCache-tvOSTests/Info.plist -------------------------------------------------------------------------------- /Example/ios/firebaseLocalCache.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/ios/firebaseLocalCache.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/ios/firebaseLocalCache.xcodeproj/xcshareddata/xcschemes/firebaseLocalCache-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/ios/firebaseLocalCache.xcodeproj/xcshareddata/xcschemes/firebaseLocalCache-tvOS.xcscheme -------------------------------------------------------------------------------- /Example/ios/firebaseLocalCache.xcodeproj/xcshareddata/xcschemes/firebaseLocalCache.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/ios/firebaseLocalCache.xcodeproj/xcshareddata/xcschemes/firebaseLocalCache.xcscheme -------------------------------------------------------------------------------- /Example/ios/firebaseLocalCache/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/ios/firebaseLocalCache/AppDelegate.h -------------------------------------------------------------------------------- /Example/ios/firebaseLocalCache/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/ios/firebaseLocalCache/AppDelegate.m -------------------------------------------------------------------------------- /Example/ios/firebaseLocalCache/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/ios/firebaseLocalCache/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/ios/firebaseLocalCache/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/ios/firebaseLocalCache/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/ios/firebaseLocalCache/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/ios/firebaseLocalCache/Info.plist -------------------------------------------------------------------------------- /Example/ios/firebaseLocalCache/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/ios/firebaseLocalCache/main.m -------------------------------------------------------------------------------- /Example/ios/firebaseLocalCacheTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/ios/firebaseLocalCacheTests/Info.plist -------------------------------------------------------------------------------- /Example/ios/firebaseLocalCacheTests/firebaseLocalCacheTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/ios/firebaseLocalCacheTests/firebaseLocalCacheTests.m -------------------------------------------------------------------------------- /Example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/Example/package.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/index-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/__tests__/index-test.js -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/dist/index.js -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/docs/index.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuttingsoup/react-native-firebase-local-cache/HEAD/src/index.js --------------------------------------------------------------------------------