├── .babelrc ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── package.json ├── src ├── ConfigurationHelper.js ├── EntityConfiguration.js ├── EntityListState.js ├── EntityState.js ├── components │ ├── Container.js │ └── reflorp.js ├── index.js ├── refetch │ ├── create.js │ ├── del.js │ ├── list.js │ ├── more.js │ ├── single.js │ └── update.js └── utils │ ├── getKey.js │ ├── getUrl.js │ └── reducer.js ├── webpack.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomat/react-reflorp/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | lib 2 | node_modules 3 | webpack.config.js 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomat/react-reflorp/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules 3 | npm-debug.log 4 | .DS_Store 5 | dist 6 | lib 7 | coverage 8 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | examples 3 | .babelrc 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomat/react-reflorp/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomat/react-reflorp/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomat/react-reflorp/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomat/react-reflorp/HEAD/package.json -------------------------------------------------------------------------------- /src/ConfigurationHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomat/react-reflorp/HEAD/src/ConfigurationHelper.js -------------------------------------------------------------------------------- /src/EntityConfiguration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomat/react-reflorp/HEAD/src/EntityConfiguration.js -------------------------------------------------------------------------------- /src/EntityListState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomat/react-reflorp/HEAD/src/EntityListState.js -------------------------------------------------------------------------------- /src/EntityState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomat/react-reflorp/HEAD/src/EntityState.js -------------------------------------------------------------------------------- /src/components/Container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomat/react-reflorp/HEAD/src/components/Container.js -------------------------------------------------------------------------------- /src/components/reflorp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomat/react-reflorp/HEAD/src/components/reflorp.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomat/react-reflorp/HEAD/src/index.js -------------------------------------------------------------------------------- /src/refetch/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomat/react-reflorp/HEAD/src/refetch/create.js -------------------------------------------------------------------------------- /src/refetch/del.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomat/react-reflorp/HEAD/src/refetch/del.js -------------------------------------------------------------------------------- /src/refetch/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomat/react-reflorp/HEAD/src/refetch/list.js -------------------------------------------------------------------------------- /src/refetch/more.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomat/react-reflorp/HEAD/src/refetch/more.js -------------------------------------------------------------------------------- /src/refetch/single.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomat/react-reflorp/HEAD/src/refetch/single.js -------------------------------------------------------------------------------- /src/refetch/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomat/react-reflorp/HEAD/src/refetch/update.js -------------------------------------------------------------------------------- /src/utils/getKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomat/react-reflorp/HEAD/src/utils/getKey.js -------------------------------------------------------------------------------- /src/utils/getUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomat/react-reflorp/HEAD/src/utils/getUrl.js -------------------------------------------------------------------------------- /src/utils/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomat/react-reflorp/HEAD/src/utils/reducer.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomat/react-reflorp/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomat/react-reflorp/HEAD/yarn.lock --------------------------------------------------------------------------------