├── .eslintrc.js ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── products.json ├── shopcart.json ├── src ├── actions │ ├── index.js │ ├── product.js │ └── shopcart.js ├── app.js ├── components │ ├── loading_view.js │ ├── modal_view.js │ ├── product_list.js │ └── shop_cart.js ├── constants │ └── actionTypes.js ├── containers │ └── app.js ├── index.html ├── pages │ ├── home.js │ └── intro.js └── reducers │ ├── index.js │ ├── product.js │ └── shopcart.js └── webpack.config.js /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricPing/react-redux-shopcart/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricPing/react-redux-shopcart/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricPing/react-redux-shopcart/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricPing/react-redux-shopcart/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricPing/react-redux-shopcart/HEAD/package.json -------------------------------------------------------------------------------- /products.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricPing/react-redux-shopcart/HEAD/products.json -------------------------------------------------------------------------------- /shopcart.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /src/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricPing/react-redux-shopcart/HEAD/src/actions/index.js -------------------------------------------------------------------------------- /src/actions/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricPing/react-redux-shopcart/HEAD/src/actions/product.js -------------------------------------------------------------------------------- /src/actions/shopcart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricPing/react-redux-shopcart/HEAD/src/actions/shopcart.js -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricPing/react-redux-shopcart/HEAD/src/app.js -------------------------------------------------------------------------------- /src/components/loading_view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricPing/react-redux-shopcart/HEAD/src/components/loading_view.js -------------------------------------------------------------------------------- /src/components/modal_view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricPing/react-redux-shopcart/HEAD/src/components/modal_view.js -------------------------------------------------------------------------------- /src/components/product_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricPing/react-redux-shopcart/HEAD/src/components/product_list.js -------------------------------------------------------------------------------- /src/components/shop_cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricPing/react-redux-shopcart/HEAD/src/components/shop_cart.js -------------------------------------------------------------------------------- /src/constants/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricPing/react-redux-shopcart/HEAD/src/constants/actionTypes.js -------------------------------------------------------------------------------- /src/containers/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricPing/react-redux-shopcart/HEAD/src/containers/app.js -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricPing/react-redux-shopcart/HEAD/src/index.html -------------------------------------------------------------------------------- /src/pages/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricPing/react-redux-shopcart/HEAD/src/pages/home.js -------------------------------------------------------------------------------- /src/pages/intro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricPing/react-redux-shopcart/HEAD/src/pages/intro.js -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricPing/react-redux-shopcart/HEAD/src/reducers/index.js -------------------------------------------------------------------------------- /src/reducers/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricPing/react-redux-shopcart/HEAD/src/reducers/product.js -------------------------------------------------------------------------------- /src/reducers/shopcart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricPing/react-redux-shopcart/HEAD/src/reducers/shopcart.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricPing/react-redux-shopcart/HEAD/webpack.config.js --------------------------------------------------------------------------------