├── .babelrc ├── .gitignore ├── LICENSE ├── README.md ├── app ├── actions │ └── index.js ├── components │ ├── data │ │ ├── data.html │ │ ├── dataController.js │ │ └── index.js │ └── home │ │ ├── home.html │ │ ├── homeController.js │ │ ├── homeFilter.js │ │ └── index.js ├── constants │ └── index.js ├── main.js ├── reducers │ ├── dataReducer.js │ └── rootReducer.js ├── reduxConfig.js └── routeConfig.js ├── index.html ├── package.json ├── server.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "stage-0"] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmachat/redux-ui-router-sample/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmachat/redux-ui-router-sample/HEAD/README.md -------------------------------------------------------------------------------- /app/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmachat/redux-ui-router-sample/HEAD/app/actions/index.js -------------------------------------------------------------------------------- /app/components/data/data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmachat/redux-ui-router-sample/HEAD/app/components/data/data.html -------------------------------------------------------------------------------- /app/components/data/dataController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmachat/redux-ui-router-sample/HEAD/app/components/data/dataController.js -------------------------------------------------------------------------------- /app/components/data/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmachat/redux-ui-router-sample/HEAD/app/components/data/index.js -------------------------------------------------------------------------------- /app/components/home/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmachat/redux-ui-router-sample/HEAD/app/components/home/home.html -------------------------------------------------------------------------------- /app/components/home/homeController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmachat/redux-ui-router-sample/HEAD/app/components/home/homeController.js -------------------------------------------------------------------------------- /app/components/home/homeFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmachat/redux-ui-router-sample/HEAD/app/components/home/homeFilter.js -------------------------------------------------------------------------------- /app/components/home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmachat/redux-ui-router-sample/HEAD/app/components/home/index.js -------------------------------------------------------------------------------- /app/constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmachat/redux-ui-router-sample/HEAD/app/constants/index.js -------------------------------------------------------------------------------- /app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmachat/redux-ui-router-sample/HEAD/app/main.js -------------------------------------------------------------------------------- /app/reducers/dataReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmachat/redux-ui-router-sample/HEAD/app/reducers/dataReducer.js -------------------------------------------------------------------------------- /app/reducers/rootReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmachat/redux-ui-router-sample/HEAD/app/reducers/rootReducer.js -------------------------------------------------------------------------------- /app/reduxConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmachat/redux-ui-router-sample/HEAD/app/reduxConfig.js -------------------------------------------------------------------------------- /app/routeConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmachat/redux-ui-router-sample/HEAD/app/routeConfig.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmachat/redux-ui-router-sample/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmachat/redux-ui-router-sample/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmachat/redux-ui-router-sample/HEAD/server.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmachat/redux-ui-router-sample/HEAD/webpack.config.js --------------------------------------------------------------------------------