├── example ├── .watchmanconfig ├── android │ ├── settings.gradle │ ├── app │ │ ├── src │ │ │ └── main │ │ │ │ ├── res │ │ │ │ ├── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ └── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── MainApplication.java │ │ │ │ └── AndroidManifest.xml │ │ ├── BUCK │ │ ├── proguard-rules.pro │ │ ├── build.gradle │ │ └── app.iml │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── keystores │ │ ├── debug.keystore.properties │ │ └── BUCK │ ├── build.gradle │ ├── gradle.properties │ ├── example.iml │ ├── gradlew.bat │ └── gradlew ├── monitor_packages.sh ├── .buckconfig ├── index.ios.js ├── index.android.js ├── copy_packages.sh ├── ios │ ├── example │ │ ├── AppDelegate.h │ │ ├── main.m │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── AppDelegate.m │ │ ├── Info.plist │ │ └── Base.lproj │ │ │ └── LaunchScreen.xib │ ├── exampleTests │ │ ├── Info.plist │ │ └── exampleTests.m │ └── example.xcodeproj │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── example.xcscheme │ │ └── project.pbxproj ├── .gitignore ├── package.json ├── .flowconfig └── app.js ├── .gitignore ├── .gitmodules ├── static └── pouchdb-react-native.png ├── packages ├── pouchdb-adapter-asyncstorage │ ├── src │ │ ├── do_compaction.js │ │ ├── info.js │ │ ├── polyfill.js │ │ ├── destroy.js │ │ ├── get_revision_tree.js │ │ ├── get_attachment.js │ │ ├── get.js │ │ ├── keys.js │ │ ├── inline_attachments.js │ │ ├── databases.js │ │ ├── asyncstorage_core.js │ │ ├── changes.js │ │ ├── index.js │ │ ├── all_docs.js │ │ └── bulk_docs.js │ ├── LICENSE │ ├── package.json │ ├── readme.md │ └── package-lock.json └── pouchdb-react-native │ ├── index.d.ts │ ├── index.js │ ├── setup.js │ ├── LICENSE │ ├── package.json │ ├── readme.md │ └── package-lock.json ├── .prettierrc ├── tests ├── find-integration-passed.sh ├── utils.js ├── pouchdb-for-coverage │ └── index.js ├── run-integration.sh ├── setup.js └── integration │ ├── test.issue40.js │ └── test.attachments.js ├── .eslintrc ├── .travis.yml ├── LICENSE ├── README.md └── package.json /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'example' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | npm-debug.log 4 | 5 | .idea/ 6 | example2/ 7 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "pouchdb-original"] 2 | path = pouchdb-original 3 | url = https://github.com/pouchdb/pouchdb.git 4 | -------------------------------------------------------------------------------- /static/pouchdb-react-native.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seigel/pouchdb-react-native/HEAD/static/pouchdb-react-native.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | example 3 | 4 | -------------------------------------------------------------------------------- /example/monitor_packages.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | while true 3 | do 4 | fswatch -o ../packages/** | sh copy_packages.sh 5 | done 6 | -------------------------------------------------------------------------------- /example/.buckconfig: -------------------------------------------------------------------------------- 1 | 2 | [android] 3 | target = Google Inc.:Google APIs:23 4 | 5 | [maven_repositories] 6 | central = https://repo1.maven.org/maven2 7 | -------------------------------------------------------------------------------- /packages/pouchdb-adapter-asyncstorage/src/do_compaction.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | export default function(db, id, revs, callback) { 4 | callback() 5 | } 6 | -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seigel/pouchdb-react-native/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- 1 | key.store=debug.keystore 2 | key.alias=androiddebugkey 3 | key.store.password=android 4 | key.alias.password=android 5 | -------------------------------------------------------------------------------- /example/index.ios.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | import { AppRegistry } from 'react-native' 4 | import app from './app' 5 | 6 | AppRegistry.registerComponent('example', () => app) 7 | -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seigel/pouchdb-react-native/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/seigel/pouchdb-react-native/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/index.android.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | import { AppRegistry } from 'react-native' 4 | import app from './app' 5 | 6 | AppRegistry.registerComponent('example', () => app) 7 | -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seigel/pouchdb-react-native/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/seigel/pouchdb-react-native/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/keystores/BUCK: -------------------------------------------------------------------------------- 1 | keystore( 2 | name = 'debug', 3 | store = 'debug.keystore', 4 | properties = 'debug.keystore.properties', 5 | visibility = [ 6 | 'PUBLIC', 7 | ], 8 | ) 9 | -------------------------------------------------------------------------------- /packages/pouchdb-adapter-asyncstorage/src/info.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | export default function(db, callback) { 4 | callback(null, { 5 | doc_count: db.meta.doc_count, 6 | update_seq: db.meta.update_seq 7 | }) 8 | } 9 | -------------------------------------------------------------------------------- /packages/pouchdb-react-native/index.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | 3 | declare module "pouchdb-react-native" { 4 | const pouchdbPlugin: PouchDB.Static; 5 | export default pouchdbPlugin; 6 | } 7 | 8 | declare var PouchDB: PouchDB.Static; 9 | -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 80, 3 | "tabWidth": 2, 4 | "singleQuote": true, 5 | "trailingComma": "none", 6 | "bracketSpacing": true, 7 | "semi": false, 8 | "useTabs": false, 9 | "parser": "babylon", 10 | "jsxBracketSameLine": false, 11 | "proseWrap": "never" 12 | } 13 | -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Jul 06 19:12:23 CEST 2016 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip 7 | -------------------------------------------------------------------------------- /tests/find-integration-passed.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | for test in pouchdb-original/tests/integration/test.*.js; 4 | do 5 | COUCH_HOST=http://localhost:3000 node_modules/.bin/mocha --timeout 5000 -r tests/setup.js $test &> /dev/null 6 | 7 | if [[ $? == 0 ]]; then 8 | echo $test 9 | fi 10 | done 11 | -------------------------------------------------------------------------------- /example/copy_packages.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | echo "Copy packages" 3 | cp ../packages/pouchdb-react-native/*.* ./node_modules/pouchdb-react-native 4 | cp ../packages/pouchdb-adapter-asyncstorage/*.* ./node_modules/pouchdb-adapter-asyncstorage 5 | cp ../packages/pouchdb-adapter-asyncstorage/src/*.* ./node_modules/pouchdb-adapter-asyncstorage/src 6 | -------------------------------------------------------------------------------- /packages/pouchdb-adapter-asyncstorage/src/polyfill.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | global.Buffer = global.Buffer || require('buffer').Buffer 4 | global.atob = global.atob || require('atob') 5 | global.btoa = global.btoa || require('btoa') 6 | 7 | require('blob-polyfill') 8 | 9 | if (!process.version) process.version = 'core-js' 10 | process.nextTick = process.nextTick || setImmediate 11 | -------------------------------------------------------------------------------- /packages/pouchdb-adapter-asyncstorage/src/destroy.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | import { close as closeDatabase } from './databases' 4 | import AsyncStorageCore from './asyncstorage_core' 5 | 6 | export default function(db, opts, callback) { 7 | AsyncStorageCore.destroy(db.opts.name, error => { 8 | if (error) callback(error) 9 | 10 | closeDatabase(db.opts.name) 11 | callback() 12 | }) 13 | } 14 | -------------------------------------------------------------------------------- /packages/pouchdb-react-native/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | import PouchDB from 'pouchdb-core' 4 | import AsyncStoragePouch from 'pouchdb-adapter-asyncstorage' 5 | import HttpPouch from 'pouchdb-adapter-http' 6 | import mapreduce from 'pouchdb-mapreduce' 7 | import replication from 'pouchdb-replication' 8 | 9 | PouchDB.plugin(AsyncStoragePouch) 10 | .plugin(HttpPouch) 11 | .plugin(mapreduce) 12 | .plugin(replication) 13 | 14 | export default PouchDB 15 | -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.example; 2 | 3 | import com.facebook.react.ReactActivity; 4 | 5 | public class MainActivity extends ReactActivity { 6 | 7 | /** 8 | * Returns the name of the main component registered from JavaScript. 9 | * This is used to schedule rendering of the component. 10 | */ 11 | @Override 12 | protected String getMainComponentName() { 13 | return "example"; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "parser": "babel-eslint", 3 | "extends": [ 4 | "plugin:import/errors", 5 | "plugin:import/warnings", 6 | "standard", 7 | "standard-jsx", 8 | "prettier", 9 | "prettier/react", 10 | "prettier/standard" 11 | ], 12 | "globals": { 13 | "fetch": true, 14 | "it": true 15 | }, 16 | "plugins": [ 17 | "prettier", "import" 18 | ], 19 | "settings": { 20 | }, 21 | "rules": { 22 | "prettier/prettier": "error" 23 | } 24 | } -------------------------------------------------------------------------------- /tests/utils.js: -------------------------------------------------------------------------------- 1 | 2 | export const couchHost = () => { 3 | if (typeof window !== 'undefined' && window.cordova) { 4 | // magic route to localhost on android emulator 5 | return 'http://10.0.2.2:5984' 6 | } 7 | 8 | if (typeof window !== 'undefined' && window.COUCH_HOST) { 9 | return window.COUCH_HOST 10 | } 11 | 12 | if (typeof process !== 'undefined' && process.env.COUCH_HOST) { 13 | return process.env.COUCH_HOST 14 | } 15 | 16 | return 'http://localhost:5984' 17 | } 18 | -------------------------------------------------------------------------------- /example/ios/example/AppDelegate.h: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | 12 | @interface AppDelegate : UIResponder 13 | 14 | @property (nonatomic, strong) UIWindow *window; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /example/ios/example/main.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | 12 | #import "AppDelegate.h" 13 | 14 | int main(int argc, char * argv[]) { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /packages/pouchdb-adapter-asyncstorage/src/get_revision_tree.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | import { createError, MISSING_DOC } from 'pouchdb-errors' 4 | import { forDocument } from './keys' 5 | 6 | export default function(db, id, callback) { 7 | db.storage.get(forDocument(id), (error, doc) => { 8 | if (error) { 9 | return callback( 10 | createError(MISSING_DOC, error.message || 'missing-read-error') 11 | ) 12 | } 13 | 14 | if (!doc) { 15 | return callback(createError(MISSING_DOC, 'missing-rev-tree')) 16 | } 17 | 18 | callback(null, doc.rev_tree) 19 | }) 20 | } 21 | -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- 1 | # OSX 2 | # 3 | .DS_Store 4 | 5 | # Xcode 6 | # 7 | build/ 8 | *.pbxuser 9 | !default.pbxuser 10 | *.mode1v3 11 | !default.mode1v3 12 | *.mode2v3 13 | !default.mode2v3 14 | *.perspectivev3 15 | !default.perspectivev3 16 | xcuserdata 17 | *.xccheckout 18 | *.moved-aside 19 | DerivedData 20 | *.hmap 21 | *.ipa 22 | *.xcuserstate 23 | project.xcworkspace 24 | 25 | # Android/IJ 26 | # 27 | *.iml 28 | .idea 29 | .gradle 30 | local.properties 31 | 32 | # node.js 33 | # 34 | node_modules/ 35 | npm-debug.log 36 | 37 | # BUCK 38 | buck-out/ 39 | \.buckd/ 40 | android/app/libs 41 | android/keystores/debug.keystore 42 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "6" 4 | sudo: required 5 | services: 6 | - docker 7 | before_install: 8 | - "if [ -z \"$COUCH_HOST\" ]; then export COUCH_HOST=http://127.0.0.1:3000; fi" 9 | before_script: 10 | - sh pouchdb-original/bin/run-couchdb-on-travis.sh 11 | env: 12 | - COMMAND="npm test" 13 | matrix: 14 | include: 15 | - services: docker 16 | env: COMMAND="npm run test-integration" 17 | - services: docker 18 | env: COMMAND="npm run test-mapreduce" 19 | allow_failures: 20 | - env: COMMAND="npm run test-integration" 21 | - env: COMMAND="npm run test-mapreduce" 22 | script: $COMMAND 23 | -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:1.3.1' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | mavenLocal() 18 | jcenter() 19 | maven { 20 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm 21 | url "$rootDir/../node_modules/react-native/android" 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /example/ios/example/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "60x60", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "60x60", 31 | "scale" : "3x" 32 | } 33 | ], 34 | "info" : { 35 | "version" : 1, 36 | "author" : "xcode" 37 | } 38 | } -------------------------------------------------------------------------------- /packages/pouchdb-adapter-asyncstorage/src/get_attachment.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | import { createError, MISSING_DOC } from 'pouchdb-errors' 4 | import { base64StringToBlobOrBuffer } from 'pouchdb-binary-utils' 5 | import { forAttachment } from './keys' 6 | 7 | export default function(db, docId, attachId, attachment, opts, callback) { 8 | const digest = attachment.digest 9 | const type = attachment.content_type 10 | 11 | db.storage.get(forAttachment(digest), (error, attachmentData) => { 12 | if (error) { 13 | return callback( 14 | createError(MISSING_DOC, error.message || 'missing-read-error') 15 | ) 16 | } 17 | 18 | const data = attachmentData.data 19 | if (opts.binary) { 20 | callback(null, base64StringToBlobOrBuffer(data, type)) 21 | } else { 22 | callback(null, data) 23 | } 24 | }) 25 | } 26 | -------------------------------------------------------------------------------- /example/ios/exampleTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /tests/pouchdb-for-coverage/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | import PouchDB from '../../packages/pouchdb-react-native' 4 | import ajax from 'pouchdb-ajax' 5 | import utils from '../../pouchdb-original/packages/node_modules/pouchdb-for-coverage/src/utils' 6 | import errors from '../../pouchdb-original/packages/node_modules/pouchdb-for-coverage/src/errors' 7 | 8 | PouchDB.ajax = ajax 9 | PouchDB.utils = utils 10 | PouchDB.Errors = errors 11 | 12 | PouchDB 13 | .plugin(require('../../pouchdb-original/packages/node_modules/pouchdb-adapter-memory')) 14 | .plugin(require('../../pouchdb-original/packages/node_modules/pouchdb-adapter-leveldb')) 15 | 16 | // leveldb is required because of `new PouchDB({name: 'local_db', db: memdown})` 17 | // in /pouchdb-original/tests/unit/test.gen-replication-id.js:6 18 | // which resolves in using leveldb adapter 19 | // in /packages/pouchdb-react-native/node_modules/pouchdb-core/lib/index.js:1433 20 | 21 | export default PouchDB 22 | -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true 19 | 20 | android.useDeprecatedNdk=true 21 | -------------------------------------------------------------------------------- /example/android/example.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /packages/pouchdb-react-native/setup.js: -------------------------------------------------------------------------------- 1 | var fs = require('fs') 2 | 3 | var PATH = './node_modules/pouchdb-binary-utils/package.json' 4 | var packageContent 5 | try { 6 | packageContent = JSON.parse(fs.readFileSync(PATH)) 7 | } catch (e) { 8 | PATH = '../pouchdb-binary-utils/package.json' 9 | packageContent = JSON.parse(fs.readFileSync(PATH)) 10 | } 11 | 12 | packageContent['react-native'] = { 13 | './lib/index.js': './lib/index.js', 14 | './src/base64.js': './src/base64.js', 15 | './src/base64StringToBlobOrBuffer.js': './src/base64StringToBlobOrBuffer.js', 16 | './src/blob.js': './src/blob.js', 17 | './src/binaryStringToBlobOrBuffer.js': './src/binaryStringToBlobOrBuffer.js', 18 | './src/blobOrBufferToBase64.js': './src/blobOrBufferToBase64.js', 19 | './src/blobOrBufferToBinaryString.js': './src/blobOrBufferToBinaryString.js', 20 | './src/typedBuffer.js': './src/typedBuffer.js' 21 | } 22 | 23 | fs.writeFileSync( 24 | PATH, 25 | JSON.stringify(packageContent, null, ' ') + '\n', 26 | 'utf8' 27 | ) 28 | -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.example; 2 | 3 | import android.app.Application; 4 | import android.util.Log; 5 | 6 | import com.facebook.react.ReactApplication; 7 | import com.facebook.react.ReactInstanceManager; 8 | import com.facebook.react.ReactNativeHost; 9 | import com.facebook.react.ReactPackage; 10 | import com.facebook.react.shell.MainReactPackage; 11 | 12 | import java.util.Arrays; 13 | import java.util.List; 14 | 15 | public class MainApplication extends Application implements ReactApplication { 16 | 17 | private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { 18 | @Override 19 | protected boolean getUseDeveloperSupport() { 20 | return BuildConfig.DEBUG; 21 | } 22 | 23 | @Override 24 | protected List getPackages() { 25 | return Arrays.asList( 26 | new MainReactPackage() 27 | ); 28 | } 29 | }; 30 | 31 | @Override 32 | public ReactNativeHost getReactNativeHost() { 33 | return mReactNativeHost; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /packages/pouchdb-adapter-asyncstorage/src/get.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | import { createError, MISSING_DOC } from 'pouchdb-errors' 4 | import { forDocument, forSequence } from './keys' 5 | import { winningRev } from 'pouchdb-merge' 6 | 7 | export default function(db, id, opts, callback) { 8 | db.storage.get(forDocument(id), (error, meta) => { 9 | if (error) { 10 | return callback( 11 | createError(MISSING_DOC, error.message || 'missing-read-error') 12 | ) 13 | } 14 | if (meta === null) { 15 | return callback(createError(MISSING_DOC, 'missing-no-meta-found')) 16 | } 17 | 18 | const rev = opts.rev || winningRev(meta) 19 | if (!meta || (meta.deleted && !opts.rev) || !(rev in meta.rev_map)) { 20 | return callback(createError(MISSING_DOC, 'missing-rev-check')) 21 | } 22 | 23 | db.storage.get(forSequence(meta.rev_map[rev]), (error, doc) => { 24 | if (error) { 25 | return callback( 26 | createError(MISSING_DOC, error.message || 'missing-read-error') 27 | ) 28 | } 29 | 30 | return callback(null, { doc, metadata: meta }) 31 | }) 32 | }) 33 | } 34 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 Christoph Stock 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /tests/run-integration.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | PASS=( 4 | pouchdb-original/tests/integration/test.all_docs.js 5 | pouchdb-original/tests/integration/test.bulk_get.js 6 | pouchdb-original/tests/integration/test.constructor.js 7 | pouchdb-original/tests/integration/test.defaults.js 8 | pouchdb-original/tests/integration/test.design_docs.js 9 | pouchdb-original/tests/integration/test.http.js 10 | pouchdb-original/tests/integration/test.issue1175.js 11 | pouchdb-original/tests/integration/test.issue221.js 12 | pouchdb-original/tests/integration/test.node-websql.js 13 | pouchdb-original/tests/integration/test.replicationBackoff.js 14 | pouchdb-original/tests/integration/test.replication_events.js 15 | pouchdb-original/tests/integration/test.revs_diff.js 16 | pouchdb-original/tests/integration/test.setup_global_hooks.js 17 | pouchdb-original/tests/integration/test.slash_id.js 18 | pouchdb-original/tests/integration/test.sync_events.js 19 | pouchdb-original/tests/integration/test.taskqueue.js 20 | pouchdb-original/tests/integration/test.uuids.js 21 | ) 22 | 23 | node_modules/.bin/mocha --timeout 5000 -r tests/setup.js ${PASS[@]} tests/integration/*.js 24 | -------------------------------------------------------------------------------- /packages/pouchdb-react-native/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 Christoph Stock 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /packages/pouchdb-adapter-asyncstorage/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 Christoph Stock 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "example", 3 | "version": "7.0.0", 4 | "author": { 5 | "name": "Christoph Stock", 6 | "email": "stockulus@icloud.com", 7 | "url": "https://twitter.com/stockulus" 8 | }, 9 | "description": "small example / test app for pouchdb-react-native", 10 | "license": "MIT", 11 | "repository": { 12 | "type": "git", 13 | "url": "git+https://github.com/stockulus/pouchdb-react-native.git" 14 | }, 15 | "scripts": { 16 | "start": "node node_modules/react-native/local-cli/cli.js start --reset-cache", 17 | "ios": "node ./node_modules/react-native/local-cli/cli.js run-ios", 18 | "android": "node ./node_modules/react-native/local-cli/cli.js run-android", 19 | "updtr": "updtr --save-exact", 20 | "clean-watchman": "watchman watch-del-all", 21 | "copy-packages": "sh copy_packages.sh" 22 | }, 23 | "dependencies": { 24 | "pouchdb-react-native": "7.0.0-beta-1", 25 | "react": "16.4.2", 26 | "react-native": "0.57.6", 27 | "react-native-action-button": "2.8.4", 28 | "react-native-deprecated-custom-components": "0.1.2" 29 | }, 30 | "standard": { 31 | "ignore": [ 32 | "node_modules/**" 33 | ] 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | 12 | 13 | 19 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /packages/pouchdb-react-native/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "pouchdb-react-native", 3 | "version": "7.0.0-beta-1", 4 | "description": "PouchDB Bundle for ReactNative", 5 | "main": "index.js", 6 | "repository": { 7 | "type": "git", 8 | "url": "git+https://github.com/stockulus/pouchdb-react-native.git" 9 | }, 10 | "keywords": [ 11 | "pouchdb", 12 | "react-native", 13 | "asyncstorage", 14 | "offlinefirst" 15 | ], 16 | "scripts": { 17 | "updtr": "updtr --save-exact", 18 | "postinstall": "node ./setup.js" 19 | }, 20 | "author": { 21 | "name": "Christoph Stock", 22 | "email": "stockulus@icloud.com", 23 | "url": "https://twitter.com/stockulus" 24 | }, 25 | "license": "MIT", 26 | "bugs": { 27 | "url": "https://github.com/stockulus/pouchdb-react-native/issues" 28 | }, 29 | "homepage": "https://github.com/stockulus/pouchdb-react-native#readme", 30 | "dependencies": { 31 | "pouchdb-adapter-asyncstorage": "7.0.0-beta-1", 32 | "pouchdb-adapter-http": "7.0.0", 33 | "pouchdb-core": "7.0.0", 34 | "pouchdb-mapreduce": "7.0.0", 35 | "pouchdb-replication": "7.0.0" 36 | }, 37 | "devDependencies": {}, 38 | "peerDependencies": {}, 39 | "standard": { 40 | "ignore": [ 41 | "node_modules/**" 42 | ] 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /packages/pouchdb-adapter-asyncstorage/src/keys.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | import leftPad from 'left-pad' 4 | 5 | const DOC_STORE = 'ÿdocument-storeÿ' 6 | const DOC_STORE_LENGTH = DOC_STORE.length 7 | const META_STORE = 'ÿmeta-storeÿ' 8 | const META_STORE_LENGTH = META_STORE.length 9 | const ATTACHMENT_STORE = 'ÿattachment-binary-storeÿ' 10 | const SEQUENCE_STORE = 'ÿby-sequenceÿ' 11 | const SEQUENCE_STORE_LENGTH = SEQUENCE_STORE.length 12 | 13 | export const forDocument = id => `${DOC_STORE}${id}` 14 | export const forAttachment = digest => `${ATTACHMENT_STORE}${digest}` 15 | export const forMeta = key => `${META_STORE}${key}` 16 | export const forSequence = seq => `${SEQUENCE_STORE}${leftPad(seq, 16, 0)}` 17 | 18 | export const sliceDocument = id => id.slice(DOC_STORE_LENGTH) 19 | export const sliceMeta = id => id.slice(META_STORE_LENGTH) 20 | 21 | export const toDocumentKeys = list => list.map(forDocument) 22 | export const toMetaKeys = list => list.map(forMeta) 23 | export const toSequenceKeys = list => list.map(forSequence) 24 | 25 | export const getDocumentKeys = list => 26 | list 27 | .filter( 28 | key => key.startsWith(DOC_STORE) && !key.startsWith(`${DOC_STORE}_local`) 29 | ) 30 | .map(key => key.slice(DOC_STORE_LENGTH)) 31 | 32 | export const getSequenceKeys = list => 33 | list 34 | .filter(key => key.startsWith(SEQUENCE_STORE)) 35 | .map(key => parseInt(key.slice(SEQUENCE_STORE_LENGTH), 10)) 36 | -------------------------------------------------------------------------------- /packages/pouchdb-adapter-asyncstorage/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "pouchdb-adapter-asyncstorage", 3 | "version": "7.0.0-beta-1", 4 | "description": "asyncstorage adapter for PouchDB", 5 | "main": "./src/index.js", 6 | "repository": { 7 | "type": "git", 8 | "url": "git+https://github.com/stockulus/pouchdb-react-native.git" 9 | }, 10 | "keywords": [ 11 | "pouchdb", 12 | "react-native", 13 | "asyncstorage", 14 | "offlinefirst" 15 | ], 16 | "scripts": { 17 | "updtr": "updtr --save-exact" 18 | }, 19 | "author": { 20 | "name": "Christoph Stock", 21 | "email": "stockulus@icloud.com", 22 | "url": "https://twitter.com/stockulus" 23 | }, 24 | "license": "MIT", 25 | "bugs": { 26 | "url": "https://github.com/stockulus/pouchdb-react-native/issues" 27 | }, 28 | "homepage": "https://github.com/stockulus/pouchdb-react-native#readme", 29 | "dependencies": { 30 | "atob": "2.1.1", 31 | "blob-polyfill": "3.0.20180112", 32 | "btoa": "1.2.1", 33 | "buffer": "5.2.0", 34 | "events": "3.0.0", 35 | "left-pad": "1.3.0", 36 | "pouchdb-adapter-utils": "7.0.0", 37 | "pouchdb-binary-utils": "7.0.0", 38 | "pouchdb-errors": "7.0.0", 39 | "pouchdb-json": "7.0.0", 40 | "pouchdb-merge": "7.0.0", 41 | "pouchdb-utils": "7.0.0", 42 | "spark-md5": "3.0.0" 43 | }, 44 | "devDependencies": {}, 45 | "peerDependencies": {}, 46 | "standard": { 47 | "ignore": [ 48 | "node_modules/**" 49 | ] 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /example/ios/example/AppDelegate.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import "AppDelegate.h" 11 | 12 | #import "RCTBundleURLProvider.h" 13 | #import "RCTRootView.h" 14 | 15 | @implementation AppDelegate 16 | 17 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 18 | { 19 | NSURL *jsCodeLocation; 20 | 21 | jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index.ios" fallbackResource:nil]; 22 | 23 | RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation 24 | moduleName:@"example" 25 | initialProperties:nil 26 | launchOptions:launchOptions]; 27 | rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1]; 28 | 29 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; 30 | UIViewController *rootViewController = [UIViewController new]; 31 | rootViewController.view = rootView; 32 | self.window.rootViewController = rootViewController; 33 | [self.window makeKeyAndVisible]; 34 | return YES; 35 | } 36 | 37 | @end 38 | -------------------------------------------------------------------------------- /tests/setup.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | /* eslint-disable */ 4 | 5 | const pouchDir = require('path').resolve(__dirname + '/../pouchdb-original/packages/node_modules') 6 | 7 | require('babel-register')({ 8 | presets: ['react-native'], 9 | ignore: name => { 10 | return name.indexOf('node_modules') > -1 && name.indexOf(pouchDir) !== 0 11 | } 12 | }) 13 | 14 | require('react-native-mock/mock') 15 | 16 | const fs = require('fs') 17 | const Module = require('module') 18 | 19 | const _require = Module.prototype.require 20 | 21 | const reqPouch = () => _require.call(null, require.resolve('./pouchdb-for-coverage/')).default 22 | const reqPouchModule = name => _require.call(null, require.resolve(`../pouchdb-original/packages/node_modules/${name}`)) 23 | const reqAdapter = () => _require.call(null, require.resolve('../packages/pouchdb-adapter-asyncstorage')).default 24 | 25 | const map = fs 26 | .readdirSync(__dirname + '/../pouchdb-original/packages/node_modules') 27 | .reduce((total, name) => { 28 | total[name] = reqPouchModule.bind(null, name) 29 | return total 30 | }, { 31 | '../../packages/node_modules/pouchdb-for-coverage': reqPouch, 32 | '../../packages/node_modules/pouchdb': reqPouch, 33 | 'pouchdb-adapter-asyncstorage': reqAdapter 34 | }) 35 | 36 | Module.prototype.require = function patchedRequire (name) { 37 | const callback = map[name] 38 | 39 | if (callback) { 40 | return callback() 41 | } 42 | return _require.call(this, name) 43 | } 44 | 45 | require('../pouchdb-original/tests/integration/node.setup.js') 46 | -------------------------------------------------------------------------------- /packages/pouchdb-adapter-asyncstorage/src/inline_attachments.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | import { base64StringToBlobOrBuffer } from 'pouchdb-binary-utils' 4 | import { forAttachment } from './keys' 5 | 6 | export default function(db, dataDocs, { binaryAttachments }, callback) { 7 | const attachmentKeys = dataDocs.reduce((res, data) => { 8 | data && 9 | data._attachments && 10 | Object.keys(data._attachments).forEach(key => { 11 | res.push(forAttachment(data._attachments[key].digest)) 12 | }) 13 | return res 14 | }, []) 15 | 16 | db.storage.multiGet(attachmentKeys, (error, attachments) => { 17 | if (error) return callback(error) 18 | 19 | const attachmentObj = attachments.reduce((res, attachment) => { 20 | if (attachment) res[attachment.digest] = attachment 21 | return res 22 | }, {}) 23 | 24 | dataDocs.forEach(doc => { 25 | doc && 26 | doc._attachments && 27 | Object.keys(doc._attachments).forEach(key => { 28 | const newAttachment = { 29 | ...attachmentObj[doc._attachments[key].digest] 30 | } 31 | if (newAttachment) { 32 | doc._attachments[key] = newAttachment 33 | if (binaryAttachments) { 34 | const contentType = doc._attachments[key].content_type 35 | doc._attachments[key].data = base64StringToBlobOrBuffer( 36 | doc._attachments[key].data, 37 | contentType 38 | ) 39 | } 40 | } 41 | }) 42 | }) 43 | 44 | callback() 45 | }) 46 | } 47 | -------------------------------------------------------------------------------- /packages/pouchdb-adapter-asyncstorage/src/databases.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | import { changesHandler as ChangesHandler, uuid } from 'pouchdb-utils' 4 | 5 | import AsyncStorageCore from './asyncstorage_core' 6 | import { forMeta, toMetaKeys } from './keys' 7 | 8 | // A shared list of database handles 9 | const openDatabases = {} 10 | 11 | export const get = opts => 12 | new Promise((resolve, reject) => { 13 | const resolveResult = meta => { 14 | const result = { 15 | storage, 16 | meta: { 17 | db_uuid: meta[0], 18 | doc_count: meta[1], 19 | update_seq: meta[2] 20 | }, 21 | opts, 22 | changes: new ChangesHandler() 23 | } 24 | 25 | openDatabases[opts.name] = result 26 | resolve(result) 27 | } 28 | 29 | if (opts.name in openDatabases) { 30 | return resolve(openDatabases[opts.name]) 31 | } 32 | 33 | const storage = new AsyncStorageCore(opts.name) 34 | 35 | storage.multiGet( 36 | toMetaKeys(['_local_uuid', '_local_doc_count', '_local_last_update_seq']), 37 | (error, meta) => { 38 | if (error) return reject(error) 39 | 40 | if (meta[0]) return resolveResult(meta) 41 | 42 | const id = uuid() 43 | storage.multiPut( 44 | [ 45 | [forMeta('_local_uuid'), id], 46 | [forMeta('_local_doc_count'), 0], 47 | [forMeta('_local_last_update_seq'), 0] 48 | ], 49 | error => { 50 | if (error) return reject(error) 51 | 52 | resolveResult([id, 0, 0]) 53 | } 54 | ) 55 | } 56 | ) 57 | }) 58 | 59 | export const close = name => { 60 | delete openDatabases[name] 61 | } 62 | -------------------------------------------------------------------------------- /tests/integration/test.issue40.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | /* global describe, it, PouchDB */ 4 | describe('react-native.test.issue40.js', function () { 5 | it('similar results after syncing in different order', function () { 6 | const sourceDb1 = new PouchDB('sourceDb1') 7 | const sourceDb2 = new PouchDB('sourceDb2') 8 | const localDest1 = new PouchDB('localDest') 9 | const localDest2 = new PouchDB('localDest2') 10 | 11 | return Promise 12 | .resolve() 13 | .then(() => Promise 14 | .all([ 15 | sourceDb1.put({ _id: '1', foo: 'bar' }), 16 | sourceDb2.put({ _id: '1', bar: 'baz' }) 17 | ]) 18 | ) 19 | .then(() => Promise 20 | .all([ 21 | sourceDb1.replicate.to(localDest1), 22 | sourceDb2.replicate.to(localDest1), 23 | sourceDb2.replicate.to(localDest2), 24 | sourceDb1.replicate.to(localDest2) 25 | ]) 26 | ) 27 | .then(() => Promise 28 | .all([ 29 | sourceDb1.get('1'), 30 | sourceDb2.get('1'), 31 | localDest1.get('1'), 32 | localDest2.get('1') 33 | ]) 34 | ) 35 | .then(([ sourceDoc1, sourceDoc2, destDoc1, destDoc2 ]) => { 36 | sourceDoc1._rev.should.not.equal(sourceDoc2._rev, 'Source docs need different revs for test to work') 37 | destDoc1._rev.should.equal(destDoc2._rev, 'Destination docs have different revs') 38 | 39 | return Promise 40 | .all([ 41 | localDest1.allDocs(), 42 | localDest2.allDocs() 43 | ]) 44 | }) 45 | .then(([ res1, res2 ]) => { 46 | res1.rows[0].value.rev.should.equal(res2.rows[0].value.rev, 'allDocs should be equal') 47 | }) 48 | }) 49 | }) 50 | -------------------------------------------------------------------------------- /example/android/app/BUCK: -------------------------------------------------------------------------------- 1 | import re 2 | 3 | # To learn about Buck see [Docs](https://buckbuild.com/). 4 | # To run your application with Buck: 5 | # - install Buck 6 | # - `npm start` - to start the packager 7 | # - `cd android` 8 | # - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"` 9 | # - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck 10 | # - `buck install -r android/app` - compile, install and run application 11 | # 12 | 13 | lib_deps = [] 14 | for jarfile in glob(['libs/*.jar']): 15 | name = 'jars__' + re.sub(r'^.*/([^/]+)\.jar$', r'\1', jarfile) 16 | lib_deps.append(':' + name) 17 | prebuilt_jar( 18 | name = name, 19 | binary_jar = jarfile, 20 | ) 21 | 22 | for aarfile in glob(['libs/*.aar']): 23 | name = 'aars__' + re.sub(r'^.*/([^/]+)\.aar$', r'\1', aarfile) 24 | lib_deps.append(':' + name) 25 | android_prebuilt_aar( 26 | name = name, 27 | aar = aarfile, 28 | ) 29 | 30 | android_library( 31 | name = 'all-libs', 32 | exported_deps = lib_deps 33 | ) 34 | 35 | android_library( 36 | name = 'app-code', 37 | srcs = glob([ 38 | 'src/main/java/**/*.java', 39 | ]), 40 | deps = [ 41 | ':all-libs', 42 | ':build_config', 43 | ':res', 44 | ], 45 | ) 46 | 47 | android_build_config( 48 | name = 'build_config', 49 | package = 'com.example', 50 | ) 51 | 52 | android_resource( 53 | name = 'res', 54 | res = 'src/main/res', 55 | package = 'com.example', 56 | ) 57 | 58 | android_binary( 59 | name = 'app', 60 | package_type = 'debug', 61 | manifest = 'src/main/AndroidManifest.xml', 62 | keystore = '//android/keystores:debug', 63 | deps = [ 64 | ':app-code', 65 | ], 66 | ) 67 | -------------------------------------------------------------------------------- /example/ios/example/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIRequiredDeviceCapabilities 28 | 29 | armv7 30 | 31 | UISupportedInterfaceOrientations 32 | 33 | UIInterfaceOrientationPortrait 34 | UIInterfaceOrientationLandscapeLeft 35 | UIInterfaceOrientationLandscapeRight 36 | 37 | UIViewControllerBasedStatusBarAppearance 38 | 39 | NSLocationWhenInUseUsageDescription 40 | 41 | NSAppTransportSecurity 42 | 43 | 44 | NSExceptionDomains 45 | 46 | localhost 47 | 48 | NSTemporaryExceptionAllowsInsecureHTTPLoads 49 | 50 | 51 | 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /example/.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | 3 | # We fork some components by platform. 4 | .*/*[.]android.js 5 | 6 | # Ignore templates with `@flow` in header 7 | .*/local-cli/generator.* 8 | 9 | # Ignore malformed json 10 | .*/node_modules/y18n/test/.*\.json 11 | 12 | # Ignore the website subdir 13 | /website/.* 14 | 15 | # Ignore BUCK generated dirs 16 | /\.buckd/ 17 | 18 | # Ignore unexpected extra @providesModule 19 | .*/node_modules/commoner/test/source/widget/share.js 20 | 21 | # Ignore duplicate module providers 22 | # For RN Apps installed via npm, "Libraries" folder is inside node_modules/react-native but in the source repo it is in the root 23 | .*/Libraries/react-native/React.js 24 | .*/Libraries/react-native/ReactNative.js 25 | .*/node_modules/jest-runtime/build/__tests__/.* 26 | 27 | [include] 28 | 29 | [libs] 30 | node_modules/react-native/Libraries/react-native/react-native-interface.js 31 | node_modules/react-native/flow 32 | flow/ 33 | 34 | [options] 35 | module.system=haste 36 | 37 | esproposal.class_static_fields=enable 38 | esproposal.class_instance_fields=enable 39 | 40 | experimental.strict_type_args=true 41 | 42 | munge_underscores=true 43 | 44 | module.name_mapper='^image![a-zA-Z0-9$_-]+$' -> 'GlobalImageStub' 45 | module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub' 46 | 47 | suppress_type=$FlowIssue 48 | suppress_type=$FlowFixMe 49 | suppress_type=$FixMe 50 | 51 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(30\\|[1-2][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\) 52 | suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(30\\|1[0-9]\\|[1-2][0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+ 53 | suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy 54 | 55 | unsafe.enable_getters_and_setters=true 56 | 57 | [version] 58 | ^0.30.0 59 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![Logo](https://raw.githubusercontent.com/seigel/pouchdb-react-native/master/static/pouchdb-react-native.png) 2 | 3 | [![npm Package](https://img.shields.io/npm/dm/pouchdb-react-native.svg)](https://www.npmjs.com/package/pouchdb-react-native) [![npm Package](https://img.shields.io/npm/v/pouchdb-react-native.svg)](https://www.npmjs.com/package/pouchdb-react-native) [![travis-ci.org](https://travis-ci.org/seigel/pouchdb-react-native.svg)](https://travis-ci.org/seigel/pouchdb-react-native) [![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)](http://standardjs.com/) [![license](https://img.shields.io/npm/l/pouchdb-react-native.svg?maxAge=2592000)](https://opensource.org/licenses/MIT) 4 | 5 | # Dormant 6 | 7 | # NEEDS NEW OWNER 8 | 9 | [July 24, 2023] After getting asked on when the next updates will happen, I promised that I would review over the weekend and figure out what needs to be done. THE BEST path forward is to have someone pick it up and carry it forward. I was keen then covid hit and changed everything. I am not able to do it any more, even though I never really got going because of the bad timing of everything. I had high hopes and here we are. 10 | 11 | Reach out if there is interest. 12 | 13 | 14 | pouchdb-react-native 15 | ====== 16 | 17 | PouchDB, the React Native-only edition. A preset representing the PouchDB code that runs in React Native. 18 | 19 | The `pouchdb-react-native` preset contains the version of PouchDB that is designed for React Native. In particular, it 20 | ships with the AsyncStorage adapter as its default adapter. It also contains the replication, HTTP, and map/reduce plugins. 21 | 22 | 23 | # USAGE 24 | The package needs some work to get up to speed with the latest async requirements and the latest react native requirements. I am removing the usage area until the package is more easily installed. (November 14, 2022) 25 | 26 | --- 27 | [![Twitter URL](https://img.shields.io/twitter/url/http/shields.io.svg?style=social&maxAge=2592000)](https://twitter.com/cgul) [![GitHub stars](https://img.shields.io/github/stars/seigel/pouchdb-react-native.svg?style=social&label=Star)](https://github.com/seigel/pouchdb-react-native) 28 | -------------------------------------------------------------------------------- /example/ios/exampleTests/exampleTests.m: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2015-present, Facebook, Inc. 3 | * All rights reserved. 4 | * 5 | * This source code is licensed under the BSD-style license found in the 6 | * LICENSE file in the root directory of this source tree. An additional grant 7 | * of patent rights can be found in the PATENTS file in the same directory. 8 | */ 9 | 10 | #import 11 | #import 12 | 13 | #import "RCTLog.h" 14 | #import "RCTRootView.h" 15 | 16 | #define TIMEOUT_SECONDS 600 17 | #define TEXT_TO_LOOK_FOR @"Welcome to React Native!" 18 | 19 | @interface exampleTests : XCTestCase 20 | 21 | @end 22 | 23 | @implementation exampleTests 24 | 25 | - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test 26 | { 27 | if (test(view)) { 28 | return YES; 29 | } 30 | for (UIView *subview in [view subviews]) { 31 | if ([self findSubviewInView:subview matching:test]) { 32 | return YES; 33 | } 34 | } 35 | return NO; 36 | } 37 | 38 | - (void)testRendersWelcomeScreen 39 | { 40 | UIViewController *vc = [[[[UIApplication sharedApplication] delegate] window] rootViewController]; 41 | NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS]; 42 | BOOL foundElement = NO; 43 | 44 | __block NSString *redboxError = nil; 45 | RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) { 46 | if (level >= RCTLogLevelError) { 47 | redboxError = message; 48 | } 49 | }); 50 | 51 | while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) { 52 | [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 53 | [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]]; 54 | 55 | foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) { 56 | if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) { 57 | return YES; 58 | } 59 | return NO; 60 | }]; 61 | } 62 | 63 | RCTSetLogFunction(RCTDefaultLogFunction); 64 | 65 | XCTAssertNil(redboxError, @"RedBox error: %@", redboxError); 66 | XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS); 67 | } 68 | 69 | 70 | @end 71 | -------------------------------------------------------------------------------- /packages/pouchdb-adapter-asyncstorage/readme.md: -------------------------------------------------------------------------------- 1 | ![Logo](https://raw.githubusercontent.com/stockulus/pouchdb-react-native/master/static/pouchdb-react-native.png) 2 | 3 | pouchdb-adapter-asyncstorage 4 | ====== 5 | 6 | PouchDB adapter using AsyncStorage as its data store. Designed to run in ReactNative. Its adapter name is `'asyncstorage'`. 7 | 8 | [![bitHound Overall Score](https://www.bithound.io/github/stockulus/pouchdb-react-native/badges/score.svg)](https://www.bithound.io/github/stockulus/pouchdb-react-native) [![npm Package](https://img.shields.io/npm/dm/pouchdb-adapter-asyncstorage.svg)](https://www.npmjs.com/package/pouchdb-adapter-asyncstorage) [![npm Package](https://img.shields.io/npm/v/pouchdb-adapter-asyncstorage.svg)](https://www.npmjs.com/package/pouchdb-adapter-asyncstorage) [![travis-ci.org](https://travis-ci.org/stockulus/pouchdb-react-native.svg)](https://travis-ci.org/stockulus/pouchdb-react-native) [![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)](http://standardjs.com/) [![license](https://img.shields.io/npm/l/pouchdb-adapter-asyncstorage.svg?maxAge=2592000)](https://opensource.org/licenses/MIT) 9 | 10 | ### Usage 11 | 12 | ```bash 13 | npm install pouchdb-adapter-asyncstorage --save 14 | ``` 15 | 16 | ```js 17 | import PouchDB from 'pouchdb-core' 18 | PouchDB.plugin(require('pouchdb-adapter-asyncstorage').default) 19 | const db = new PouchDB('mydb', {adapter: 'asyncstorage'}) 20 | 21 | // use PouchDB 22 | db.get('4711') 23 | .then(doc => console.log(doc)) 24 | 25 | ``` 26 | 27 | ### Android limit 28 | 29 | On Android asyncstorage has a limitation of 6 MB per default, you might want to increase it 30 | 31 | ```java 32 | // MainApplication.getPackages() 33 | long size = 50L * 1024L * 1024L; // 50 MB 34 | com.facebook.react.modules.storage.ReactDatabaseSupplier.getInstance(getApplicationContext()).setMaximumSize(size); 35 | ``` 36 | 37 | For full API documentation and guides on PouchDB, see [PouchDB.com](http://pouchdb.com/). For details on PouchDB sub-packages, see the [Custom Builds documentation](http://pouchdb.com/custom.html). 38 | 39 | --- 40 | [![Twitter URL](https://img.shields.io/twitter/url/http/shields.io.svg?style=social&maxAge=2592000)](https://twitter.com/stockulus) [![GitHub stars](https://img.shields.io/github/stars/stockulus/pouchdb-react-native.svg?style=social&label=Star)](https://github.com/stockulus/pouchdb-react-native) 41 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "pouchdb-react-native-bundle", 3 | "version": "7.0.0", 4 | "description": "Package Bundle for PouchDB for ReactNative", 5 | "repository": { 6 | "type": "git", 7 | "url": "git+https://github.com/stockulus/pouchdb-react-native.git" 8 | }, 9 | "keywords": [ 10 | "pouchdb", 11 | "react-native", 12 | "asyncstorage", 13 | "offlinefirst" 14 | ], 15 | "scripts": { 16 | "test": "echo 'have to repair the tests'", 17 | "test-unit": "mocha -r tests/setup.js pouchdb-original/tests/unit/test.*.js", 18 | "test-mapreduce": "COUCH_HOST=http://localhost:3000 mocha -r tests/setup.js pouchdb-original/tests/mapreduce/test.*.js", 19 | "test-integration": "COUCH_HOST=http://localhost:3000 mocha -r tests/setup.js pouchdb-original/tests/integration/test.*.js", 20 | "test-integration-subset": "COUCH_HOST=http://localhost:3000 ./tests/run-integration.sh", 21 | "run-couchdb": "docker run -d -p 3000:5984 --name couchdb klaemo/couchdb:latest", 22 | "lint": "eslint ./packages", 23 | "clean": "rm -rf packages/**/node_modules && rm -rf ./example/node_modules && rm -rf ./pouchdb-original/node_modules && rm -rf ./node_modules", 24 | "postinstall": "for D in ./packages/*; do cd $D; npm install; cd -; done && cd example && npm install && cd ../pouchdb-original && npm install", 25 | "updtr": "updtr --save-exact && cd example && updtr --save-exact && cd .. && for D in ./packages/*; do echo $D; cd $D; npm run updtr; cd -; done" 26 | }, 27 | "author": { 28 | "name": "Christoph Stock", 29 | "email": "stockulus@icloud.com", 30 | "url": "https://twitter.com/stockulus" 31 | }, 32 | "license": "MIT", 33 | "bugs": { 34 | "url": "https://github.com/stockulus/pouchdb-react-native/issues" 35 | }, 36 | "homepage": "https://github.com/stockulus/pouchdb-react-native#readme", 37 | "dependencies": {}, 38 | "devDependencies": { 39 | "babel-eslint": "8.2.6", 40 | "babel-jest": "23.4.2", 41 | "eslint": "5.3.0", 42 | "eslint-config-prettier": "2.9.0", 43 | "eslint-config-standard": "11.0.0", 44 | "eslint-config-standard-jsx": "5.0.0", 45 | "eslint-plugin-import": "2.13.0", 46 | "eslint-plugin-node": "7.0.1", 47 | "eslint-plugin-prettier": "2.6.2", 48 | "eslint-plugin-promise": "3.8.0", 49 | "eslint-plugin-react": "7.10.0", 50 | "eslint-plugin-standard": "3.1.0", 51 | "mocha": "5.2.0", 52 | "prettier": "1.14.2", 53 | "react": "16.4.2", 54 | "react-native": "0.57.6", 55 | "react-native-mock": "0.3.1", 56 | "updtr": "2.0.0" 57 | }, 58 | "standard": { 59 | "ignore": [ 60 | "node_modules/**", 61 | "pouchdb-original/**" 62 | ] 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /packages/pouchdb-react-native/readme.md: -------------------------------------------------------------------------------- 1 | ![Logo](https://raw.githubusercontent.com/stockulus/pouchdb-react-native/master/static/pouchdb-react-native.png) 2 | 3 | pouchdb-react-native 4 | ====== 5 | 6 | PouchDB, the ReactNative-only edition. A preset representing the PouchDB code that runs in ReactNative. 7 | 8 | The `pouchdb-react-native` preset contains the version of PouchDB that is designed for ReactNative. In particular, it ships with the AsyncStorage adapters as its default adapters. It also contains the replication, HTTP, and map/reduce plugins. 9 | 10 | [![bitHound Overall Score](https://www.bithound.io/github/stockulus/pouchdb-react-native/badges/score.svg)](https://www.bithound.io/github/stockulus/pouchdb-react-native) [![npm Package](https://img.shields.io/npm/dm/pouchdb-react-native.svg)](https://www.npmjs.com/package/pouchdb-react-native) [![npm Package](https://img.shields.io/npm/v/pouchdb-react-native.svg)](https://www.npmjs.com/package/pouchdb-react-native) [![travis-ci.org](https://travis-ci.org/stockulus/pouchdb-react-native.svg)](https://travis-ci.org/stockulus/pouchdb-react-native) [![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)](http://standardjs.com/) [![license](https://img.shields.io/npm/l/pouchdb-react-native.svg?maxAge=2592000)](https://opensource.org/licenses/MIT) 11 | 12 | ### Usage 13 | 14 | ```bash 15 | npm install pouchdb-react-native --save 16 | ``` 17 | 18 | npm >= 3 / node >= 6 works best, there are some known issues with npm 2 19 | 20 | ```js 21 | import PouchDB from 'pouchdb-react-native' 22 | const db = new PouchDB('mydb') 23 | 24 | // use PouchDB 25 | db.get('4711') 26 | .then(doc => console.log(doc)) 27 | 28 | ``` 29 | 30 | For full API documentation and guides on PouchDB, see [PouchDB.com](http://pouchdb.com/). For details on PouchDB sub-packages, see the [Custom Builds documentation](http://pouchdb.com/custom.html). 31 | 32 | ### Android limit 33 | 34 | On Android asyncstorage has a limitation of 6 MB per default, you might want to increase it 35 | 36 | ```java 37 | // MainApplication.getPackages() 38 | long size = 50L * 1024L * 1024L; // 50 MB 39 | com.facebook.react.modules.storage.ReactDatabaseSupplier.getInstance(getApplicationContext()).setMaximumSize(size); 40 | ``` 41 | 42 | ### Sample App 43 | there is a small example app: 44 | https://github.com/stockulus/pouchdb-react-native/tree/master/example 45 | 46 | --- 47 | [![Twitter URL](https://img.shields.io/twitter/url/http/shields.io.svg?style=social&maxAge=2592000)](https://twitter.com/stockulus) [![GitHub stars](https://img.shields.io/github/stars/stockulus/pouchdb-react-native.svg?style=social&label=Star)](https://github.com/stockulus/pouchdb-react-native) 48 | -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 12 | set DEFAULT_JVM_OPTS= 13 | 14 | set DIRNAME=%~dp0 15 | if "%DIRNAME%" == "" set DIRNAME=. 16 | set APP_BASE_NAME=%~n0 17 | set APP_HOME=%DIRNAME% 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windowz variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | if "%@eval[2+2]" == "4" goto 4NT_args 53 | 54 | :win9xME_args 55 | @rem Slurp the command line arguments. 56 | set CMD_LINE_ARGS= 57 | set _SKIP=2 58 | 59 | :win9xME_args_slurp 60 | if "x%~1" == "x" goto execute 61 | 62 | set CMD_LINE_ARGS=%* 63 | goto execute 64 | 65 | :4NT_args 66 | @rem Get arguments from the 4NT Shell from JP Software 67 | set CMD_LINE_ARGS=%$ 68 | 69 | :execute 70 | @rem Setup the command line 71 | 72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 73 | 74 | @rem Execute Gradle 75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 76 | 77 | :end 78 | @rem End local scope for the variables with windows NT shell 79 | if "%ERRORLEVEL%"=="0" goto mainEnd 80 | 81 | :fail 82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 83 | rem the _cmd.exe /c_ return code! 84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 85 | exit /b 1 86 | 87 | :mainEnd 88 | if "%OS%"=="Windows_NT" endlocal 89 | 90 | :omega 91 | -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | 19 | # Disabling obfuscation is useful if you collect stack traces from production crashes 20 | # (unless you are using a system that supports de-obfuscate the stack traces). 21 | -dontobfuscate 22 | 23 | # React Native 24 | 25 | # Keep our interfaces so they can be used by other ProGuard rules. 26 | # See http://sourceforge.net/p/proguard/bugs/466/ 27 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.DoNotStrip 28 | -keep,allowobfuscation @interface com.facebook.proguard.annotations.KeepGettersAndSetters 29 | -keep,allowobfuscation @interface com.facebook.common.internal.DoNotStrip 30 | 31 | # Do not strip any method/class that is annotated with @DoNotStrip 32 | -keep @com.facebook.proguard.annotations.DoNotStrip class * 33 | -keep @com.facebook.common.internal.DoNotStrip class * 34 | -keepclassmembers class * { 35 | @com.facebook.proguard.annotations.DoNotStrip *; 36 | @com.facebook.common.internal.DoNotStrip *; 37 | } 38 | 39 | -keepclassmembers @com.facebook.proguard.annotations.KeepGettersAndSetters class * { 40 | void set*(***); 41 | *** get*(); 42 | } 43 | 44 | -keep class * extends com.facebook.react.bridge.JavaScriptModule { *; } 45 | -keep class * extends com.facebook.react.bridge.NativeModule { *; } 46 | -keepclassmembers,includedescriptorclasses class * { native ; } 47 | -keepclassmembers class * { @com.facebook.react.uimanager.UIProp ; } 48 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactProp ; } 49 | -keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactPropGroup ; } 50 | 51 | -dontwarn com.facebook.react.** 52 | 53 | # okhttp 54 | 55 | -keepattributes Signature 56 | -keepattributes *Annotation* 57 | -keep class okhttp3.** { *; } 58 | -keep interface okhttp3.** { *; } 59 | -dontwarn okhttp3.** 60 | 61 | # okio 62 | 63 | -keep class sun.misc.Unsafe { *; } 64 | -dontwarn java.nio.file.* 65 | -dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement 66 | -dontwarn okio.** 67 | -------------------------------------------------------------------------------- /packages/pouchdb-adapter-asyncstorage/src/asyncstorage_core.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | /* 4 | * Adapted from https://github.com/tradle/asyncstorage-down 5 | */ 6 | 7 | import { AsyncStorage } from 'react-native' 8 | import { safeJsonParse, safeJsonStringify } from 'pouchdb-json' 9 | 10 | function createPrefix(dbName) { 11 | return dbName.replace(/!/g, '!!') + '!' // escape bangs in dbName 12 | } 13 | 14 | function prepareKey(key, core) { 15 | return ( 16 | core._prefix + 17 | key 18 | .replace(/\u0002/g, '\u0002\u0002') 19 | .replace(/\u0001/g, '\u0001\u0002') 20 | .replace(/\u0000/g, '\u0001\u0001') 21 | ) 22 | } 23 | 24 | function AsyncStorageCore(dbName) { 25 | this._prefix = createPrefix(dbName) 26 | } 27 | 28 | AsyncStorageCore.prototype.getKeys = function(callback) { 29 | const keys = [] 30 | const prefix = this._prefix 31 | const prefixLen = prefix.length 32 | 33 | AsyncStorage.getAllKeys((error, allKeys) => { 34 | if (error) return callback(error) 35 | 36 | allKeys.forEach(fullKey => { 37 | if (fullKey.slice(0, prefixLen) === prefix) { 38 | keys.push( 39 | fullKey 40 | .slice(prefixLen) 41 | .replace(/\u0001\u0001/g, '\u0000') 42 | .replace(/\u0001\u0002/g, '\u0001') 43 | .replace(/\u0002\u0002/g, '\u0002') 44 | ) 45 | } 46 | }) 47 | 48 | keys.sort() 49 | callback(null, keys) 50 | }) 51 | } 52 | 53 | const stringifyValue = value => { 54 | if (value === null) return '' 55 | if (value === undefined) return '' 56 | 57 | return safeJsonStringify(value) 58 | } 59 | 60 | AsyncStorageCore.prototype.put = function(key, value, callback) { 61 | key = prepareKey(key, this) 62 | AsyncStorage.setItem(key, stringifyValue(value), callback) 63 | } 64 | 65 | AsyncStorageCore.prototype.multiPut = function(pairs, callback) { 66 | pairs = pairs.map(pair => [ 67 | prepareKey(pair[0], this), 68 | stringifyValue(pair[1]) 69 | ]) 70 | AsyncStorage.multiSet(pairs) 71 | .then(result => callback(null, result)) 72 | .catch(callback) 73 | } 74 | 75 | const parseValue = value => { 76 | if (typeof value === 'string') return safeJsonParse(value) 77 | return null 78 | } 79 | 80 | AsyncStorageCore.prototype.get = function(key, callback) { 81 | key = prepareKey(key, this) 82 | AsyncStorage.getItem(key) 83 | .then(item => callback(null, parseValue(item))) 84 | .catch(callback) 85 | } 86 | 87 | AsyncStorageCore.prototype.multiGet = function(keys, callback) { 88 | keys = keys.map(key => prepareKey(key, this)) 89 | 90 | AsyncStorage.multiGet(keys) 91 | .then(pairs => callback(null, pairs.map(pair => parseValue(pair[1])))) 92 | .catch(callback) 93 | } 94 | 95 | AsyncStorageCore.prototype.remove = function(key, callback) { 96 | key = prepareKey(key, this) 97 | AsyncStorage.removeItem(key, callback) 98 | } 99 | 100 | AsyncStorageCore.prototype.multiRemove = function(keys, callback) { 101 | keys = keys.map(key => prepareKey(key, this)) 102 | AsyncStorage.multiRemove(keys, callback) 103 | } 104 | 105 | AsyncStorageCore.destroy = function(dbName, callback) { 106 | const prefix = createPrefix(dbName) 107 | const prefixLen = prefix.length 108 | 109 | AsyncStorage.getAllKeys((error, keys) => { 110 | if (error) return callback(error) 111 | 112 | keys = keys.filter(key => key.slice(0, prefixLen) === prefix) 113 | AsyncStorage.multiRemove(keys, callback) 114 | }) 115 | } 116 | 117 | module.exports = AsyncStorageCore 118 | -------------------------------------------------------------------------------- /example/ios/example/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 21 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /packages/pouchdb-adapter-asyncstorage/src/changes.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | import { uuid, filterChange } from 'pouchdb-utils' 4 | import { forDocument, getSequenceKeys, toSequenceKeys } from './keys' 5 | import inlineAttachments from './inline_attachments' 6 | 7 | export default function(db, api, opts) { 8 | const continuous = opts.continuous 9 | 10 | if (continuous) { 11 | const id = db.opts.name + ':' + uuid() 12 | db.changes.addListener(db.opts.name, id, api, opts) 13 | db.changes.notify(db.opts.name) 14 | return { 15 | cancel() { 16 | db.changes.removeListener(db.opts.name, id) 17 | } 18 | } 19 | } 20 | 21 | // const descending = opts.descending 22 | const lastSeq = opts.since || 0 23 | const limit = 'limit' in opts && opts.limit >= 0 ? opts.limit : -1 24 | const filterDocIds = opts.doc_ids && new Set(opts.doc_ids) 25 | const returnDocs = 26 | 'return_docs' in opts 27 | ? opts.return_docs 28 | : 'returnDocs' in opts 29 | ? opts.returnDocs 30 | : true 31 | const includeAttachments = 'attachments' in opts ? opts.attachments : false 32 | const binaryAttachments = 'binary' in opts ? opts.binary : false 33 | const filter = filterChange(opts) 34 | const complete = opts.complete 35 | const onChange = opts.onChange 36 | const processChange = opts.processChange 37 | 38 | db.storage.getKeys((error, keys) => { 39 | if (error) return complete(error) 40 | 41 | const filterSeqs = getSequenceKeys(keys).filter(seq => { 42 | if (lastSeq) return seq > lastSeq 43 | 44 | return true 45 | }) 46 | 47 | if (filterSeqs.length === 0) 48 | return complete(null, { last_seq: lastSeq, results: [] }) 49 | 50 | db.storage.multiGet(toSequenceKeys(filterSeqs), (error, dataDocs) => { 51 | if (error) return complete(error) 52 | 53 | const filterDocs = filterDocIds 54 | ? dataDocs.filter(doc => filterDocIds.has(doc._id)) 55 | : dataDocs.filter(doc => !doc._id.startsWith('_local')) 56 | if (filterDocs.length === 0) 57 | return complete(null, { last_seq: lastSeq, results: [] }) 58 | 59 | const changeDocIds = [ 60 | ...new Set(filterDocs.map(data => forDocument(data._id))) 61 | ] 62 | db.storage.multiGet(changeDocIds, (error, docs) => { 63 | const processChanges = () => { 64 | const dataObj = filterDocs.reduce((res, data) => { 65 | if (data) res[data._id] = data 66 | return res 67 | }, {}) 68 | 69 | const results = [] 70 | let lastChangeSeq 71 | for (let index = 0; index < docs.length; index++) { 72 | if (limit >= 0 && results.length > limit) break 73 | 74 | const doc = docs[index] 75 | const data = dataObj[doc.id] 76 | const change = processChange(data, doc, opts) 77 | change.seq = doc.seq 78 | change.rev = doc.rev 79 | 80 | const filtered = filter(change) 81 | if (typeof filtered === 'object') { 82 | return complete(filtered) 83 | } 84 | if (filtered) { 85 | if (returnDocs) { 86 | // correct Position??? 87 | change.changes[0].data = data 88 | } 89 | 90 | lastChangeSeq = change.seq 91 | results.push(change) 92 | onChange(change) 93 | } 94 | } 95 | 96 | complete(null, { 97 | results, 98 | last_seq: lastChangeSeq 99 | }) 100 | } 101 | 102 | if (error) return complete(error) 103 | 104 | if (!includeAttachments) return processChanges() 105 | 106 | inlineAttachments(db, dataDocs, { binaryAttachments }, error => { 107 | if (error) return complete(error) 108 | 109 | processChanges() 110 | }) 111 | }) 112 | }) 113 | }) 114 | } 115 | -------------------------------------------------------------------------------- /packages/pouchdb-adapter-asyncstorage/src/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | import './polyfill' 4 | 5 | // API implementations 6 | import allDocs from './all_docs' 7 | import bulkDocs from './bulk_docs' 8 | import changes from './changes' 9 | import destroy from './destroy' 10 | import doCompaction from './do_compaction' 11 | import get from './get' 12 | import getAttachment from './get_attachment' 13 | import getRevisionTree from './get_revision_tree' 14 | import info from './info' 15 | 16 | import { get as getDatabase, close as closeDatabase } from './databases' 17 | 18 | const ADAPTER_NAME = 'asyncstorage' 19 | 20 | function AsyncStoragePouch(dbOpts, constuctorCallback) { 21 | const api = this 22 | 23 | api._remote = false 24 | api.type = () => ADAPTER_NAME 25 | 26 | api._id = callback => { 27 | getDatabase(dbOpts) 28 | .then(database => 29 | sequence(cb => cb(null, database.meta.db_uuid), callback) 30 | ) 31 | .catch(callback) 32 | } 33 | api._info = callback => { 34 | getDatabase(dbOpts) 35 | .then(database => sequence(cb => info(database, cb), callback)) 36 | .catch(callback) 37 | } 38 | api._get = (id, opts, callback) => { 39 | getDatabase(dbOpts) 40 | .then(database => sequence(cb => get(database, id, opts, cb), callback)) 41 | .catch(callback) 42 | } 43 | api._getAttachment = (docId, attachId, attachment, opts, callback) => { 44 | getDatabase(dbOpts) 45 | .then(database => 46 | sequence( 47 | cb => getAttachment(database, docId, attachId, attachment, opts, cb), 48 | callback 49 | ) 50 | ) 51 | .catch(callback) 52 | } 53 | api._getRevisionTree = (id, callback) => { 54 | getDatabase(dbOpts) 55 | .then(database => 56 | sequence(cb => getRevisionTree(database, id, cb), callback) 57 | ) 58 | .catch(callback) 59 | } 60 | api._allDocs = (opts, callback) => { 61 | getDatabase(dbOpts) 62 | .then(database => sequence(cb => allDocs(database, opts, cb), callback)) 63 | .catch(callback) 64 | } 65 | api._bulkDocs = (req, opts, callback) => { 66 | getDatabase(dbOpts) 67 | .then(database => 68 | sequence(cb => bulkDocs(database, req, opts, cb), callback) 69 | ) 70 | .catch(callback) 71 | } 72 | api._changes = opts => { 73 | getDatabase(dbOpts) 74 | .then(database => 75 | sequence(cb => { 76 | changes(database, api, opts) 77 | cb() 78 | }) 79 | ) 80 | .catch(error => opts.complete && opts.complete(error)) 81 | } 82 | api._doCompaction = (id, revs, callback) => { 83 | getDatabase(dbOpts) 84 | .then(database => 85 | sequence(cb => doCompaction(database, id, revs, cb), callback) 86 | ) 87 | .catch(callback) 88 | } 89 | api._destroy = (opts, callback) => { 90 | getDatabase(dbOpts) 91 | .then(database => sequence(cb => destroy(database, opts, cb), callback)) 92 | .catch(callback) 93 | } 94 | api._close = callback => { 95 | sequence(cb => { 96 | closeDatabase(dbOpts.name) 97 | cb() 98 | }, callback) 99 | } 100 | 101 | constuctorCallback(null, api) 102 | 103 | const queue = [] 104 | let isRunning = false 105 | const sequence = (func, callback) => { 106 | const run = () => { 107 | if (isRunning || queue.length === 0) return 108 | 109 | isRunning = true 110 | const task = queue.shift() 111 | setImmediate(() => { 112 | task.func((error, result) => { 113 | task.callback && task.callback(error, result) 114 | isRunning = false 115 | run() 116 | }) 117 | }) 118 | } 119 | 120 | queue.push({ func, callback }) 121 | run() 122 | } 123 | } 124 | 125 | AsyncStoragePouch.valid = () => { 126 | try { 127 | return require('react-native').AsyncStorage !== null 128 | } catch (error) { 129 | return false 130 | } 131 | } 132 | 133 | AsyncStoragePouch.use_prefix = false 134 | 135 | export default function(PouchDB) { 136 | PouchDB.adapter(ADAPTER_NAME, AsyncStoragePouch, true) 137 | } 138 | -------------------------------------------------------------------------------- /packages/pouchdb-adapter-asyncstorage/src/all_docs.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | import { generateErrorFromResponse } from 'pouchdb-errors' 4 | import { collectConflicts } from 'pouchdb-merge' 5 | import { getDocumentKeys, toDocumentKeys, forSequence } from './keys' 6 | import inlineAttachments from './inline_attachments' 7 | 8 | export default function(db, opts, callback) { 9 | // get options like pouchdb-adapter-indexeddb 10 | const filterKey = 'key' in opts ? opts.key : false 11 | const skip = opts.skip || 0 12 | const limit = typeof opts.limit === 'number' ? opts.limit : -1 13 | const includeDeleted = 'deleted' in opts ? opts.deleted === 'ok' : false 14 | const includeDoc = 'include_docs' in opts ? opts.include_docs : true 15 | const includeAttachments = 'attachments' in opts ? opts.attachments : false 16 | const binaryAttachments = 'binary' in opts ? opts.binary : false 17 | const includeConflicts = 'conflicts' in opts ? opts.conflicts : false 18 | const descending = 'descending' in opts && opts.descending 19 | const startkey = descending 20 | ? 'endkey' in opts 21 | ? opts.endkey 22 | : false 23 | : 'startkey' in opts 24 | ? opts.startkey 25 | : false 26 | const endkey = descending 27 | ? 'startkey' in opts 28 | ? opts.startkey 29 | : false 30 | : 'endkey' in opts 31 | ? opts.endkey 32 | : false 33 | const excludeStart = descending && !(opts.inclusive_end !== false) 34 | const inclusiveEnd = descending || opts.inclusive_end !== false 35 | 36 | const docToRow = doc => { 37 | const result = { 38 | id: doc.id, 39 | key: doc.id, 40 | value: { 41 | deleted: doc.deleted, 42 | rev: doc.winningRev 43 | } 44 | } 45 | 46 | if (includeDoc && !doc.deleted) { 47 | result.doc = { 48 | ...doc.data, 49 | _id: doc.id, 50 | _rev: doc.winningRev 51 | } 52 | 53 | if (includeConflicts) { 54 | result.doc._conflicts = collectConflicts(doc) 55 | } 56 | } 57 | 58 | return result 59 | } 60 | 61 | getDocs( 62 | db, 63 | { 64 | filterKey, 65 | startkey, 66 | endkey, 67 | skip, 68 | limit, 69 | excludeStart, 70 | inclusiveEnd, 71 | includeAttachments, 72 | binaryAttachments, 73 | includeDeleted, 74 | descending 75 | }, 76 | (error, docs) => { 77 | if (error) return callback(generateErrorFromResponse(error)) 78 | 79 | let rows = docs.map(docToRow) 80 | 81 | callback(null, { 82 | total_rows: db.meta.doc_count, 83 | offset: skip, 84 | rows 85 | }) 86 | } 87 | ) 88 | } 89 | 90 | const getDocs = ( 91 | db, 92 | { 93 | filterKey, 94 | startkey, 95 | endkey, 96 | skip, 97 | limit, 98 | excludeStart, 99 | inclusiveEnd, 100 | includeDeleted, 101 | includeAttachments, 102 | binaryAttachments, 103 | descending 104 | }, 105 | callback 106 | ) => { 107 | db.storage.getKeys((error, keys) => { 108 | if (error) return callback(error) 109 | 110 | const filterKeys = getDocumentKeys(keys).filter(key => { 111 | if (startkey && startkey > key) return false 112 | if (excludeStart && startkey && startkey === key) return false 113 | if (endkey) return inclusiveEnd ? endkey >= key : endkey > key 114 | if (filterKey) return filterKey === key 115 | 116 | return true 117 | }) 118 | 119 | db.storage.multiGet(toDocumentKeys(filterKeys), (error, docs) => { 120 | if (error) return callback(error) 121 | 122 | let result = includeDeleted ? docs : docs.filter(doc => !doc.deleted) 123 | 124 | if (descending) result = result.reverse() 125 | if (skip > 0) result = result.slice(skip) 126 | if (limit >= 0 && result.length > limit) result = result.slice(0, limit) 127 | 128 | let seqKeys = result.map(item => { 129 | return forSequence(item.rev_map[item.winningRev]) 130 | }) 131 | db.storage.multiGet(seqKeys, (error, dataDocs) => { 132 | if (error) return callback(error) 133 | 134 | const dataObj = dataDocs.reduce((res, data) => { 135 | if (data) res[data._id] = data 136 | return res 137 | }, {}) 138 | 139 | if (!includeAttachments) { 140 | return callback( 141 | null, 142 | result.map(item => { 143 | item.data = dataObj[item.id] 144 | return item 145 | }) 146 | ) 147 | } 148 | 149 | inlineAttachments(db, dataDocs, { binaryAttachments }, error => { 150 | if (error) return callback(error) 151 | 152 | return callback( 153 | null, 154 | result.map(item => { 155 | item.data = dataObj[item.id] 156 | return item 157 | }) 158 | ) 159 | }) 160 | }) 161 | }) 162 | }) 163 | } 164 | -------------------------------------------------------------------------------- /example/ios/example.xcodeproj/xcshareddata/xcschemes/example.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 43 | 49 | 50 | 51 | 52 | 53 | 59 | 60 | 62 | 68 | 69 | 70 | 71 | 72 | 78 | 79 | 80 | 81 | 82 | 83 | 94 | 96 | 102 | 103 | 104 | 105 | 106 | 107 | 113 | 115 | 121 | 122 | 123 | 124 | 126 | 127 | 130 | 131 | 132 | -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 10 | DEFAULT_JVM_OPTS="" 11 | 12 | APP_NAME="Gradle" 13 | APP_BASE_NAME=`basename "$0"` 14 | 15 | # Use the maximum available, or set MAX_FD != -1 to use that value. 16 | MAX_FD="maximum" 17 | 18 | warn ( ) { 19 | echo "$*" 20 | } 21 | 22 | die ( ) { 23 | echo 24 | echo "$*" 25 | echo 26 | exit 1 27 | } 28 | 29 | # OS specific support (must be 'true' or 'false'). 30 | cygwin=false 31 | msys=false 32 | darwin=false 33 | case "`uname`" in 34 | CYGWIN* ) 35 | cygwin=true 36 | ;; 37 | Darwin* ) 38 | darwin=true 39 | ;; 40 | MINGW* ) 41 | msys=true 42 | ;; 43 | esac 44 | 45 | # For Cygwin, ensure paths are in UNIX format before anything is touched. 46 | if $cygwin ; then 47 | [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"` 48 | fi 49 | 50 | # Attempt to set APP_HOME 51 | # Resolve links: $0 may be a link 52 | PRG="$0" 53 | # Need this for relative symlinks. 54 | while [ -h "$PRG" ] ; do 55 | ls=`ls -ld "$PRG"` 56 | link=`expr "$ls" : '.*-> \(.*\)$'` 57 | if expr "$link" : '/.*' > /dev/null; then 58 | PRG="$link" 59 | else 60 | PRG=`dirname "$PRG"`"/$link" 61 | fi 62 | done 63 | SAVED="`pwd`" 64 | cd "`dirname \"$PRG\"`/" >&- 65 | APP_HOME="`pwd -P`" 66 | cd "$SAVED" >&- 67 | 68 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 69 | 70 | # Determine the Java command to use to start the JVM. 71 | if [ -n "$JAVA_HOME" ] ; then 72 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 73 | # IBM's JDK on AIX uses strange locations for the executables 74 | JAVACMD="$JAVA_HOME/jre/sh/java" 75 | else 76 | JAVACMD="$JAVA_HOME/bin/java" 77 | fi 78 | if [ ! -x "$JAVACMD" ] ; then 79 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 80 | 81 | Please set the JAVA_HOME variable in your environment to match the 82 | location of your Java installation." 83 | fi 84 | else 85 | JAVACMD="java" 86 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 87 | 88 | Please set the JAVA_HOME variable in your environment to match the 89 | location of your Java installation." 90 | fi 91 | 92 | # Increase the maximum file descriptors if we can. 93 | if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then 94 | MAX_FD_LIMIT=`ulimit -H -n` 95 | if [ $? -eq 0 ] ; then 96 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 97 | MAX_FD="$MAX_FD_LIMIT" 98 | fi 99 | ulimit -n $MAX_FD 100 | if [ $? -ne 0 ] ; then 101 | warn "Could not set maximum file descriptor limit: $MAX_FD" 102 | fi 103 | else 104 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 105 | fi 106 | fi 107 | 108 | # For Darwin, add options to specify how the application appears in the dock 109 | if $darwin; then 110 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 111 | fi 112 | 113 | # For Cygwin, switch paths to Windows format before running java 114 | if $cygwin ; then 115 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 116 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 117 | 118 | # We build the pattern for arguments to be converted via cygpath 119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 120 | SEP="" 121 | for dir in $ROOTDIRSRAW ; do 122 | ROOTDIRS="$ROOTDIRS$SEP$dir" 123 | SEP="|" 124 | done 125 | OURCYGPATTERN="(^($ROOTDIRS))" 126 | # Add a user-defined pattern to the cygpath arguments 127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 129 | fi 130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 131 | i=0 132 | for arg in "$@" ; do 133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 135 | 136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 138 | else 139 | eval `echo args$i`="\"$arg\"" 140 | fi 141 | i=$((i+1)) 142 | done 143 | case $i in 144 | (0) set -- ;; 145 | (1) set -- "$args0" ;; 146 | (2) set -- "$args0" "$args1" ;; 147 | (3) set -- "$args0" "$args1" "$args2" ;; 148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 154 | esac 155 | fi 156 | 157 | # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules 158 | function splitJvmOpts() { 159 | JVM_OPTS=("$@") 160 | } 161 | eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS 162 | JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" 163 | 164 | exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" 165 | -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: "com.android.application" 2 | 3 | import com.android.build.OutputFile 4 | 5 | /** 6 | * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets 7 | * and bundleReleaseJsAndAssets). 8 | * These basically call `react-native bundle` with the correct arguments during the Android build 9 | * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the 10 | * bundle directly from the development server. Below you can see all the possible configurations 11 | * and their defaults. If you decide to add a configuration block, make sure to add it before the 12 | * `apply from: "../../node_modules/react-native/react.gradle"` line. 13 | * 14 | * project.ext.react = [ 15 | * // the name of the generated asset file containing your JS bundle 16 | * bundleAssetName: "index.android.bundle", 17 | * 18 | * // the entry file for bundle generation 19 | * entryFile: "index.android.js", 20 | * 21 | * // whether to bundle JS and assets in debug mode 22 | * bundleInDebug: false, 23 | * 24 | * // whether to bundle JS and assets in release mode 25 | * bundleInRelease: true, 26 | * 27 | * // whether to bundle JS and assets in another build variant (if configured). 28 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants 29 | * // The configuration property can be in the following formats 30 | * // 'bundleIn${productFlavor}${buildType}' 31 | * // 'bundleIn${buildType}' 32 | * // bundleInFreeDebug: true, 33 | * // bundleInPaidRelease: true, 34 | * // bundleInBeta: true, 35 | * 36 | * // the root of your project, i.e. where "package.json" lives 37 | * root: "../../", 38 | * 39 | * // where to put the JS bundle asset in debug mode 40 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", 41 | * 42 | * // where to put the JS bundle asset in release mode 43 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release", 44 | * 45 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 46 | * // require('./image.png')), in debug mode 47 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", 48 | * 49 | * // where to put drawable resources / React Native assets, e.g. the ones you use via 50 | * // require('./image.png')), in release mode 51 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", 52 | * 53 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means 54 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to 55 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle 56 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ 57 | * // for example, you might want to remove it from here. 58 | * inputExcludes: ["android/**", "ios/**"], 59 | * 60 | * // override which node gets called and with what additional arguments 61 | * nodeExecutableAndArgs: ["node"] 62 | * 63 | * // supply additional arguments to the packager 64 | * extraPackagerArgs: [] 65 | * ] 66 | */ 67 | 68 | apply from: "../../node_modules/react-native/react.gradle" 69 | 70 | /** 71 | * Set this to true to create two separate APKs instead of one: 72 | * - An APK that only works on ARM devices 73 | * - An APK that only works on x86 devices 74 | * The advantage is the size of the APK is reduced by about 4MB. 75 | * Upload all the APKs to the Play Store and people will download 76 | * the correct one based on the CPU architecture of their device. 77 | */ 78 | def enableSeparateBuildPerCPUArchitecture = false 79 | 80 | /** 81 | * Run Proguard to shrink the Java bytecode in release builds. 82 | */ 83 | def enableProguardInReleaseBuilds = false 84 | 85 | android { 86 | compileSdkVersion 23 87 | buildToolsVersion "23.0.1" 88 | 89 | defaultConfig { 90 | applicationId "com.example" 91 | minSdkVersion 16 92 | targetSdkVersion 22 93 | versionCode 1 94 | versionName "1.0" 95 | ndk { 96 | abiFilters "armeabi-v7a", "x86" 97 | } 98 | } 99 | splits { 100 | abi { 101 | reset() 102 | enable enableSeparateBuildPerCPUArchitecture 103 | universalApk false // If true, also generate a universal APK 104 | include "armeabi-v7a", "x86" 105 | } 106 | } 107 | buildTypes { 108 | release { 109 | minifyEnabled enableProguardInReleaseBuilds 110 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" 111 | } 112 | } 113 | // applicationVariants are e.g. debug, release 114 | applicationVariants.all { variant -> 115 | variant.outputs.each { output -> 116 | // For each separate APK per architecture, set a unique version code as described here: 117 | // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits 118 | def versionCodes = ["armeabi-v7a":1, "x86":2] 119 | def abi = output.getFilter(OutputFile.ABI) 120 | if (abi != null) { // null for the universal-debug, universal-release variants 121 | output.versionCodeOverride = 122 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode 123 | } 124 | } 125 | } 126 | } 127 | 128 | dependencies { 129 | compile fileTree(dir: "libs", include: ["*.jar"]) 130 | compile "com.android.support:appcompat-v7:23.0.1" 131 | compile "com.facebook.react:react-native:+" // From node_modules 132 | } 133 | 134 | // Run this once to be able to run the application with BUCK 135 | // puts all compile dependencies into folder libs for BUCK to use 136 | task copyDownloadableDepsToLibs(type: Copy) { 137 | from configurations.compile 138 | into 'libs' 139 | } 140 | -------------------------------------------------------------------------------- /packages/pouchdb-adapter-asyncstorage/src/bulk_docs.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | import { 4 | createError, 5 | generateErrorFromResponse, 6 | BAD_ARG, 7 | BAD_REQUEST, 8 | MISSING_DOC, 9 | MISSING_STUB, 10 | REV_CONFLICT 11 | } from 'pouchdb-errors' 12 | import { parseDoc } from 'pouchdb-adapter-utils' 13 | import { merge, winningRev as computeWinningRev } from 'pouchdb-merge' 14 | import { 15 | blobOrBufferToBase64, 16 | atob as ensureB64String 17 | } from 'pouchdb-binary-utils' 18 | import Md5 from 'spark-md5' 19 | 20 | import { forDocument, forAttachment, forMeta, forSequence } from './keys' 21 | 22 | export default function(db, req, opts, callback) { 23 | const wasDelete = 'was_delete' in opts 24 | const newEdits = opts.new_edits 25 | const revsLimit = db.opts.revs_limit || 1000 26 | const newMeta = { ...db.meta } 27 | 28 | const mapRequestDoc = doc => { 29 | const parsedDoc = parseDoc(doc, newEdits) 30 | if (!parsedDoc.metadata) throw BAD_REQUEST 31 | 32 | return { 33 | id: parsedDoc.metadata.id, 34 | rev: parsedDoc.metadata.rev, 35 | rev_tree: parsedDoc.metadata.rev_tree, 36 | deleted: !!parsedDoc.metadata.deleted, 37 | data: parsedDoc.data 38 | } 39 | } 40 | 41 | const processAllAttachments = data => { 42 | const processAttachment = attachment => { 43 | if (attachment.stub) { 44 | return new Promise((resolve, reject) => { 45 | if (!attachment.digest) 46 | return reject(createError(MISSING_STUB, 'no digest')) 47 | 48 | const attachmentKey = forAttachment(attachment.digest) 49 | db.storage.get(attachmentKey, (error, data) => { 50 | if (error) return reject(createError(MISSING_STUB, error.message)) 51 | if (!data) 52 | return reject( 53 | createError(MISSING_STUB, 'can not find attachment') 54 | ) 55 | return resolve({ 56 | attachment, 57 | dbAttachment: [attachmentKey, data] 58 | }) 59 | }) 60 | }) 61 | } 62 | 63 | let resolveB64Data 64 | if (typeof attachment.data === 'string') { 65 | try { 66 | ensureB64String(attachment.data) 67 | } catch (error) { 68 | return Promise.reject( 69 | createError(BAD_ARG, 'Attachment is not a valid base64 string') 70 | ) 71 | } 72 | resolveB64Data = Promise.resolve(attachment.data) 73 | } else { 74 | resolveB64Data = new Promise((resolve, reject) => { 75 | blobOrBufferToBase64(attachment.data, b64 => resolve(b64)) 76 | }).catch(() => 77 | Promise.reject( 78 | createError(BAD_ARG, 'Attachment is not a valid buffer/blob') 79 | ) 80 | ) 81 | } 82 | 83 | return resolveB64Data.then( 84 | b64Data => 85 | new Promise((resolve, reject) => { 86 | const meta = { 87 | digest: 'md5-' + Md5.hash(b64Data), 88 | content_type: attachment.content_type, 89 | length: b64Data.length || 0, 90 | stub: true 91 | } 92 | 93 | const dbAttachment = [ 94 | forAttachment(meta.digest), 95 | { 96 | digest: meta.digest, 97 | content_type: meta.content_type, 98 | data: b64Data 99 | } 100 | ] 101 | resolve({ attachment: meta, dbAttachment }) 102 | }) 103 | ) 104 | } 105 | 106 | if (!data._attachments) return Promise.resolve(null) 107 | 108 | const promises = Object.keys(data._attachments).map(key => { 109 | if (key.startsWith('_')) { 110 | return Promise.reject( 111 | createError(BAD_REQUEST, 'Attachment name can not start with "_"') 112 | ) 113 | } 114 | return processAttachment(data._attachments[key]).then( 115 | ({ attachment, dbAttachment }) => { 116 | data._attachments[key] = attachment 117 | return dbAttachment 118 | } 119 | ) 120 | }) 121 | 122 | return Promise.all(promises) 123 | } 124 | 125 | const getChange = (oldDoc, newDoc) => { 126 | // pouchdb magic 127 | const rootIsMissing = doc => doc.rev_tree[0].ids[1].status === 'missing' 128 | // const getAttachments = () => {} 129 | 130 | const getUpdate = () => { 131 | // Ignore updates to existing revisions 132 | if (newDoc.rev in oldDoc.rev_map) return {} 133 | 134 | const merged = merge(oldDoc.rev_tree, newDoc.rev_tree[0], revsLimit) 135 | newDoc.rev_tree = merged.tree 136 | 137 | const inConflict = 138 | newEdits && 139 | ((oldDoc.deleted && newDoc.deleted) || 140 | (!oldDoc.deleted && merged.conflicts !== 'new_leaf') || 141 | (oldDoc.deleted && 142 | !newDoc.deleted && 143 | merged.conflicts === 'new_branch')) 144 | 145 | if (inConflict) { 146 | return { error: createError(REV_CONFLICT) } 147 | } 148 | 149 | if (oldDoc.deleted && !newDoc.deleted) newMeta.doc_count++ 150 | else if (!oldDoc.deleted && newDoc.deleted) newMeta.doc_count-- 151 | 152 | newDoc.seq = ++newMeta.update_seq 153 | newDoc.rev_map = oldDoc.rev_map 154 | newDoc.winningRev = computeWinningRev(newDoc) 155 | newDoc.rev_map[newDoc.rev] = newDoc.seq 156 | 157 | const data = newDoc.data 158 | delete newDoc.data 159 | data._id = newDoc.id 160 | data._rev = newDoc.rev 161 | if (newDoc.deleted) data._deleted = true 162 | 163 | return { 164 | doc: [forDocument(newDoc.id), newDoc], 165 | data: [forSequence(newDoc.seq), data], 166 | result: { 167 | ok: true, 168 | id: newDoc.id, 169 | rev: newDoc.rev 170 | } 171 | } 172 | } 173 | const getInsert = () => { 174 | const merged = merge([], newDoc.rev_tree[0], revsLimit) 175 | newDoc.rev_tree = merged.tree 176 | newDoc.seq = ++newMeta.update_seq 177 | newDoc.rev_map = {} 178 | newDoc.rev_map[newDoc.rev] = newDoc.seq 179 | newDoc.winningRev = computeWinningRev(newDoc) 180 | if (!newDoc.deleted) newMeta.doc_count++ 181 | 182 | const data = newDoc.data 183 | delete newDoc.data 184 | data._id = newDoc.id 185 | data._rev = newDoc.rev 186 | 187 | return { 188 | doc: [forDocument(newDoc.id), newDoc], 189 | data: [forSequence(newDoc.seq), data], 190 | result: { 191 | ok: true, 192 | id: newDoc.id, 193 | rev: newDoc.rev 194 | } 195 | } 196 | } 197 | 198 | return new Promise((resolve, reject) => { 199 | if (wasDelete && !oldDoc) { 200 | return reject(createError(MISSING_DOC, 'deleted')) 201 | } 202 | if (newEdits && !oldDoc && rootIsMissing(newDoc)) { 203 | return reject(createError(REV_CONFLICT)) 204 | } 205 | 206 | processAllAttachments(newDoc.data) 207 | .then(attachments => { 208 | const change = oldDoc ? getUpdate() : getInsert() 209 | if (change.error) return reject(change.error) 210 | if (attachments) change.attachments = attachments 211 | resolve(change) 212 | }) 213 | .catch(reject) 214 | }) 215 | } 216 | 217 | let newDocs 218 | try { 219 | newDocs = req.docs.map(mapRequestDoc) 220 | } catch (error) { 221 | return callback(generateErrorFromResponse(error)) 222 | } 223 | 224 | const docIds = newDocs.map(doc => forDocument(doc.id)) 225 | db.storage.multiGet(docIds, (error, oldDocs) => { 226 | if (error) return callback(generateErrorFromResponse(error)) 227 | 228 | const oldDocsObj = oldDocs.reduce((result, doc) => { 229 | if (doc && doc.id) result[doc.id] = doc 230 | return result 231 | }, {}) 232 | 233 | const promises = newDocs.map(newDoc => { 234 | let oldDoc = oldDocsObj[newDoc.id] 235 | oldDoc = typeof oldDoc === 'function' ? undefined : oldDoc 236 | 237 | return getChange(oldDoc, newDoc) 238 | }) 239 | Promise.all(promises) 240 | .then(changes => { 241 | changes = changes.filter(change => !!change.doc) 242 | if (changes.length === 0) return callback(null, []) 243 | 244 | const dbChanges = [] 245 | dbChanges.push([forMeta('_local_doc_count'), newMeta.doc_count]) 246 | dbChanges.push([forMeta('_local_last_update_seq'), newMeta.update_seq]) 247 | 248 | changes.forEach(change => { 249 | dbChanges.push(change.doc) 250 | dbChanges.push(change.data) 251 | change.attachments && 252 | change.attachments.forEach(attachment => { 253 | if (attachment) dbChanges.push(attachment) 254 | }) 255 | }) 256 | 257 | db.storage.multiPut(dbChanges, error => { 258 | if (error) return callback(generateErrorFromResponse(error)) 259 | 260 | db.meta.doc_count = newMeta.doc_count 261 | db.meta.update_seq = newMeta.update_seq 262 | db.changes.notify(db.opts.name) 263 | 264 | callback(null, changes.map(change => change.result)) 265 | }) 266 | }) 267 | .catch(callback) 268 | }) 269 | } 270 | -------------------------------------------------------------------------------- /example/app.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | import React from 'react' 4 | import { 5 | AsyncStorage, 6 | ListView, 7 | StyleSheet, 8 | Text, 9 | TextInput, 10 | TouchableHighlight, 11 | View 12 | } from 'react-native' 13 | 14 | import ActionButton from 'react-native-action-button' 15 | import PouchDB from 'pouchdb-react-native' 16 | import NavigationExperimental from 'react-native-deprecated-custom-components' 17 | 18 | const localDB = new PouchDB('myDB') 19 | console.log(localDB.adapter) 20 | 21 | AsyncStorage.getAllKeys() 22 | .then(keys => AsyncStorage.multiGet(keys)) 23 | .then(items => console.log('all pure Items', items)) 24 | .catch(error => console.warn('error get all Items', error)) 25 | 26 | export default React.createClass({ 27 | getInitialState () { 28 | const updateDocs = () => { 29 | localDB.allDocs({include_docs: true, limit: null}) 30 | .then(result => { 31 | const items = result.rows.map(row => row.doc) 32 | const ds = new ListView.DataSource({rowHasChanged: (r1, r2) => r1.id !== r2.id}) 33 | this.setState({ 34 | dataSource: ds.cloneWithRows(items), 35 | count: items.length 36 | }) 37 | }) 38 | .catch(error => console.warn('Could not load Documents', error, error.message)) 39 | } 40 | 41 | localDB.changes({since: 'now', live: true}) 42 | .on('change', () => updateDocs()) 43 | 44 | updateDocs() 45 | 46 | return { 47 | dataSource: null, 48 | syncUrl: 'http://localhost:5984/test' 49 | } 50 | }, 51 | render () { 52 | const renderScene = (route, navigator) => ( 53 | 54 | {route.render()} 55 | 56 | ) 57 | 58 | const renderMain = () => { 59 | const insertAttachment = () => { 60 | const doc = { 61 | 'title': 'with attachment', 62 | '_attachments': { 63 | 'att.txt': { 64 | 'content_type': 'text/plain', 65 | 'data': 'TGVnZW5kYXJ5IGhlYXJ0cywgdGVhciB1cyBhbGwgYXBhcnQKTWFrZS' + 66 | 'BvdXIgZW1vdGlvbnMgYmxlZWQsIGNyeWluZyBvdXQgaW4gbmVlZA==' 67 | } 68 | } 69 | } 70 | 71 | localDB.post(doc) 72 | .then(result => console.log('save.attachment', result)) 73 | .catch(error => console.warn('save.attachment.error', error, error.message, error.stack)) 74 | } 75 | 76 | const insertRecords = count => { 77 | for (let index = 0; index < count; index++) { 78 | localDB.post({ 79 | text: `Record ${index}/${count}` 80 | }) 81 | } 82 | } 83 | 84 | const destroy = count => { 85 | localDB.destroy() 86 | .then(() => console.log('destroyed')) 87 | .catch(error => console.warn('destroyed', error)) 88 | } 89 | 90 | const { dataSource } = this.state 91 | 92 | const renderSeparator = (sectionID, rowID) => ( 93 | 96 | ) 97 | 98 | const renderRow = (row) => { 99 | const updateItem = () => { 100 | const newRow = {...row} 101 | newRow.clickCount = newRow.clickCount ? newRow.clickCount + 1 : 1 102 | 103 | localDB.put(newRow) 104 | .then(result => console.log('Updated Item', result)) 105 | .catch(error => console.warn('Error during update Item', error)) 106 | } 107 | 108 | return ( 109 | 110 | 111 | {row._id} 112 | {JSON.stringify(row, null, 4)} 113 | 114 | 115 | ) 116 | } 117 | 118 | const renderList = () => ( 119 | 124 | ) 125 | 126 | return ( 127 | 128 | 129 | {!!this._sync && {this.state.syncUrl}} 130 | Count: {this.state.count} 131 | 132 | 134 | {!dataSource 135 | ? (Loading...) 136 | : renderList() 137 | } 138 | 139 | 143 | destroy 144 | 145 | 149 | attach 150 | 151 | insertRecords(250)}> 155 | insert 156 | 157 | this._navigator.push({name: 'Sync', render: renderSync})}> 161 | sync 162 | 163 | this._navigator.push({name: 'AddItem', render: renderAddItem})}> 167 | + 168 | 169 | 170 | 171 | ) 172 | } 173 | 174 | const renderButton = (text, onPress) => { 175 | return ( 176 | 187 | 198 | {text} 199 | 200 | 201 | ) 202 | } 203 | 204 | const renderSync = () => { 205 | const addSync = () => { 206 | if (this._sync) { 207 | this._sync.cancel() 208 | this._sync = null 209 | } 210 | 211 | if (this.state.syncUrl) { 212 | const remoteDb = new PouchDB(this.state.syncUrl, {ajax: {cache: false}}) 213 | this._sync = PouchDB.sync(localDB, remoteDb, {live: true, retry: true}) 214 | .on('error', error => console.error('Sync Error', error)) 215 | .on('change', info => console.log('Sync change', info)) 216 | .on('paused', info => console.log('Sync paused', info)) 217 | } 218 | 219 | this._navigator.pop() 220 | } 221 | 222 | return ( 223 | 224 | this.setState({syncUrl: text})} 237 | value={this.state.syncUrl} /> 238 | {renderButton('Add Sync', addSync)} 239 | 240 | ) 241 | } 242 | 243 | const renderAddItem = () => { 244 | const addItem = () => { 245 | localDB.post(JSON.parse(this.state.newItem)) 246 | .then(result => { 247 | this.setState({newItem: ''}) 248 | this._navigator.pop() 249 | }) 250 | .catch(error => console.error('Error during create Item', error, error.message)) 251 | } 252 | 253 | return ( 254 | 255 | this.setState({newItem: text})} 268 | value={this.state.newItem} /> 269 | {renderButton('Add Item', addItem)} 270 | 271 | ) 272 | } 273 | 274 | return ( 275 | 276 | { this._navigator = navigator }} 278 | renderScene={renderScene} 279 | initialRoute={{name: 'Main', render: renderMain}} 280 | /> 281 | 282 | ) 283 | } 284 | }) 285 | -------------------------------------------------------------------------------- /packages/pouchdb-adapter-asyncstorage/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "pouchdb-adapter-asyncstorage", 3 | "version": "6.4.1", 4 | "lockfileVersion": 1, 5 | "requires": true, 6 | "dependencies": { 7 | "argsarray": { 8 | "version": "0.0.1", 9 | "resolved": "https://registry.npmjs.org/argsarray/-/argsarray-0.0.1.tgz", 10 | "integrity": "sha1-bnIHtOzbObCviDA/pa4ivajfYcs=" 11 | }, 12 | "atob": { 13 | "version": "2.1.1", 14 | "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.1.tgz", 15 | "integrity": "sha1-ri1acpR38onWDdf5amMUoi3Wwio=" 16 | }, 17 | "base64-js": { 18 | "version": "1.3.0", 19 | "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.0.tgz", 20 | "integrity": "sha512-ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw==" 21 | }, 22 | "blob-polyfill": { 23 | "version": "3.0.20180112", 24 | "resolved": "https://registry.npmjs.org/blob-polyfill/-/blob-polyfill-3.0.20180112.tgz", 25 | "integrity": "sha512-DX/47MXO+hNuEhuZRW9/yykNoCe7E/ywcPKtPVqGPRwLlowN811xi/3yVMQkE2fhTGHfrH8O9BMuhM7IdcRyew==" 26 | }, 27 | "btoa": { 28 | "version": "1.2.1", 29 | "resolved": "https://registry.npmjs.org/btoa/-/btoa-1.2.1.tgz", 30 | "integrity": "sha512-SB4/MIGlsiVkMcHmT+pSmIPoNDoHg+7cMzmt3Uxt628MTz2487DKSqK/fuhFBrkuqrYv5UCEnACpF4dTFNKc/g==" 31 | }, 32 | "buffer": { 33 | "version": "5.2.0", 34 | "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.2.0.tgz", 35 | "integrity": "sha512-nUJyfChH7PMJy75eRDCCKtszSEFokUNXC1hNVSe+o+VdcgvDPLs20k3v8UXI8ruRYAJiYtyRea8mYyqPxoHWDw==", 36 | "requires": { 37 | "base64-js": "^1.0.2", 38 | "ieee754": "^1.1.4" 39 | } 40 | }, 41 | "buffer-from": { 42 | "version": "1.1.0", 43 | "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.0.tgz", 44 | "integrity": "sha512-c5mRlguI/Pe2dSZmpER62rSCu0ryKmWddzRYsuXc50U2/g8jMOulc31VZMa4mYx31U5xsmSOpDCgH88Vl9cDGQ==" 45 | }, 46 | "clone-buffer": { 47 | "version": "1.0.0", 48 | "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz", 49 | "integrity": "sha1-4+JbIHrE5wGvch4staFnksrD3Fg=" 50 | }, 51 | "events": { 52 | "version": "3.0.0", 53 | "resolved": "https://registry.npmjs.org/events/-/events-3.0.0.tgz", 54 | "integrity": "sha512-Dc381HFWJzEOhQ+d8pkNon++bk9h6cdAoAj4iE6Q4y6xgTzySWXlKn05/TVNpjnfRqi/X0EpJEJohPjNI3zpVA==" 55 | }, 56 | "ieee754": { 57 | "version": "1.1.12", 58 | "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.12.tgz", 59 | "integrity": "sha512-GguP+DRY+pJ3soyIiGPTvdiVXjZ+DbXOxGpXn3eMvNW4x4irjqXm4wHKscC+TfxSJ0yw/S1F24tqdMNsMZTiLA==" 60 | }, 61 | "immediate": { 62 | "version": "3.0.6", 63 | "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz", 64 | "integrity": "sha1-nbHb0Pr43m++D13V5Wu2BigN5ps=" 65 | }, 66 | "inherits": { 67 | "version": "2.0.3", 68 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", 69 | "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" 70 | }, 71 | "left-pad": { 72 | "version": "1.3.0", 73 | "resolved": "https://registry.npmjs.org/left-pad/-/left-pad-1.3.0.tgz", 74 | "integrity": "sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA==" 75 | }, 76 | "pouchdb-adapter-utils": { 77 | "version": "7.0.0", 78 | "resolved": "https://registry.npmjs.org/pouchdb-adapter-utils/-/pouchdb-adapter-utils-7.0.0.tgz", 79 | "integrity": "sha512-UWKPC6jkz6mHUzZefrU7P5X8ZGvBC8LSNZ7BIp0hWvJE6c20cnpDwedTVDpZORcCbVJpDmFOHBYnOqEIblPtbA==", 80 | "requires": { 81 | "pouchdb-binary-utils": "7.0.0", 82 | "pouchdb-collections": "7.0.0", 83 | "pouchdb-errors": "7.0.0", 84 | "pouchdb-md5": "7.0.0", 85 | "pouchdb-merge": "7.0.0", 86 | "pouchdb-utils": "7.0.0" 87 | }, 88 | "dependencies": { 89 | "buffer-from": { 90 | "version": "1.1.0", 91 | "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.0.tgz", 92 | "integrity": "sha512-c5mRlguI/Pe2dSZmpER62rSCu0ryKmWddzRYsuXc50U2/g8jMOulc31VZMa4mYx31U5xsmSOpDCgH88Vl9cDGQ==" 93 | }, 94 | "pouchdb-binary-utils": { 95 | "version": "7.0.0", 96 | "resolved": "https://registry.npmjs.org/pouchdb-binary-utils/-/pouchdb-binary-utils-7.0.0.tgz", 97 | "integrity": "sha512-yUktdOPIPvOVouCjJN3uop+bCcpdPwePrLm9eUAZNgEYnUFu0njdx7Q0WRsZ7UJ6l75HinL5ZHk4bnvEt86FLw==", 98 | "requires": { 99 | "buffer-from": "1.1.0" 100 | } 101 | }, 102 | "pouchdb-collections": { 103 | "version": "7.0.0", 104 | "resolved": "https://registry.npmjs.org/pouchdb-collections/-/pouchdb-collections-7.0.0.tgz", 105 | "integrity": "sha512-DaoUr/vU24Q3gM6ghj0va9j/oBanPwkbhkvnqSyC3Dm5dgf5pculNxueLF9PKMo3ycApoWzHMh6N2N8KJbDU2Q==" 106 | }, 107 | "pouchdb-errors": { 108 | "version": "7.0.0", 109 | "resolved": "https://registry.npmjs.org/pouchdb-errors/-/pouchdb-errors-7.0.0.tgz", 110 | "integrity": "sha512-dTusY8nnTw4HIztCrNl7AoGgwvS1bVf/3/97hDaGc4ytn72V9/4dK8kTqlimi3UpaurohYRnqac0SGXYP8vgXA==", 111 | "requires": { 112 | "inherits": "2.0.3" 113 | } 114 | }, 115 | "pouchdb-merge": { 116 | "version": "7.0.0", 117 | "resolved": "https://registry.npmjs.org/pouchdb-merge/-/pouchdb-merge-7.0.0.tgz", 118 | "integrity": "sha512-tci5u6NpznQhGcPv4ho1h0miky9rs+ds/T9zQ9meQeDZbUojXNaX1Jxsb0uYEQQ+HMqdcQs3Akdl0/u0mgwPGg==" 119 | }, 120 | "pouchdb-utils": { 121 | "version": "7.0.0", 122 | "resolved": "https://registry.npmjs.org/pouchdb-utils/-/pouchdb-utils-7.0.0.tgz", 123 | "integrity": "sha512-1bnoX1KdZYHv9wicDIFdO0PLiVIMzNDUBUZ/yOJZ+6LW6niQCB8aCv09ZztmKfSQcU5nnN3fe656tScBgP6dOQ==", 124 | "requires": { 125 | "argsarray": "0.0.1", 126 | "clone-buffer": "1.0.0", 127 | "immediate": "3.0.6", 128 | "inherits": "2.0.3", 129 | "pouchdb-collections": "7.0.0", 130 | "pouchdb-errors": "7.0.0", 131 | "pouchdb-md5": "7.0.0", 132 | "uuid": "3.2.1" 133 | } 134 | } 135 | } 136 | }, 137 | "pouchdb-binary-utils": { 138 | "version": "7.0.0", 139 | "resolved": "https://registry.npmjs.org/pouchdb-binary-utils/-/pouchdb-binary-utils-7.0.0.tgz", 140 | "integrity": "sha512-yUktdOPIPvOVouCjJN3uop+bCcpdPwePrLm9eUAZNgEYnUFu0njdx7Q0WRsZ7UJ6l75HinL5ZHk4bnvEt86FLw==", 141 | "requires": { 142 | "buffer-from": "1.1.0" 143 | } 144 | }, 145 | "pouchdb-collections": { 146 | "version": "7.0.0", 147 | "resolved": "https://registry.npmjs.org/pouchdb-collections/-/pouchdb-collections-7.0.0.tgz", 148 | "integrity": "sha512-DaoUr/vU24Q3gM6ghj0va9j/oBanPwkbhkvnqSyC3Dm5dgf5pculNxueLF9PKMo3ycApoWzHMh6N2N8KJbDU2Q==" 149 | }, 150 | "pouchdb-errors": { 151 | "version": "7.0.0", 152 | "resolved": "https://registry.npmjs.org/pouchdb-errors/-/pouchdb-errors-7.0.0.tgz", 153 | "integrity": "sha512-dTusY8nnTw4HIztCrNl7AoGgwvS1bVf/3/97hDaGc4ytn72V9/4dK8kTqlimi3UpaurohYRnqac0SGXYP8vgXA==", 154 | "requires": { 155 | "inherits": "2.0.3" 156 | } 157 | }, 158 | "pouchdb-json": { 159 | "version": "7.0.0", 160 | "resolved": "https://registry.npmjs.org/pouchdb-json/-/pouchdb-json-7.0.0.tgz", 161 | "integrity": "sha512-w0bNRu/7VmmCrFWMYAm62n30wvJJUT2SokyzeTyj3hRohj4GFwTRg1mSZ+iAmxgRKOFE8nzZstLG/WAB4Ymjew==", 162 | "requires": { 163 | "vuvuzela": "1.0.3" 164 | } 165 | }, 166 | "pouchdb-md5": { 167 | "version": "7.0.0", 168 | "resolved": "https://registry.npmjs.org/pouchdb-md5/-/pouchdb-md5-7.0.0.tgz", 169 | "integrity": "sha512-yaSJKhLA3QlgloKUQeb2hLdT3KmUmPfoYdryfwHZuPTpXIRKTnMQTR9qCIRUszc0ruBpDe53DRslCgNUhAyTNQ==", 170 | "requires": { 171 | "pouchdb-binary-utils": "7.0.0", 172 | "spark-md5": "3.0.0" 173 | }, 174 | "dependencies": { 175 | "buffer-from": { 176 | "version": "1.1.0", 177 | "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.0.tgz", 178 | "integrity": "sha512-c5mRlguI/Pe2dSZmpER62rSCu0ryKmWddzRYsuXc50U2/g8jMOulc31VZMa4mYx31U5xsmSOpDCgH88Vl9cDGQ==" 179 | }, 180 | "pouchdb-binary-utils": { 181 | "version": "7.0.0", 182 | "resolved": "https://registry.npmjs.org/pouchdb-binary-utils/-/pouchdb-binary-utils-7.0.0.tgz", 183 | "integrity": "sha512-yUktdOPIPvOVouCjJN3uop+bCcpdPwePrLm9eUAZNgEYnUFu0njdx7Q0WRsZ7UJ6l75HinL5ZHk4bnvEt86FLw==", 184 | "requires": { 185 | "buffer-from": "1.1.0" 186 | } 187 | } 188 | } 189 | }, 190 | "pouchdb-merge": { 191 | "version": "7.0.0", 192 | "resolved": "https://registry.npmjs.org/pouchdb-merge/-/pouchdb-merge-7.0.0.tgz", 193 | "integrity": "sha512-tci5u6NpznQhGcPv4ho1h0miky9rs+ds/T9zQ9meQeDZbUojXNaX1Jxsb0uYEQQ+HMqdcQs3Akdl0/u0mgwPGg==" 194 | }, 195 | "pouchdb-utils": { 196 | "version": "7.0.0", 197 | "resolved": "https://registry.npmjs.org/pouchdb-utils/-/pouchdb-utils-7.0.0.tgz", 198 | "integrity": "sha512-1bnoX1KdZYHv9wicDIFdO0PLiVIMzNDUBUZ/yOJZ+6LW6niQCB8aCv09ZztmKfSQcU5nnN3fe656tScBgP6dOQ==", 199 | "requires": { 200 | "argsarray": "0.0.1", 201 | "clone-buffer": "1.0.0", 202 | "immediate": "3.0.6", 203 | "inherits": "2.0.3", 204 | "pouchdb-collections": "7.0.0", 205 | "pouchdb-errors": "7.0.0", 206 | "pouchdb-md5": "7.0.0", 207 | "uuid": "3.2.1" 208 | } 209 | }, 210 | "spark-md5": { 211 | "version": "3.0.0", 212 | "resolved": "https://registry.npmjs.org/spark-md5/-/spark-md5-3.0.0.tgz", 213 | "integrity": "sha1-NyIifFTi+vJLHcbZM8wUTm9xv+8=" 214 | }, 215 | "uuid": { 216 | "version": "3.2.1", 217 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.2.1.tgz", 218 | "integrity": "sha512-jZnMwlb9Iku/O3smGWvZhauCf6cvvpKi4BKRiliS3cxnI+Gz9j5MEpTz2UFuXiKPJocb7gnsLHwiS05ige5BEA==" 219 | }, 220 | "vuvuzela": { 221 | "version": "1.0.3", 222 | "resolved": "https://registry.npmjs.org/vuvuzela/-/vuvuzela-1.0.3.tgz", 223 | "integrity": "sha1-O+FF5YJxxzylUnndhR8SpoIRSws=" 224 | } 225 | } 226 | } 227 | -------------------------------------------------------------------------------- /example/android/app/app.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 9 | 10 | 11 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | -------------------------------------------------------------------------------- /tests/integration/test.attachments.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | import { base64StringToBlobOrBuffer } from 'pouchdb-binary-utils' 4 | import { couchHost } from '../utils' 5 | import jpegB64 from '../__mocks/test-jpeg-as-b64' 6 | 7 | const jpegBinary = base64StringToBlobOrBuffer(jpegB64, 'image/jpeg') 8 | 9 | /* global describe, it, should, PouchDB */ 10 | 11 | function buildDocAttachment (attachmentId, data, type = 'text/plain') { 12 | return { 13 | _id: 'demo', 14 | _attachments: { 15 | [attachmentId]: { 16 | content_type: type, 17 | data 18 | } 19 | } 20 | } 21 | } 22 | 23 | describe('attachments', function () { 24 | describe('add b64', function () { 25 | it('should support inline post', function () { 26 | const db = new PouchDB('image/jpeg-post') 27 | return db.post(buildDocAttachment('demo.jpeg', jpegB64, 'image/jpeg')) 28 | .then(() => db.get('demo', { attachments: true })) 29 | .then(doc => doc._attachments['demo.jpeg'].data.should.equal(jpegB64)) 30 | .then(() => db.get('demo', { attachments: true, binary: true })) 31 | .then(doc => jpegBinary.equals(doc._attachments['demo.jpeg'].data).should.equal(true)) 32 | }) 33 | it('should support inline put', function () { 34 | const db = new PouchDB('image/jpeg-put') 35 | return db.post({ _id: 'demo' }) 36 | .then(() => db.get('demo')) 37 | .then(doc => db.put({ 38 | ...doc, 39 | ...buildDocAttachment('demo.jpeg', jpegB64, 'image/jpeg') 40 | })) 41 | .then(() => db.get('demo', { attachments: true })) 42 | .then(doc => doc._attachments['demo.jpeg'].data.should.equal(jpegB64)) 43 | .then(() => db.get('demo', { attachments: true, binary: true })) 44 | .then(doc => jpegBinary.equals(doc._attachments['demo.jpeg'].data).should.equal(true)) 45 | }) 46 | it('should support many inline attachments at once', function () { 47 | const db = new PouchDB('image/jpeg-many') 48 | return db.post({ 49 | _id: 'demo', 50 | _attachments: { 51 | 'test-1.jpeg': { 52 | content_type: 'image/jpeg', 53 | data: jpegB64 54 | }, 55 | 'test-2.jpeg': { 56 | content_type: 'image/jpeg', 57 | data: jpegB64 58 | }, 59 | 'test-3.jpeg': { 60 | content_type: 'image/jpeg', 61 | data: jpegB64 62 | } 63 | } 64 | }) 65 | .then(() => db.get('demo', { attachments: true })) 66 | .then(doc => { 67 | Object.keys(doc._attachments).length.should.equal(3) 68 | doc._attachments['test-1.jpeg'].data.should.equal(jpegB64) 69 | doc._attachments['test-2.jpeg'].data.should.equal(jpegB64) 70 | doc._attachments['test-3.jpeg'].data.should.equal(jpegB64) 71 | }) 72 | .then(() => db.get('demo', { attachments: true, binary: true })) 73 | .then(doc => { 74 | Object.keys(doc._attachments).length.should.equal(3) 75 | jpegBinary.equals(doc._attachments['test-1.jpeg'].data).should.equal(true) 76 | jpegBinary.equals(doc._attachments['test-2.jpeg'].data).should.equal(true) 77 | jpegBinary.equals(doc._attachments['test-3.jpeg'].data).should.equal(true) 78 | }) 79 | }) 80 | it('should support putAttachment', function () { 81 | const db = new PouchDB('image/jpeg-putAttachment') 82 | return db.post({ _id: 'demo' }) 83 | .then(result => db.putAttachment('demo', 'demo.jpeg', result.rev, jpegB64, 'image/jpeg')) 84 | .then(() => db.get('demo', { attachments: true })) 85 | .then(doc => doc._attachments['demo.jpeg'].data.should.equal(jpegB64)) 86 | .then(() => db.get('demo', { attachments: true, binary: true })) 87 | .then(doc => jpegBinary.equals(doc._attachments['demo.jpeg'].data).should.equal(true)) 88 | }) 89 | it('should fail on empty attachment', function () { 90 | const db = new PouchDB('image/jpeg-empty') 91 | return db.post({ _id: 'demo' }) 92 | .then(result => db.putAttachment('demo', 'demo.jpeg', result.rev, null, 'image/jpeg')) 93 | .catch(error => { 94 | error.reason.should.equal('Attachment is not a valid buffer/blob') 95 | error.message.should.equal('Some query argument is invalid') 96 | }) 97 | }) 98 | }) 99 | describe('add binary', function () { 100 | it('should support inline post', function () { 101 | const db = new PouchDB('binary-image/jpeg-post') 102 | return db.post(buildDocAttachment('demo.jpeg', jpegBinary, 'image/jpeg')) 103 | .then(() => db.get('demo', { attachments: true })) 104 | .then(doc => doc._attachments['demo.jpeg'].data.should.equal(jpegB64)) 105 | .then(() => db.get('demo', { attachments: true, binary: true })) 106 | .then(doc => jpegBinary.equals(doc._attachments['demo.jpeg'].data).should.equal(true)) 107 | }) 108 | it('should support inline put', function () { 109 | const db = new PouchDB('binary-image/jpeg-put') 110 | return db.post({ _id: 'demo' }) 111 | .then(() => db.get('demo')) 112 | .then(doc => db.put({ 113 | ...doc, 114 | ...buildDocAttachment('demo.jpeg', jpegBinary, 'image/jpeg') 115 | })) 116 | .then(() => db.get('demo', { attachments: true })) 117 | .then(doc => doc._attachments['demo.jpeg'].data.should.equal(jpegB64)) 118 | .then(() => db.get('demo', { attachments: true, binary: true })) 119 | .then(doc => jpegBinary.equals(doc._attachments['demo.jpeg'].data).should.equal(true)) 120 | }) 121 | it('should support many inline attachments at once', function () { 122 | const db = new PouchDB('binary-image/jpeg-many') 123 | return db.post({ 124 | _id: 'demo', 125 | _attachments: { 126 | 'test-1.jpeg': { 127 | content_type: 'image/jpeg', 128 | data: jpegBinary 129 | }, 130 | 'test-2.jpeg': { 131 | content_type: 'image/jpeg', 132 | data: jpegBinary 133 | }, 134 | 'test-3.jpeg': { 135 | content_type: 'image/jpeg', 136 | data: jpegBinary 137 | } 138 | } 139 | }) 140 | .then(() => db.get('demo', { attachments: true })) 141 | .then(doc => { 142 | Object.keys(doc._attachments).length.should.equal(3) 143 | doc._attachments['test-1.jpeg'].data.should.equal(jpegB64) 144 | doc._attachments['test-2.jpeg'].data.should.equal(jpegB64) 145 | doc._attachments['test-3.jpeg'].data.should.equal(jpegB64) 146 | }) 147 | .then(() => db.get('demo', { attachments: true, binary: true })) 148 | .then(doc => { 149 | Object.keys(doc._attachments).length.should.equal(3) 150 | jpegBinary.equals(doc._attachments['test-1.jpeg'].data).should.equal(true) 151 | jpegBinary.equals(doc._attachments['test-2.jpeg'].data).should.equal(true) 152 | jpegBinary.equals(doc._attachments['test-3.jpeg'].data).should.equal(true) 153 | }) 154 | }) 155 | it('should support putAttachment', function () { 156 | const db = new PouchDB('binary-image/jpeg-putAttachment') 157 | return db.post({ _id: 'demo' }) 158 | .then(result => db.putAttachment('demo', 'demo.jpeg', result.rev, jpegBinary, 'image/jpeg')) 159 | .then(() => db.get('demo', { attachments: true })) 160 | .then(doc => doc._attachments['demo.jpeg'].data.should.equal(jpegB64)) 161 | .then(() => db.get('demo', { attachments: true, binary: true })) 162 | .then(doc => jpegBinary.equals(doc._attachments['demo.jpeg'].data).should.equal(true)) 163 | }) 164 | }) 165 | describe('get', function () { 166 | it('should support getAttachment - ensure returns binary', function () { 167 | const db = new PouchDB('getAttachment') 168 | return db.post({ _id: 'demo' }) 169 | .then(result => db.putAttachment('demo', 'demo.jpeg', result.rev, jpegBinary, 'image/jpeg')) 170 | .then(() => db.getAttachment('demo', 'demo.jpeg')) 171 | .then(attachment => jpegBinary.equals(attachment).should.equal(true)) 172 | }) 173 | }) 174 | describe('updating docs with attachments', function () { 175 | it('should retrieve doc with attachment', function () { 176 | const data = global.Buffer.from('some data here', 'utf8').toString('base64') 177 | data.should.equal('c29tZSBkYXRhIGhlcmU=') 178 | 179 | const utf8db = new PouchDB('getDocWithAttachments') 180 | return utf8db.post(buildDocAttachment('demo.txt', data)) 181 | .then(() => utf8db.get('demo', { attachments: true })) 182 | .then(doc => doc._attachments['demo.txt'].data.should.equal(data)) 183 | }) 184 | it('should retrieve doc with stub attachment', function () { 185 | const data = global.Buffer.from('some data here', 'utf8').toString('base64') 186 | data.should.equal('c29tZSBkYXRhIGhlcmU=') 187 | 188 | const utf8db = new PouchDB('getDocWithoutAttachments') 189 | return utf8db.post(buildDocAttachment('demo.txt', data)) 190 | .then(() => utf8db.get('demo', { attachments: false })) 191 | .then(doc => { 192 | should.not.exist(doc._attachments['demo.txt'].data) 193 | doc._attachments['demo.txt'].stub.should.equal(true) 194 | }) 195 | }) 196 | it('should keep attachments when updating a doc fetched with attachments', function () { 197 | const data = global.Buffer.from('some data here', 'utf8').toString('base64') 198 | data.should.equal('c29tZSBkYXRhIGhlcmU=') 199 | 200 | const utf8db = new PouchDB('getDocWithAttachmentsAndUpdate') 201 | return utf8db.post(buildDocAttachment('demo.txt', data)) 202 | .then(() => utf8db.get('demo', { attachments: true })) 203 | .then(doc => utf8db.put({ ...doc, title: 'add some new data' })) 204 | .then(() => utf8db.get('demo', { attachments: true })) 205 | .then(doc => doc._attachments['demo.txt'].data.should.equal(data)) 206 | }) 207 | it('should keep attachments when updating a doc fetched without attachments', function () { 208 | const data = global.Buffer.from('some data here', 'utf8').toString('base64') 209 | data.should.equal('c29tZSBkYXRhIGhlcmU=') 210 | 211 | const utf8db = new PouchDB('getDocWithoutAttachmentsAndUpdate') 212 | return utf8db.post(buildDocAttachment('demo.txt', data)) 213 | .then(() => utf8db.get('demo', { attachments: false })) 214 | .then(doc => utf8db.put({ ...doc, title: 'add some new data' })) 215 | .then(() => utf8db.get('demo', { attachments: true })) 216 | .then(doc => doc._attachments['demo.txt'].data.should.equal(data)) 217 | }) 218 | }) 219 | describe('replication', function () { 220 | it('should push local attachments to remote', function () { 221 | const source = new PouchDB('pouchdb-rn-attachment') 222 | const target = new PouchDB(`${couchHost()}/pouchdb-rn-attachment`) 223 | return source.post(buildDocAttachment('demo.jpeg', jpegBinary, 'image/jpeg')) 224 | .then(() => 225 | new Promise((resolve, reject) => { 226 | PouchDB.replicate(source, target) 227 | .on('complete', function (info) { 228 | target.get('demo', { attachments: true }) 229 | .then(doc => { 230 | doc._attachments['demo.jpeg'].data.should.equal(jpegB64) 231 | resolve(doc) 232 | }) 233 | }).on('error', function (error) { 234 | should.not.exist(error) 235 | reject(error) 236 | }) 237 | }) 238 | ).then(() => 239 | new Promise((resolve, reject) => { 240 | source.destroy() 241 | .then(() => target.destroy().then(resolve).catch(reject)) 242 | .catch(reject) 243 | }) 244 | ) 245 | }) 246 | it('should pull remote attachments to local', function () { 247 | const source = new PouchDB(`${couchHost()}/pouchdb-rn-attachment`) 248 | const target = new PouchDB('pouchdb-rn-attachment') 249 | return source.post(buildDocAttachment('demo.jpeg', jpegBinary, 'image/jpeg')) 250 | .then(() => 251 | new Promise((resolve, reject) => { 252 | PouchDB.replicate(source, target) 253 | .on('complete', function (info) { 254 | target.get('demo', { attachments: true }) 255 | .then(doc => { 256 | doc._attachments['demo.jpeg'].data.should.equal(jpegB64) 257 | resolve(doc) 258 | }) 259 | }).on('error', function (error) { 260 | should.not.exist(error) 261 | reject(error) 262 | }) 263 | }) 264 | ).then(() => 265 | new Promise((resolve, reject) => { 266 | source.destroy() 267 | .then(() => target.destroy().then(resolve).catch(reject)) 268 | .catch(reject) 269 | }) 270 | ) 271 | }) 272 | }) 273 | }) 274 | -------------------------------------------------------------------------------- /packages/pouchdb-react-native/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "pouchdb-react-native", 3 | "version": "7.0.0-beta-1", 4 | "lockfileVersion": 1, 5 | "requires": true, 6 | "dependencies": { 7 | "argsarray": { 8 | "version": "0.0.1", 9 | "resolved": "https://registry.npmjs.org/argsarray/-/argsarray-0.0.1.tgz", 10 | "integrity": "sha1-bnIHtOzbObCviDA/pa4ivajfYcs=" 11 | }, 12 | "atob": { 13 | "version": "2.1.1", 14 | "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.1.tgz", 15 | "integrity": "sha1-ri1acpR38onWDdf5amMUoi3Wwio=" 16 | }, 17 | "base64-js": { 18 | "version": "1.3.0", 19 | "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.0.tgz", 20 | "integrity": "sha512-ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw==" 21 | }, 22 | "blob-polyfill": { 23 | "version": "3.0.20180112", 24 | "resolved": "https://registry.npmjs.org/blob-polyfill/-/blob-polyfill-3.0.20180112.tgz", 25 | "integrity": "sha512-DX/47MXO+hNuEhuZRW9/yykNoCe7E/ywcPKtPVqGPRwLlowN811xi/3yVMQkE2fhTGHfrH8O9BMuhM7IdcRyew==" 26 | }, 27 | "btoa": { 28 | "version": "1.2.1", 29 | "resolved": "https://registry.npmjs.org/btoa/-/btoa-1.2.1.tgz", 30 | "integrity": "sha512-SB4/MIGlsiVkMcHmT+pSmIPoNDoHg+7cMzmt3Uxt628MTz2487DKSqK/fuhFBrkuqrYv5UCEnACpF4dTFNKc/g==" 31 | }, 32 | "buffer": { 33 | "version": "5.2.0", 34 | "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.2.0.tgz", 35 | "integrity": "sha512-nUJyfChH7PMJy75eRDCCKtszSEFokUNXC1hNVSe+o+VdcgvDPLs20k3v8UXI8ruRYAJiYtyRea8mYyqPxoHWDw==", 36 | "requires": { 37 | "base64-js": "^1.0.2", 38 | "ieee754": "^1.1.4" 39 | } 40 | }, 41 | "buffer-from": { 42 | "version": "1.1.0", 43 | "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.0.tgz", 44 | "integrity": "sha512-c5mRlguI/Pe2dSZmpER62rSCu0ryKmWddzRYsuXc50U2/g8jMOulc31VZMa4mYx31U5xsmSOpDCgH88Vl9cDGQ==" 45 | }, 46 | "clone-buffer": { 47 | "version": "1.0.0", 48 | "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz", 49 | "integrity": "sha1-4+JbIHrE5wGvch4staFnksrD3Fg=" 50 | }, 51 | "es6-denodeify": { 52 | "version": "0.1.5", 53 | "resolved": "https://registry.npmjs.org/es6-denodeify/-/es6-denodeify-0.1.5.tgz", 54 | "integrity": "sha1-MdTV/pxVA+ElRgQ5MQ4WoqPznB8=" 55 | }, 56 | "events": { 57 | "version": "3.0.0", 58 | "resolved": "https://registry.npmjs.org/events/-/events-3.0.0.tgz", 59 | "integrity": "sha512-Dc381HFWJzEOhQ+d8pkNon++bk9h6cdAoAj4iE6Q4y6xgTzySWXlKn05/TVNpjnfRqi/X0EpJEJohPjNI3zpVA==" 60 | }, 61 | "fetch-cookie": { 62 | "version": "0.7.0", 63 | "resolved": "https://registry.npmjs.org/fetch-cookie/-/fetch-cookie-0.7.0.tgz", 64 | "integrity": "sha512-Mm5pGlT3agW6t71xVM7vMZPIvI7T4FaTuFW4jari6dVzYHFDb3WZZsGpN22r/o3XMdkM0E7sPd1EGeyVbH2Tgg==", 65 | "requires": { 66 | "es6-denodeify": "^0.1.1", 67 | "tough-cookie": "^2.3.1" 68 | } 69 | }, 70 | "ieee754": { 71 | "version": "1.1.12", 72 | "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.12.tgz", 73 | "integrity": "sha512-GguP+DRY+pJ3soyIiGPTvdiVXjZ+DbXOxGpXn3eMvNW4x4irjqXm4wHKscC+TfxSJ0yw/S1F24tqdMNsMZTiLA==" 74 | }, 75 | "immediate": { 76 | "version": "3.0.6", 77 | "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz", 78 | "integrity": "sha1-nbHb0Pr43m++D13V5Wu2BigN5ps=" 79 | }, 80 | "inherits": { 81 | "version": "2.0.3", 82 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", 83 | "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" 84 | }, 85 | "left-pad": { 86 | "version": "1.3.0", 87 | "resolved": "https://registry.npmjs.org/left-pad/-/left-pad-1.3.0.tgz", 88 | "integrity": "sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA==" 89 | }, 90 | "node-fetch": { 91 | "version": "2.6.1", 92 | "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz", 93 | "integrity": "sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==" 94 | }, 95 | "pouchdb-abstract-mapreduce": { 96 | "version": "7.0.0", 97 | "resolved": "https://registry.npmjs.org/pouchdb-abstract-mapreduce/-/pouchdb-abstract-mapreduce-7.0.0.tgz", 98 | "integrity": "sha512-C1sb9AIJYTFOUPtuPaAYBCfd09DK82LmeYEtM4h1Z+wG76zj9U1NEg8T+CwxcpOF7eX3ZN5EmSfa3k/ZlyMUgQ==", 99 | "requires": { 100 | "pouchdb-binary-utils": "7.0.0", 101 | "pouchdb-collate": "7.0.0", 102 | "pouchdb-collections": "7.0.0", 103 | "pouchdb-errors": "7.0.0", 104 | "pouchdb-fetch": "7.0.0", 105 | "pouchdb-mapreduce-utils": "7.0.0", 106 | "pouchdb-md5": "7.0.0", 107 | "pouchdb-utils": "7.0.0" 108 | } 109 | }, 110 | "pouchdb-adapter-asyncstorage": { 111 | "version": "7.0.0-beta-1", 112 | "resolved": "https://registry.npmjs.org/pouchdb-adapter-asyncstorage/-/pouchdb-adapter-asyncstorage-7.0.0-beta-1.tgz", 113 | "integrity": "sha512-7iRYBe8vOU96czoROZ7TwjoGlP4YGHdU9LbjIQ99eVVlsLZKvO4LEIXCcuZQAGAN+fXWX7tw3pS73J57+48GEg==", 114 | "requires": { 115 | "atob": "2.1.1", 116 | "blob-polyfill": "3.0.20180112", 117 | "btoa": "1.2.1", 118 | "buffer": "5.2.0", 119 | "events": "3.0.0", 120 | "left-pad": "1.3.0", 121 | "pouchdb-adapter-utils": "7.0.0", 122 | "pouchdb-binary-utils": "7.0.0", 123 | "pouchdb-errors": "7.0.0", 124 | "pouchdb-json": "7.0.0", 125 | "pouchdb-merge": "7.0.0", 126 | "pouchdb-utils": "7.0.0", 127 | "spark-md5": "3.0.0" 128 | } 129 | }, 130 | "pouchdb-adapter-http": { 131 | "version": "7.0.0", 132 | "resolved": "https://registry.npmjs.org/pouchdb-adapter-http/-/pouchdb-adapter-http-7.0.0.tgz", 133 | "integrity": "sha512-jlrl7/B2ubbcBZbiMrT2DJolDNKW/SAZgxH5GzJLyUfjKxDMyky2gdMtG0b6qGdz323jS4EUUXtz2J8Bb+46NQ==", 134 | "requires": { 135 | "argsarray": "0.0.1", 136 | "pouchdb-binary-utils": "7.0.0", 137 | "pouchdb-errors": "7.0.0", 138 | "pouchdb-fetch": "7.0.0", 139 | "pouchdb-utils": "7.0.0" 140 | } 141 | }, 142 | "pouchdb-adapter-utils": { 143 | "version": "7.0.0", 144 | "resolved": "https://registry.npmjs.org/pouchdb-adapter-utils/-/pouchdb-adapter-utils-7.0.0.tgz", 145 | "integrity": "sha512-UWKPC6jkz6mHUzZefrU7P5X8ZGvBC8LSNZ7BIp0hWvJE6c20cnpDwedTVDpZORcCbVJpDmFOHBYnOqEIblPtbA==", 146 | "requires": { 147 | "pouchdb-binary-utils": "7.0.0", 148 | "pouchdb-collections": "7.0.0", 149 | "pouchdb-errors": "7.0.0", 150 | "pouchdb-md5": "7.0.0", 151 | "pouchdb-merge": "7.0.0", 152 | "pouchdb-utils": "7.0.0" 153 | } 154 | }, 155 | "pouchdb-binary-utils": { 156 | "version": "7.0.0", 157 | "resolved": "https://registry.npmjs.org/pouchdb-binary-utils/-/pouchdb-binary-utils-7.0.0.tgz", 158 | "integrity": "sha512-yUktdOPIPvOVouCjJN3uop+bCcpdPwePrLm9eUAZNgEYnUFu0njdx7Q0WRsZ7UJ6l75HinL5ZHk4bnvEt86FLw==", 159 | "requires": { 160 | "buffer-from": "1.1.0" 161 | } 162 | }, 163 | "pouchdb-changes-filter": { 164 | "version": "7.0.0", 165 | "resolved": "https://registry.npmjs.org/pouchdb-changes-filter/-/pouchdb-changes-filter-7.0.0.tgz", 166 | "integrity": "sha512-b7T+lA50VzaxleccpmhNJLdFiGiYKmcIP3hVg+74xQO7vqJ+GEp8nanKX/UBs1Hr3TxUrCT/4JXTxVNkgUxO0A==", 167 | "requires": { 168 | "pouchdb-errors": "7.0.0", 169 | "pouchdb-selector-core": "7.0.0", 170 | "pouchdb-utils": "7.0.0" 171 | } 172 | }, 173 | "pouchdb-checkpointer": { 174 | "version": "7.0.0", 175 | "resolved": "https://registry.npmjs.org/pouchdb-checkpointer/-/pouchdb-checkpointer-7.0.0.tgz", 176 | "integrity": "sha512-XwSTOpOBGHlivBdnSMCRIhO7VFw16m/oMfFJaZqKHVA4P6KKWnwwmgLFkec8DqC+OqQumxol55TCdhvfvv9asA==", 177 | "requires": { 178 | "pouchdb-collate": "7.0.0", 179 | "pouchdb-utils": "7.0.0" 180 | } 181 | }, 182 | "pouchdb-collate": { 183 | "version": "7.0.0", 184 | "resolved": "https://registry.npmjs.org/pouchdb-collate/-/pouchdb-collate-7.0.0.tgz", 185 | "integrity": "sha512-0O67rnNGVD9OUbDx+6DLPcE3zz7w6gieNCvrbvaI5ibIXuLpyMyLjD6OdRe/19LbstEfZaOp+SYUhQs+TP8Plg==" 186 | }, 187 | "pouchdb-collections": { 188 | "version": "7.0.0", 189 | "resolved": "https://registry.npmjs.org/pouchdb-collections/-/pouchdb-collections-7.0.0.tgz", 190 | "integrity": "sha512-DaoUr/vU24Q3gM6ghj0va9j/oBanPwkbhkvnqSyC3Dm5dgf5pculNxueLF9PKMo3ycApoWzHMh6N2N8KJbDU2Q==" 191 | }, 192 | "pouchdb-core": { 193 | "version": "7.0.0", 194 | "resolved": "https://registry.npmjs.org/pouchdb-core/-/pouchdb-core-7.0.0.tgz", 195 | "integrity": "sha512-hhTyGCEqWiUCt3ciCVzJXmFDpcKxdHYKDsySTg2rgTVMipPuqXRgsmGRKkXV6CHKasqvvJ/3JPe0bEWj+5YzhA==", 196 | "requires": { 197 | "argsarray": "0.0.1", 198 | "inherits": "2.0.3", 199 | "pouchdb-changes-filter": "7.0.0", 200 | "pouchdb-collections": "7.0.0", 201 | "pouchdb-errors": "7.0.0", 202 | "pouchdb-fetch": "7.0.0", 203 | "pouchdb-merge": "7.0.0", 204 | "pouchdb-utils": "7.0.0" 205 | } 206 | }, 207 | "pouchdb-errors": { 208 | "version": "7.0.0", 209 | "resolved": "https://registry.npmjs.org/pouchdb-errors/-/pouchdb-errors-7.0.0.tgz", 210 | "integrity": "sha512-dTusY8nnTw4HIztCrNl7AoGgwvS1bVf/3/97hDaGc4ytn72V9/4dK8kTqlimi3UpaurohYRnqac0SGXYP8vgXA==", 211 | "requires": { 212 | "inherits": "2.0.3" 213 | } 214 | }, 215 | "pouchdb-fetch": { 216 | "version": "7.0.0", 217 | "resolved": "https://registry.npmjs.org/pouchdb-fetch/-/pouchdb-fetch-7.0.0.tgz", 218 | "integrity": "sha512-9XGEogHQcYZCJp2PvLE7oDgGzIsBy4Vh28EhDS26iJFwtDVpHYm7fIzJ//SDGcUNjnlR9WKTegFLg9p7jYIQWQ==", 219 | "requires": { 220 | "fetch-cookie": "0.7.0", 221 | "node-fetch": "^2.0.0" 222 | } 223 | }, 224 | "pouchdb-generate-replication-id": { 225 | "version": "7.0.0", 226 | "resolved": "https://registry.npmjs.org/pouchdb-generate-replication-id/-/pouchdb-generate-replication-id-7.0.0.tgz", 227 | "integrity": "sha512-7RfHZTWL1xPg4n78c8hVRoGvD7yexdlI7StQl8PmV5gY3B/AVuehZDtKCSAKvMx/u2z+tMt8Hy2xDTWakUNTig==", 228 | "requires": { 229 | "pouchdb-collate": "7.0.0", 230 | "pouchdb-md5": "7.0.0" 231 | } 232 | }, 233 | "pouchdb-json": { 234 | "version": "7.0.0", 235 | "resolved": "https://registry.npmjs.org/pouchdb-json/-/pouchdb-json-7.0.0.tgz", 236 | "integrity": "sha512-w0bNRu/7VmmCrFWMYAm62n30wvJJUT2SokyzeTyj3hRohj4GFwTRg1mSZ+iAmxgRKOFE8nzZstLG/WAB4Ymjew==", 237 | "requires": { 238 | "vuvuzela": "1.0.3" 239 | } 240 | }, 241 | "pouchdb-mapreduce": { 242 | "version": "7.0.0", 243 | "resolved": "https://registry.npmjs.org/pouchdb-mapreduce/-/pouchdb-mapreduce-7.0.0.tgz", 244 | "integrity": "sha512-LrFkiUL266pMjWZCfBY+FmFVw7zhmjcKJbQz9kEQtQm7CV8waKhf+3Vjgw6rT6o0XOpwy6XvCOrZ0gVuRzS77A==", 245 | "requires": { 246 | "pouchdb-abstract-mapreduce": "7.0.0", 247 | "pouchdb-mapreduce-utils": "7.0.0", 248 | "pouchdb-utils": "7.0.0" 249 | } 250 | }, 251 | "pouchdb-mapreduce-utils": { 252 | "version": "7.0.0", 253 | "resolved": "https://registry.npmjs.org/pouchdb-mapreduce-utils/-/pouchdb-mapreduce-utils-7.0.0.tgz", 254 | "integrity": "sha512-kj74SpirbQAC7BSlBpPO42RBbUw8XmxbkLCnHyL7CVktyEn24VHbCoirutUI2mRPii7MAVHtleGKXRijR5QIpw==", 255 | "requires": { 256 | "argsarray": "0.0.1", 257 | "inherits": "2.0.3", 258 | "pouchdb-collections": "7.0.0", 259 | "pouchdb-utils": "7.0.0" 260 | } 261 | }, 262 | "pouchdb-md5": { 263 | "version": "7.0.0", 264 | "resolved": "https://registry.npmjs.org/pouchdb-md5/-/pouchdb-md5-7.0.0.tgz", 265 | "integrity": "sha512-yaSJKhLA3QlgloKUQeb2hLdT3KmUmPfoYdryfwHZuPTpXIRKTnMQTR9qCIRUszc0ruBpDe53DRslCgNUhAyTNQ==", 266 | "requires": { 267 | "pouchdb-binary-utils": "7.0.0", 268 | "spark-md5": "3.0.0" 269 | } 270 | }, 271 | "pouchdb-merge": { 272 | "version": "7.0.0", 273 | "resolved": "https://registry.npmjs.org/pouchdb-merge/-/pouchdb-merge-7.0.0.tgz", 274 | "integrity": "sha512-tci5u6NpznQhGcPv4ho1h0miky9rs+ds/T9zQ9meQeDZbUojXNaX1Jxsb0uYEQQ+HMqdcQs3Akdl0/u0mgwPGg==" 275 | }, 276 | "pouchdb-replication": { 277 | "version": "7.0.0", 278 | "resolved": "https://registry.npmjs.org/pouchdb-replication/-/pouchdb-replication-7.0.0.tgz", 279 | "integrity": "sha512-DHeP/8w1Q00yJJKfsXTipv3BPB0UhqZjCPTWvatrtfbtUX6v7MM4RXoq1UefvGbEHrThn3uoVL/MErdR5hvC/g==", 280 | "requires": { 281 | "inherits": "2.0.3", 282 | "pouchdb-checkpointer": "7.0.0", 283 | "pouchdb-errors": "7.0.0", 284 | "pouchdb-generate-replication-id": "7.0.0", 285 | "pouchdb-utils": "7.0.0" 286 | } 287 | }, 288 | "pouchdb-selector-core": { 289 | "version": "7.0.0", 290 | "resolved": "https://registry.npmjs.org/pouchdb-selector-core/-/pouchdb-selector-core-7.0.0.tgz", 291 | "integrity": "sha512-8Lpa8S7TCRGUEy3aEMd+Zy85IU4KwCVNf3TT+HJ8XAKICtmgArPrQGimIXFOHoyjRSpCXtByzEriP8CBCUjp7g==", 292 | "requires": { 293 | "pouchdb-collate": "7.0.0", 294 | "pouchdb-utils": "7.0.0" 295 | } 296 | }, 297 | "pouchdb-utils": { 298 | "version": "7.0.0", 299 | "resolved": "https://registry.npmjs.org/pouchdb-utils/-/pouchdb-utils-7.0.0.tgz", 300 | "integrity": "sha512-1bnoX1KdZYHv9wicDIFdO0PLiVIMzNDUBUZ/yOJZ+6LW6niQCB8aCv09ZztmKfSQcU5nnN3fe656tScBgP6dOQ==", 301 | "requires": { 302 | "argsarray": "0.0.1", 303 | "clone-buffer": "1.0.0", 304 | "immediate": "3.0.6", 305 | "inherits": "2.0.3", 306 | "pouchdb-collections": "7.0.0", 307 | "pouchdb-errors": "7.0.0", 308 | "pouchdb-md5": "7.0.0", 309 | "uuid": "3.2.1" 310 | } 311 | }, 312 | "psl": { 313 | "version": "1.1.29", 314 | "resolved": "https://registry.npmjs.org/psl/-/psl-1.1.29.tgz", 315 | "integrity": "sha512-AeUmQ0oLN02flVHXWh9sSJF7mcdFq0ppid/JkErufc3hGIV/AMa8Fo9VgDo/cT2jFdOWoFvHp90qqBH54W+gjQ==" 316 | }, 317 | "punycode": { 318 | "version": "1.4.1", 319 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", 320 | "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" 321 | }, 322 | "spark-md5": { 323 | "version": "3.0.0", 324 | "resolved": "https://registry.npmjs.org/spark-md5/-/spark-md5-3.0.0.tgz", 325 | "integrity": "sha1-NyIifFTi+vJLHcbZM8wUTm9xv+8=" 326 | }, 327 | "tough-cookie": { 328 | "version": "2.4.3", 329 | "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz", 330 | "integrity": "sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==", 331 | "requires": { 332 | "psl": "^1.1.24", 333 | "punycode": "^1.4.1" 334 | } 335 | }, 336 | "uuid": { 337 | "version": "3.2.1", 338 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.2.1.tgz", 339 | "integrity": "sha512-jZnMwlb9Iku/O3smGWvZhauCf6cvvpKi4BKRiliS3cxnI+Gz9j5MEpTz2UFuXiKPJocb7gnsLHwiS05ige5BEA==" 340 | }, 341 | "vuvuzela": { 342 | "version": "1.0.3", 343 | "resolved": "https://registry.npmjs.org/vuvuzela/-/vuvuzela-1.0.3.tgz", 344 | "integrity": "sha1-O+FF5YJxxzylUnndhR8SpoIRSws=" 345 | } 346 | } 347 | } 348 | -------------------------------------------------------------------------------- /example/ios/example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */; }; 11 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */; }; 12 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */; }; 13 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; }; 14 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; }; 15 | 00E356F31AD99517003FC87E /* exampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* exampleTests.m */; }; 16 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; }; 17 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; }; 18 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; }; 19 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 20 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; }; 21 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 22 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 23 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 24 | 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 25 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; }; 26 | /* End PBXBuildFile section */ 27 | 28 | /* Begin PBXContainerItemProxy section */ 29 | 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = { 30 | isa = PBXContainerItemProxy; 31 | containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 32 | proxyType = 2; 33 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 34 | remoteInfo = RCTActionSheet; 35 | }; 36 | 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = { 37 | isa = PBXContainerItemProxy; 38 | containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 39 | proxyType = 2; 40 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 41 | remoteInfo = RCTGeolocation; 42 | }; 43 | 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = { 44 | isa = PBXContainerItemProxy; 45 | containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 46 | proxyType = 2; 47 | remoteGlobalIDString = 58B5115D1A9E6B3D00147676; 48 | remoteInfo = RCTImage; 49 | }; 50 | 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = { 51 | isa = PBXContainerItemProxy; 52 | containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 53 | proxyType = 2; 54 | remoteGlobalIDString = 58B511DB1A9E6C8500147676; 55 | remoteInfo = RCTNetwork; 56 | }; 57 | 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = { 58 | isa = PBXContainerItemProxy; 59 | containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 60 | proxyType = 2; 61 | remoteGlobalIDString = 832C81801AAF6DEF007FA2F7; 62 | remoteInfo = RCTVibration; 63 | }; 64 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { 65 | isa = PBXContainerItemProxy; 66 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; 67 | proxyType = 1; 68 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A; 69 | remoteInfo = example; 70 | }; 71 | 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = { 72 | isa = PBXContainerItemProxy; 73 | containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 74 | proxyType = 2; 75 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 76 | remoteInfo = RCTSettings; 77 | }; 78 | 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = { 79 | isa = PBXContainerItemProxy; 80 | containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 81 | proxyType = 2; 82 | remoteGlobalIDString = 3C86DF461ADF2C930047B81A; 83 | remoteInfo = RCTWebSocket; 84 | }; 85 | 146834031AC3E56700842450 /* PBXContainerItemProxy */ = { 86 | isa = PBXContainerItemProxy; 87 | containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */; 88 | proxyType = 2; 89 | remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192; 90 | remoteInfo = React; 91 | }; 92 | 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = { 93 | isa = PBXContainerItemProxy; 94 | containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 95 | proxyType = 2; 96 | remoteGlobalIDString = 134814201AA4EA6300B7C361; 97 | remoteInfo = RCTLinking; 98 | }; 99 | 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = { 100 | isa = PBXContainerItemProxy; 101 | containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 102 | proxyType = 2; 103 | remoteGlobalIDString = 58B5119B1A9E6C1200147676; 104 | remoteInfo = RCTText; 105 | }; 106 | /* End PBXContainerItemProxy section */ 107 | 108 | /* Begin PBXFileReference section */ 109 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = main.jsbundle; path = main.jsbundle; sourceTree = ""; }; 110 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = ../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj; sourceTree = ""; }; 111 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = ../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj; sourceTree = ""; }; 112 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = ../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj; sourceTree = ""; }; 113 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = ../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj; sourceTree = ""; }; 114 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = ../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj; sourceTree = ""; }; 115 | 00E356EE1AD99517003FC87E /* exampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = exampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 116 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 117 | 00E356F21AD99517003FC87E /* exampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = exampleTests.m; sourceTree = ""; }; 118 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = ../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj; sourceTree = ""; }; 119 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = ../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj; sourceTree = ""; }; 120 | 13B07F961A680F5B00A75B9A /* example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 121 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = example/AppDelegate.h; sourceTree = ""; }; 122 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = example/AppDelegate.m; sourceTree = ""; }; 123 | 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 124 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = example/Images.xcassets; sourceTree = ""; }; 125 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = example/Info.plist; sourceTree = ""; }; 126 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = example/main.m; sourceTree = ""; }; 127 | 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = ../node_modules/react-native/React/React.xcodeproj; sourceTree = ""; }; 128 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = ../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj; sourceTree = ""; }; 129 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = ../node_modules/react-native/Libraries/Text/RCTText.xcodeproj; sourceTree = ""; }; 130 | /* End PBXFileReference section */ 131 | 132 | /* Begin PBXFrameworksBuildPhase section */ 133 | 00E356EB1AD99517003FC87E /* Frameworks */ = { 134 | isa = PBXFrameworksBuildPhase; 135 | buildActionMask = 2147483647; 136 | files = ( 137 | 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */, 138 | ); 139 | runOnlyForDeploymentPostprocessing = 0; 140 | }; 141 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = { 142 | isa = PBXFrameworksBuildPhase; 143 | buildActionMask = 2147483647; 144 | files = ( 145 | 146834051AC3E58100842450 /* libReact.a in Frameworks */, 146 | 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, 147 | 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, 148 | 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, 149 | 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, 150 | 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, 151 | 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, 152 | 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, 153 | 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, 154 | 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, 155 | ); 156 | runOnlyForDeploymentPostprocessing = 0; 157 | }; 158 | /* End PBXFrameworksBuildPhase section */ 159 | 160 | /* Begin PBXGroup section */ 161 | 00C302A81ABCB8CE00DB3ED1 /* Products */ = { 162 | isa = PBXGroup; 163 | children = ( 164 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */, 165 | ); 166 | name = Products; 167 | sourceTree = ""; 168 | }; 169 | 00C302B61ABCB90400DB3ED1 /* Products */ = { 170 | isa = PBXGroup; 171 | children = ( 172 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */, 173 | ); 174 | name = Products; 175 | sourceTree = ""; 176 | }; 177 | 00C302BC1ABCB91800DB3ED1 /* Products */ = { 178 | isa = PBXGroup; 179 | children = ( 180 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */, 181 | ); 182 | name = Products; 183 | sourceTree = ""; 184 | }; 185 | 00C302D41ABCB9D200DB3ED1 /* Products */ = { 186 | isa = PBXGroup; 187 | children = ( 188 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */, 189 | ); 190 | name = Products; 191 | sourceTree = ""; 192 | }; 193 | 00C302E01ABCB9EE00DB3ED1 /* Products */ = { 194 | isa = PBXGroup; 195 | children = ( 196 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */, 197 | ); 198 | name = Products; 199 | sourceTree = ""; 200 | }; 201 | 00E356EF1AD99517003FC87E /* exampleTests */ = { 202 | isa = PBXGroup; 203 | children = ( 204 | 00E356F21AD99517003FC87E /* exampleTests.m */, 205 | 00E356F01AD99517003FC87E /* Supporting Files */, 206 | ); 207 | path = exampleTests; 208 | sourceTree = ""; 209 | }; 210 | 00E356F01AD99517003FC87E /* Supporting Files */ = { 211 | isa = PBXGroup; 212 | children = ( 213 | 00E356F11AD99517003FC87E /* Info.plist */, 214 | ); 215 | name = "Supporting Files"; 216 | sourceTree = ""; 217 | }; 218 | 139105B71AF99BAD00B5F7CC /* Products */ = { 219 | isa = PBXGroup; 220 | children = ( 221 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */, 222 | ); 223 | name = Products; 224 | sourceTree = ""; 225 | }; 226 | 139FDEE71B06529A00C62182 /* Products */ = { 227 | isa = PBXGroup; 228 | children = ( 229 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */, 230 | ); 231 | name = Products; 232 | sourceTree = ""; 233 | }; 234 | 13B07FAE1A68108700A75B9A /* example */ = { 235 | isa = PBXGroup; 236 | children = ( 237 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */, 238 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */, 239 | 13B07FB01A68108700A75B9A /* AppDelegate.m */, 240 | 13B07FB51A68108700A75B9A /* Images.xcassets */, 241 | 13B07FB61A68108700A75B9A /* Info.plist */, 242 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */, 243 | 13B07FB71A68108700A75B9A /* main.m */, 244 | ); 245 | name = example; 246 | sourceTree = ""; 247 | }; 248 | 146834001AC3E56700842450 /* Products */ = { 249 | isa = PBXGroup; 250 | children = ( 251 | 146834041AC3E56700842450 /* libReact.a */, 252 | ); 253 | name = Products; 254 | sourceTree = ""; 255 | }; 256 | 78C398B11ACF4ADC00677621 /* Products */ = { 257 | isa = PBXGroup; 258 | children = ( 259 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */, 260 | ); 261 | name = Products; 262 | sourceTree = ""; 263 | }; 264 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = { 265 | isa = PBXGroup; 266 | children = ( 267 | 146833FF1AC3E56700842450 /* React.xcodeproj */, 268 | 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, 269 | 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */, 270 | 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */, 271 | 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */, 272 | 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */, 273 | 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */, 274 | 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */, 275 | 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */, 276 | 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */, 277 | ); 278 | name = Libraries; 279 | sourceTree = ""; 280 | }; 281 | 832341B11AAA6A8300B99B32 /* Products */ = { 282 | isa = PBXGroup; 283 | children = ( 284 | 832341B51AAA6A8300B99B32 /* libRCTText.a */, 285 | ); 286 | name = Products; 287 | sourceTree = ""; 288 | }; 289 | 83CBB9F61A601CBA00E9B192 = { 290 | isa = PBXGroup; 291 | children = ( 292 | 13B07FAE1A68108700A75B9A /* example */, 293 | 832341AE1AAA6A7D00B99B32 /* Libraries */, 294 | 00E356EF1AD99517003FC87E /* exampleTests */, 295 | 83CBBA001A601CBA00E9B192 /* Products */, 296 | ); 297 | indentWidth = 2; 298 | sourceTree = ""; 299 | tabWidth = 2; 300 | }; 301 | 83CBBA001A601CBA00E9B192 /* Products */ = { 302 | isa = PBXGroup; 303 | children = ( 304 | 13B07F961A680F5B00A75B9A /* example.app */, 305 | 00E356EE1AD99517003FC87E /* exampleTests.xctest */, 306 | ); 307 | name = Products; 308 | sourceTree = ""; 309 | }; 310 | /* End PBXGroup section */ 311 | 312 | /* Begin PBXNativeTarget section */ 313 | 00E356ED1AD99517003FC87E /* exampleTests */ = { 314 | isa = PBXNativeTarget; 315 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "exampleTests" */; 316 | buildPhases = ( 317 | 00E356EA1AD99517003FC87E /* Sources */, 318 | 00E356EB1AD99517003FC87E /* Frameworks */, 319 | 00E356EC1AD99517003FC87E /* Resources */, 320 | ); 321 | buildRules = ( 322 | ); 323 | dependencies = ( 324 | 00E356F51AD99517003FC87E /* PBXTargetDependency */, 325 | ); 326 | name = exampleTests; 327 | productName = exampleTests; 328 | productReference = 00E356EE1AD99517003FC87E /* exampleTests.xctest */; 329 | productType = "com.apple.product-type.bundle.unit-test"; 330 | }; 331 | 13B07F861A680F5B00A75B9A /* example */ = { 332 | isa = PBXNativeTarget; 333 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "example" */; 334 | buildPhases = ( 335 | 13B07F871A680F5B00A75B9A /* Sources */, 336 | 13B07F8C1A680F5B00A75B9A /* Frameworks */, 337 | 13B07F8E1A680F5B00A75B9A /* Resources */, 338 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, 339 | ); 340 | buildRules = ( 341 | ); 342 | dependencies = ( 343 | ); 344 | name = example; 345 | productName = "Hello World"; 346 | productReference = 13B07F961A680F5B00A75B9A /* example.app */; 347 | productType = "com.apple.product-type.application"; 348 | }; 349 | /* End PBXNativeTarget section */ 350 | 351 | /* Begin PBXProject section */ 352 | 83CBB9F71A601CBA00E9B192 /* Project object */ = { 353 | isa = PBXProject; 354 | attributes = { 355 | LastUpgradeCheck = 0610; 356 | ORGANIZATIONNAME = Facebook; 357 | TargetAttributes = { 358 | 00E356ED1AD99517003FC87E = { 359 | CreatedOnToolsVersion = 6.2; 360 | TestTargetID = 13B07F861A680F5B00A75B9A; 361 | }; 362 | }; 363 | }; 364 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "example" */; 365 | compatibilityVersion = "Xcode 3.2"; 366 | developmentRegion = English; 367 | hasScannedForEncodings = 0; 368 | knownRegions = ( 369 | en, 370 | Base, 371 | ); 372 | mainGroup = 83CBB9F61A601CBA00E9B192; 373 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; 374 | projectDirPath = ""; 375 | projectReferences = ( 376 | { 377 | ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */; 378 | ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */; 379 | }, 380 | { 381 | ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */; 382 | ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */; 383 | }, 384 | { 385 | ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */; 386 | ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */; 387 | }, 388 | { 389 | ProductGroup = 78C398B11ACF4ADC00677621 /* Products */; 390 | ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; 391 | }, 392 | { 393 | ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; 394 | ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */; 395 | }, 396 | { 397 | ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */; 398 | ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */; 399 | }, 400 | { 401 | ProductGroup = 832341B11AAA6A8300B99B32 /* Products */; 402 | ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */; 403 | }, 404 | { 405 | ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */; 406 | ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */; 407 | }, 408 | { 409 | ProductGroup = 139FDEE71B06529A00C62182 /* Products */; 410 | ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */; 411 | }, 412 | { 413 | ProductGroup = 146834001AC3E56700842450 /* Products */; 414 | ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */; 415 | }, 416 | ); 417 | projectRoot = ""; 418 | targets = ( 419 | 13B07F861A680F5B00A75B9A /* example */, 420 | 00E356ED1AD99517003FC87E /* exampleTests */, 421 | ); 422 | }; 423 | /* End PBXProject section */ 424 | 425 | /* Begin PBXReferenceProxy section */ 426 | 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = { 427 | isa = PBXReferenceProxy; 428 | fileType = archive.ar; 429 | path = libRCTActionSheet.a; 430 | remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */; 431 | sourceTree = BUILT_PRODUCTS_DIR; 432 | }; 433 | 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = { 434 | isa = PBXReferenceProxy; 435 | fileType = archive.ar; 436 | path = libRCTGeolocation.a; 437 | remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */; 438 | sourceTree = BUILT_PRODUCTS_DIR; 439 | }; 440 | 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = { 441 | isa = PBXReferenceProxy; 442 | fileType = archive.ar; 443 | path = libRCTImage.a; 444 | remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */; 445 | sourceTree = BUILT_PRODUCTS_DIR; 446 | }; 447 | 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = { 448 | isa = PBXReferenceProxy; 449 | fileType = archive.ar; 450 | path = libRCTNetwork.a; 451 | remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */; 452 | sourceTree = BUILT_PRODUCTS_DIR; 453 | }; 454 | 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = { 455 | isa = PBXReferenceProxy; 456 | fileType = archive.ar; 457 | path = libRCTVibration.a; 458 | remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */; 459 | sourceTree = BUILT_PRODUCTS_DIR; 460 | }; 461 | 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = { 462 | isa = PBXReferenceProxy; 463 | fileType = archive.ar; 464 | path = libRCTSettings.a; 465 | remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */; 466 | sourceTree = BUILT_PRODUCTS_DIR; 467 | }; 468 | 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = { 469 | isa = PBXReferenceProxy; 470 | fileType = archive.ar; 471 | path = libRCTWebSocket.a; 472 | remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */; 473 | sourceTree = BUILT_PRODUCTS_DIR; 474 | }; 475 | 146834041AC3E56700842450 /* libReact.a */ = { 476 | isa = PBXReferenceProxy; 477 | fileType = archive.ar; 478 | path = libReact.a; 479 | remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */; 480 | sourceTree = BUILT_PRODUCTS_DIR; 481 | }; 482 | 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = { 483 | isa = PBXReferenceProxy; 484 | fileType = archive.ar; 485 | path = libRCTLinking.a; 486 | remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */; 487 | sourceTree = BUILT_PRODUCTS_DIR; 488 | }; 489 | 832341B51AAA6A8300B99B32 /* libRCTText.a */ = { 490 | isa = PBXReferenceProxy; 491 | fileType = archive.ar; 492 | path = libRCTText.a; 493 | remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */; 494 | sourceTree = BUILT_PRODUCTS_DIR; 495 | }; 496 | /* End PBXReferenceProxy section */ 497 | 498 | /* Begin PBXResourcesBuildPhase section */ 499 | 00E356EC1AD99517003FC87E /* Resources */ = { 500 | isa = PBXResourcesBuildPhase; 501 | buildActionMask = 2147483647; 502 | files = ( 503 | ); 504 | runOnlyForDeploymentPostprocessing = 0; 505 | }; 506 | 13B07F8E1A680F5B00A75B9A /* Resources */ = { 507 | isa = PBXResourcesBuildPhase; 508 | buildActionMask = 2147483647; 509 | files = ( 510 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, 511 | 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */, 512 | ); 513 | runOnlyForDeploymentPostprocessing = 0; 514 | }; 515 | /* End PBXResourcesBuildPhase section */ 516 | 517 | /* Begin PBXShellScriptBuildPhase section */ 518 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = { 519 | isa = PBXShellScriptBuildPhase; 520 | buildActionMask = 2147483647; 521 | files = ( 522 | ); 523 | inputPaths = ( 524 | ); 525 | name = "Bundle React Native code and images"; 526 | outputPaths = ( 527 | ); 528 | runOnlyForDeploymentPostprocessing = 0; 529 | shellPath = /bin/sh; 530 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; 531 | showEnvVarsInLog = 1; 532 | }; 533 | /* End PBXShellScriptBuildPhase section */ 534 | 535 | /* Begin PBXSourcesBuildPhase section */ 536 | 00E356EA1AD99517003FC87E /* Sources */ = { 537 | isa = PBXSourcesBuildPhase; 538 | buildActionMask = 2147483647; 539 | files = ( 540 | 00E356F31AD99517003FC87E /* exampleTests.m in Sources */, 541 | ); 542 | runOnlyForDeploymentPostprocessing = 0; 543 | }; 544 | 13B07F871A680F5B00A75B9A /* Sources */ = { 545 | isa = PBXSourcesBuildPhase; 546 | buildActionMask = 2147483647; 547 | files = ( 548 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */, 549 | 13B07FC11A68108700A75B9A /* main.m in Sources */, 550 | ); 551 | runOnlyForDeploymentPostprocessing = 0; 552 | }; 553 | /* End PBXSourcesBuildPhase section */ 554 | 555 | /* Begin PBXTargetDependency section */ 556 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = { 557 | isa = PBXTargetDependency; 558 | target = 13B07F861A680F5B00A75B9A /* example */; 559 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */; 560 | }; 561 | /* End PBXTargetDependency section */ 562 | 563 | /* Begin PBXVariantGroup section */ 564 | 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = { 565 | isa = PBXVariantGroup; 566 | children = ( 567 | 13B07FB21A68108700A75B9A /* Base */, 568 | ); 569 | name = LaunchScreen.xib; 570 | path = example; 571 | sourceTree = ""; 572 | }; 573 | /* End PBXVariantGroup section */ 574 | 575 | /* Begin XCBuildConfiguration section */ 576 | 00E356F61AD99517003FC87E /* Debug */ = { 577 | isa = XCBuildConfiguration; 578 | buildSettings = { 579 | BUNDLE_LOADER = "$(TEST_HOST)"; 580 | GCC_PREPROCESSOR_DEFINITIONS = ( 581 | "DEBUG=1", 582 | "$(inherited)", 583 | ); 584 | INFOPLIST_FILE = exampleTests/Info.plist; 585 | IPHONEOS_DEPLOYMENT_TARGET = 8.2; 586 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 587 | PRODUCT_NAME = "$(TARGET_NAME)"; 588 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/example.app/example"; 589 | }; 590 | name = Debug; 591 | }; 592 | 00E356F71AD99517003FC87E /* Release */ = { 593 | isa = XCBuildConfiguration; 594 | buildSettings = { 595 | BUNDLE_LOADER = "$(TEST_HOST)"; 596 | COPY_PHASE_STRIP = NO; 597 | INFOPLIST_FILE = exampleTests/Info.plist; 598 | IPHONEOS_DEPLOYMENT_TARGET = 8.2; 599 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 600 | PRODUCT_NAME = "$(TARGET_NAME)"; 601 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/example.app/example"; 602 | }; 603 | name = Release; 604 | }; 605 | 13B07F941A680F5B00A75B9A /* Debug */ = { 606 | isa = XCBuildConfiguration; 607 | buildSettings = { 608 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 609 | DEAD_CODE_STRIPPING = NO; 610 | HEADER_SEARCH_PATHS = ( 611 | "$(inherited)", 612 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include, 613 | "$(SRCROOT)/../node_modules/react-native/React/**", 614 | ); 615 | INFOPLIST_FILE = "example/Info.plist"; 616 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 617 | OTHER_LDFLAGS = ( 618 | "$(inherited)", 619 | "-ObjC", 620 | "-lc++", 621 | ); 622 | PRODUCT_NAME = example; 623 | }; 624 | name = Debug; 625 | }; 626 | 13B07F951A680F5B00A75B9A /* Release */ = { 627 | isa = XCBuildConfiguration; 628 | buildSettings = { 629 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 630 | HEADER_SEARCH_PATHS = ( 631 | "$(inherited)", 632 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include, 633 | "$(SRCROOT)/../node_modules/react-native/React/**", 634 | ); 635 | INFOPLIST_FILE = "example/Info.plist"; 636 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 637 | OTHER_LDFLAGS = ( 638 | "$(inherited)", 639 | "-ObjC", 640 | "-lc++", 641 | ); 642 | PRODUCT_NAME = example; 643 | }; 644 | name = Release; 645 | }; 646 | 83CBBA201A601CBA00E9B192 /* Debug */ = { 647 | isa = XCBuildConfiguration; 648 | buildSettings = { 649 | ALWAYS_SEARCH_USER_PATHS = NO; 650 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 651 | CLANG_CXX_LIBRARY = "libc++"; 652 | CLANG_ENABLE_MODULES = YES; 653 | CLANG_ENABLE_OBJC_ARC = YES; 654 | CLANG_WARN_BOOL_CONVERSION = YES; 655 | CLANG_WARN_CONSTANT_CONVERSION = YES; 656 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 657 | CLANG_WARN_EMPTY_BODY = YES; 658 | CLANG_WARN_ENUM_CONVERSION = YES; 659 | CLANG_WARN_INT_CONVERSION = YES; 660 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 661 | CLANG_WARN_UNREACHABLE_CODE = YES; 662 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 663 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 664 | COPY_PHASE_STRIP = NO; 665 | ENABLE_STRICT_OBJC_MSGSEND = YES; 666 | GCC_C_LANGUAGE_STANDARD = gnu99; 667 | GCC_DYNAMIC_NO_PIC = NO; 668 | GCC_OPTIMIZATION_LEVEL = 0; 669 | GCC_PREPROCESSOR_DEFINITIONS = ( 670 | "DEBUG=1", 671 | "$(inherited)", 672 | ); 673 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 674 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 675 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 676 | GCC_WARN_UNDECLARED_SELECTOR = YES; 677 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 678 | GCC_WARN_UNUSED_FUNCTION = YES; 679 | GCC_WARN_UNUSED_VARIABLE = YES; 680 | HEADER_SEARCH_PATHS = ( 681 | "$(inherited)", 682 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include, 683 | "$(SRCROOT)/../node_modules/react-native/React/**", 684 | ); 685 | IPHONEOS_DEPLOYMENT_TARGET = 7.0; 686 | MTL_ENABLE_DEBUG_INFO = YES; 687 | ONLY_ACTIVE_ARCH = YES; 688 | SDKROOT = iphoneos; 689 | }; 690 | name = Debug; 691 | }; 692 | 83CBBA211A601CBA00E9B192 /* Release */ = { 693 | isa = XCBuildConfiguration; 694 | buildSettings = { 695 | ALWAYS_SEARCH_USER_PATHS = NO; 696 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 697 | CLANG_CXX_LIBRARY = "libc++"; 698 | CLANG_ENABLE_MODULES = YES; 699 | CLANG_ENABLE_OBJC_ARC = YES; 700 | CLANG_WARN_BOOL_CONVERSION = YES; 701 | CLANG_WARN_CONSTANT_CONVERSION = YES; 702 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 703 | CLANG_WARN_EMPTY_BODY = YES; 704 | CLANG_WARN_ENUM_CONVERSION = YES; 705 | CLANG_WARN_INT_CONVERSION = YES; 706 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 707 | CLANG_WARN_UNREACHABLE_CODE = YES; 708 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 709 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 710 | COPY_PHASE_STRIP = YES; 711 | ENABLE_NS_ASSERTIONS = NO; 712 | ENABLE_STRICT_OBJC_MSGSEND = YES; 713 | GCC_C_LANGUAGE_STANDARD = gnu99; 714 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 715 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 716 | GCC_WARN_UNDECLARED_SELECTOR = YES; 717 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 718 | GCC_WARN_UNUSED_FUNCTION = YES; 719 | GCC_WARN_UNUSED_VARIABLE = YES; 720 | HEADER_SEARCH_PATHS = ( 721 | "$(inherited)", 722 | /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include, 723 | "$(SRCROOT)/../node_modules/react-native/React/**", 724 | ); 725 | IPHONEOS_DEPLOYMENT_TARGET = 7.0; 726 | MTL_ENABLE_DEBUG_INFO = NO; 727 | SDKROOT = iphoneos; 728 | VALIDATE_PRODUCT = YES; 729 | }; 730 | name = Release; 731 | }; 732 | /* End XCBuildConfiguration section */ 733 | 734 | /* Begin XCConfigurationList section */ 735 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "exampleTests" */ = { 736 | isa = XCConfigurationList; 737 | buildConfigurations = ( 738 | 00E356F61AD99517003FC87E /* Debug */, 739 | 00E356F71AD99517003FC87E /* Release */, 740 | ); 741 | defaultConfigurationIsVisible = 0; 742 | defaultConfigurationName = Release; 743 | }; 744 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "example" */ = { 745 | isa = XCConfigurationList; 746 | buildConfigurations = ( 747 | 13B07F941A680F5B00A75B9A /* Debug */, 748 | 13B07F951A680F5B00A75B9A /* Release */, 749 | ); 750 | defaultConfigurationIsVisible = 0; 751 | defaultConfigurationName = Release; 752 | }; 753 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "example" */ = { 754 | isa = XCConfigurationList; 755 | buildConfigurations = ( 756 | 83CBBA201A601CBA00E9B192 /* Debug */, 757 | 83CBBA211A601CBA00E9B192 /* Release */, 758 | ); 759 | defaultConfigurationIsVisible = 0; 760 | defaultConfigurationName = Release; 761 | }; 762 | /* End XCConfigurationList section */ 763 | }; 764 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; 765 | } 766 | --------------------------------------------------------------------------------