├── .babelrc ├── .gitignore ├── .npmignore ├── LICENSE.md ├── README.md ├── example ├── .babelrc ├── actions │ ├── Items.js │ ├── Routing.js │ └── Session.js ├── components │ ├── App.js │ ├── EntityNotFound.js │ └── ItemList.js ├── constants │ └── ActionTypes.js ├── containers │ ├── App.js │ ├── ItemDetails.js │ ├── ItemList.js │ └── LoggedIn.js ├── createStore.js ├── index.html ├── index.js ├── package.json ├── reducers │ ├── index.js │ ├── items.js │ └── session.js ├── routes │ └── index.js ├── server.js ├── webpack.config.js └── words.js ├── package.json └── src └── index.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "stage": 0 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | .DS_Store 4 | lib 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.log 3 | example 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanneslumpe/redux-history-transitions/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanneslumpe/redux-history-transitions/HEAD/README.md -------------------------------------------------------------------------------- /example/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "stage": 0 3 | } 4 | -------------------------------------------------------------------------------- /example/actions/Items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanneslumpe/redux-history-transitions/HEAD/example/actions/Items.js -------------------------------------------------------------------------------- /example/actions/Routing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanneslumpe/redux-history-transitions/HEAD/example/actions/Routing.js -------------------------------------------------------------------------------- /example/actions/Session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanneslumpe/redux-history-transitions/HEAD/example/actions/Session.js -------------------------------------------------------------------------------- /example/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanneslumpe/redux-history-transitions/HEAD/example/components/App.js -------------------------------------------------------------------------------- /example/components/EntityNotFound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanneslumpe/redux-history-transitions/HEAD/example/components/EntityNotFound.js -------------------------------------------------------------------------------- /example/components/ItemList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanneslumpe/redux-history-transitions/HEAD/example/components/ItemList.js -------------------------------------------------------------------------------- /example/constants/ActionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanneslumpe/redux-history-transitions/HEAD/example/constants/ActionTypes.js -------------------------------------------------------------------------------- /example/containers/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanneslumpe/redux-history-transitions/HEAD/example/containers/App.js -------------------------------------------------------------------------------- /example/containers/ItemDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanneslumpe/redux-history-transitions/HEAD/example/containers/ItemDetails.js -------------------------------------------------------------------------------- /example/containers/ItemList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanneslumpe/redux-history-transitions/HEAD/example/containers/ItemList.js -------------------------------------------------------------------------------- /example/containers/LoggedIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanneslumpe/redux-history-transitions/HEAD/example/containers/LoggedIn.js -------------------------------------------------------------------------------- /example/createStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanneslumpe/redux-history-transitions/HEAD/example/createStore.js -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanneslumpe/redux-history-transitions/HEAD/example/index.html -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanneslumpe/redux-history-transitions/HEAD/example/index.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanneslumpe/redux-history-transitions/HEAD/example/package.json -------------------------------------------------------------------------------- /example/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanneslumpe/redux-history-transitions/HEAD/example/reducers/index.js -------------------------------------------------------------------------------- /example/reducers/items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanneslumpe/redux-history-transitions/HEAD/example/reducers/items.js -------------------------------------------------------------------------------- /example/reducers/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanneslumpe/redux-history-transitions/HEAD/example/reducers/session.js -------------------------------------------------------------------------------- /example/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanneslumpe/redux-history-transitions/HEAD/example/routes/index.js -------------------------------------------------------------------------------- /example/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanneslumpe/redux-history-transitions/HEAD/example/server.js -------------------------------------------------------------------------------- /example/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanneslumpe/redux-history-transitions/HEAD/example/webpack.config.js -------------------------------------------------------------------------------- /example/words.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanneslumpe/redux-history-transitions/HEAD/example/words.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanneslumpe/redux-history-transitions/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johanneslumpe/redux-history-transitions/HEAD/src/index.js --------------------------------------------------------------------------------