├── .babelrc ├── .bithoundrc ├── .eslintrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── README.md ├── package.json ├── prepublish.js ├── src ├── components │ ├── Connector.js │ ├── Connector.test.js │ ├── subscribe.js │ └── subscribe.test.js ├── index.js ├── index.test.js └── utils │ ├── createDoc.js │ ├── createDoc.test.js │ ├── deleteDoc.js │ ├── deleteDoc.test.js │ ├── index.js │ ├── requireResolve.js │ └── test │ └── HorizonMock.js ├── test └── helpers │ └── setup-browser-env.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipace/horizon-react/HEAD/.babelrc -------------------------------------------------------------------------------- /.bithoundrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipace/horizon-react/HEAD/.bithoundrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipace/horizon-react/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipace/horizon-react/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .babelrc 2 | rethinkdb_data 3 | coverage 4 | .nyc_output 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipace/horizon-react/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipace/horizon-react/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipace/horizon-react/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipace/horizon-react/HEAD/package.json -------------------------------------------------------------------------------- /prepublish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipace/horizon-react/HEAD/prepublish.js -------------------------------------------------------------------------------- /src/components/Connector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipace/horizon-react/HEAD/src/components/Connector.js -------------------------------------------------------------------------------- /src/components/Connector.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipace/horizon-react/HEAD/src/components/Connector.test.js -------------------------------------------------------------------------------- /src/components/subscribe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipace/horizon-react/HEAD/src/components/subscribe.js -------------------------------------------------------------------------------- /src/components/subscribe.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipace/horizon-react/HEAD/src/components/subscribe.test.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipace/horizon-react/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipace/horizon-react/HEAD/src/index.test.js -------------------------------------------------------------------------------- /src/utils/createDoc.js: -------------------------------------------------------------------------------- 1 | export default (hz, doc) => hz.store(doc); 2 | -------------------------------------------------------------------------------- /src/utils/createDoc.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipace/horizon-react/HEAD/src/utils/createDoc.test.js -------------------------------------------------------------------------------- /src/utils/deleteDoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipace/horizon-react/HEAD/src/utils/deleteDoc.js -------------------------------------------------------------------------------- /src/utils/deleteDoc.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipace/horizon-react/HEAD/src/utils/deleteDoc.test.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipace/horizon-react/HEAD/src/utils/index.js -------------------------------------------------------------------------------- /src/utils/requireResolve.js: -------------------------------------------------------------------------------- 1 | export default (p) => require.resolve(p); 2 | -------------------------------------------------------------------------------- /src/utils/test/HorizonMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipace/horizon-react/HEAD/src/utils/test/HorizonMock.js -------------------------------------------------------------------------------- /test/helpers/setup-browser-env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipace/horizon-react/HEAD/test/helpers/setup-browser-env.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flipace/horizon-react/HEAD/webpack.config.js --------------------------------------------------------------------------------