├── .babelrc ├── .eslintrc ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── index.d.ts ├── package.json ├── spec ├── helpers │ └── create_mock_store.js ├── loading_bar.js ├── loading_bar_ducks.js └── loading_bar_middleware.js └── src ├── immutable.js ├── index.js ├── loading_bar.js ├── loading_bar_ducks.js └── loading_bar_middleware.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mironov/react-redux-loading-bar/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mironov/react-redux-loading-bar/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mironov/react-redux-loading-bar/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | npm-debug.log 4 | .nyc_output 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | coverage 3 | spec 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mironov/react-redux-loading-bar/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mironov/react-redux-loading-bar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mironov/react-redux-loading-bar/HEAD/README.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mironov/react-redux-loading-bar/HEAD/index.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mironov/react-redux-loading-bar/HEAD/package.json -------------------------------------------------------------------------------- /spec/helpers/create_mock_store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mironov/react-redux-loading-bar/HEAD/spec/helpers/create_mock_store.js -------------------------------------------------------------------------------- /spec/loading_bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mironov/react-redux-loading-bar/HEAD/spec/loading_bar.js -------------------------------------------------------------------------------- /spec/loading_bar_ducks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mironov/react-redux-loading-bar/HEAD/spec/loading_bar_ducks.js -------------------------------------------------------------------------------- /spec/loading_bar_middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mironov/react-redux-loading-bar/HEAD/spec/loading_bar_middleware.js -------------------------------------------------------------------------------- /src/immutable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mironov/react-redux-loading-bar/HEAD/src/immutable.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mironov/react-redux-loading-bar/HEAD/src/index.js -------------------------------------------------------------------------------- /src/loading_bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mironov/react-redux-loading-bar/HEAD/src/loading_bar.js -------------------------------------------------------------------------------- /src/loading_bar_ducks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mironov/react-redux-loading-bar/HEAD/src/loading_bar_ducks.js -------------------------------------------------------------------------------- /src/loading_bar_middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mironov/react-redux-loading-bar/HEAD/src/loading_bar_middleware.js --------------------------------------------------------------------------------