Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

created first checkpoint for redux workshop #3

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"bootstrap": "^4.0.0",
"classnames": "^2.2.5",
"express": "^4.16.2",
"lodash": "4.17.10",
"mongoose": "^4.13.6",
"react": "^16.0.0",
"react-dom": "^16.0.0",
Expand Down
14 changes: 11 additions & 3 deletions src/client/components/AddToCart.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,29 @@ import * as actionCreators from "../redux/actions";

class AddToCart extends React.Component {
render() {
const { actions: { addItemsToCart }, product } = this.props;
const {
actions: { addItemsToCart },
cartItems: { isLoading },
product
} = this.props;
return (
<Button
className="mt-4"
color="primary"
onClick={() => addItemsToCart(product)}
>
Add to cart
{isLoading ? "Adding..." : "Add to cart"}
</Button>
);
}
}

const mapStateToProps = state => ({
cartItems: state.cartItems
});

const mapDispatchToProps = dispatch => ({
actions: bindActionCreators(actionCreators, dispatch)
});

export default connect(null, mapDispatchToProps)(AddToCart);
export default connect(mapStateToProps, mapDispatchToProps)(AddToCart);
3 changes: 2 additions & 1 deletion src/client/components/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ export default class App extends React.Component {
<Switch>
<Route exact path="/" component={Home} />
<Route exact path="/products" component={Products} />
<Route path="/products/:id" component={Product} />
<Route exact path="/products/:id(\d+)" component={Product} />
<Route exact path="/products/:brand(\w+)" component={Products} />
<Route path="/cart" component={Cart} />
</Switch>
</Container>
Expand Down
4 changes: 2 additions & 2 deletions src/client/components/Cart.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ function CartItem({ cartItem }) {
export class Cart extends React.Component {
render() {
const { cartItems } = this.props;
if (!cartItems.length) {
if (!cartItems.ids.length) {
return <Alert color="primary">Cart is empty</Alert>;
}
return (
<ListGroup>
{cartItems.map(cartItem => (
{Object.values(cartItems.byId).map(cartItem => (
<CartItem key={cartItem.id} cartItem={cartItem} />
))}
</ListGroup>
Expand Down
6 changes: 3 additions & 3 deletions src/client/components/CartBadge.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ class CartBadge extends React.Component {

render() {
const { cartItems } = this.props;
if (!cartItems) {
if (!cartItems.ids.length) {
return null;
}
return cartItems.length ? (
<Badge color="dark">{cartItems.length}</Badge>
return cartItems.ids.length ? (
<Badge color="dark">{cartItems.ids.length}</Badge>
) : null;
}
}
Expand Down
20 changes: 20 additions & 0 deletions src/client/components/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,26 @@ export default class Header extends React.Component {
Products
</Link>
</NavItem>
<NavItem>
<Link
className={classnames("nav-link", {
active: pathname === "/products/samsung"
})}
to="/products/samsung"
>
Samsung
</Link>
</NavItem>
<NavItem>
<Link
className={classnames("nav-link", {
active: pathname === "/products/apple"
})}
to="/products/apple"
>
Apple
</Link>
</NavItem>
<NavItem>
<Link
className={classnames("nav-link", {
Expand Down
2 changes: 1 addition & 1 deletion src/client/components/Product.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class Product extends React.Component {
render() {
const { products, match } = this.props;
const productId = parseInt(match.params.id, 10);
const product = products.length && products.find(p => p.id === productId);
const product = products.ids.length && products.byId[productId];
if (!product) {
return null;
}
Expand Down
14 changes: 11 additions & 3 deletions src/client/components/Products.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,24 @@ function Product({ product }) {

class Products extends React.Component {
componentDidMount() {
const { productActions } = this.props;
productActions.getProducts();
const { productActions, match } = this.props;
const brand = match.params.brand;
productActions.getProducts(brand);
}

componentWillReceiveProps(nextProps) {
const { match, productActions } = this.props;
if (nextProps.match.params.brand !== match.params.brand) {
productActions.getProducts(nextProps.match.params.brand);
}
}
render() {
const { products } = this.props;
return (
<div>
Products
<ListGroup>
{products.map(product => (
{Object.values(products.byId).map(product => (
<Product key={product.id} product={product} />
))}
</ListGroup>
Expand Down
9 changes: 6 additions & 3 deletions src/client/redux/actions/index.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
import * as actionTypes from "../actionTypes";
import { transformProductsApi } from "../transformers/transformProductsApi";
import { transformGetCartItemsApi } from "../transformers/transformGetCartItemsApi";

export const getProducts = productId => {
return dispatch => {
dispatch({ type: actionTypes.GET_PRODUCTS_REQUEST });
const apiUrl = productId ? `/api/products/${productId}` : "/api/products";
console.log(apiUrl);
return fetch(apiUrl).then(async response => {
const responseData = await response.json();
if (response.ok) {
const data = transformProductsApi(responseData);
dispatch({
type: actionTypes.GET_PRODUCTS_SUCCESS,
payload: responseData
payload: data
});
} else {
dispatch({
Expand All @@ -28,9 +30,10 @@ export const getCartItems = () => {
return fetch("/api/cart-items").then(async response => {
const responseData = await response.json();
if (response.ok) {
const data = transformGetCartItemsApi(responseData);
dispatch({
type: actionTypes.GET_CART_ITEMS_SUCCESS,
payload: responseData
payload: data
});
} else {
dispatch({
Expand Down
33 changes: 30 additions & 3 deletions src/client/redux/reducers/cartItems.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,39 @@
import * as actionTypes from "../actionTypes";

export default function cartItemsReducer(state = [], action) {
const initialState = {
byId: {},
ids: [],
isLoading: false,
isError: false,
errorMsg: ""
};

export default function cartItemsReducer(state = initialState, action) {
switch (action.type) {
case actionTypes.ADD_ITEMS_TO_CART_REQUEST:
case actionTypes.GET_CART_ITEMS_REQUEST:
return {
...state,
isLoading: true
};

case actionTypes.GET_CART_ITEMS_SUCCESS:
return [...state, ...action.payload];
return {
...state,
...action.payload,
isLoading: false
};

case actionTypes.ADD_ITEMS_TO_CART_SUCCESS:
return [...state, action.payload];
return {
...state,
byId: {
...state.byId,
[action.payload.id]: action.payload
},
ids: [...state.ids, action.payload.id],
isLoading: false
};

default:
return state;
Expand Down
35 changes: 33 additions & 2 deletions src/client/redux/reducers/products.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,40 @@
import * as actionTypes from "../actionTypes";
import merge from "lodash/merge";

export default function productsReducer(state = [], action) {
const initialState = {
byId: {},
ids: [],
isLoading: false,
isError: false,
errorMsg: ""
};

export default function productsReducer(state = initialState, action) {
switch (action.type) {
case actionTypes.GET_PRODUCTS_REQUEST:
return {
...state,
byId: {},
ids: [],
isLoading: true
};

case actionTypes.GET_PRODUCTS_SUCCESS:
return action.payload;
return {
...state,
byId: merge({}, state.byId, action.payload.byId),
ids: [...state.ids, action.payload.ids],
isLoading: false
};

case actionTypes.GET_PRODUCTS_FAILURE:
return {
...state,
isLoading: false,
isError: true,
errorMsg: action.payload
};

default:
return state;
}
Expand Down
10 changes: 10 additions & 0 deletions src/client/redux/transformers/transformGetCartItemsApi.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
export const transformGetCartItemsApi = data => ({
byId: data.reduce(
(obj, cartItem) => ({
...obj,
[cartItem.id]: cartItem
}),
{}
),
ids: data.map(cartItem => cartItem.id)
});
10 changes: 10 additions & 0 deletions src/client/redux/transformers/transformProductsApi.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
export const transformProductsApi = data => ({
byId: data.reduce(
(obj, product) => ({
...obj,
[product.id]: product
}),
{}
),
ids: data.map(product => product.id)
});
25 changes: 22 additions & 3 deletions src/server/connectors/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,23 @@ let products = [
{
id: 1,
name: "Macbook",
brand: "Apple",
description: "Latest Macbook with 16GB ram and Quad core processor",
price: 65000,
url: "/img/macbook.jpeg"
},
{
id: 2,
name: "Keyboard",
brand: "Apple",
description: "Ergonomic keyboard",
price: 3000,
url: "/img/keyboard.jpeg"
},
{
id: 3,
name: "Keyboard",
brand: "Samsung",
description: "Ergonomic keyboard",
price: 3000,
url: "/img/keyboard.jpeg"
Expand All @@ -29,11 +39,16 @@ export function getProducts() {
return products;
}

export function getProduct(id) {
console.log("productId", id);
export function getProductById(id) {
return [products.find(product => product.id === id)];
}

export function getProductsByBrand(brand) {
return products.filter(
product => product.brand.toLowerCase() === brand.toLowerCase()
);
}

export function getCartItem(id) {
return cartItems.find(c => c.id === id);
}
Expand All @@ -51,7 +66,11 @@ export function addToCart({ productId }) {
product: products.find(p => p.id === productId)
};
cartItems.push(newCartItem);
return newCartItem;
return new Promise((resolve, reject) => {
setTimeout(() => {
resolve(newCartItem);
}, 5000);
});
}

export function deleteCartItem(args) {
Expand Down
14 changes: 9 additions & 5 deletions src/server/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ import morgan from "morgan";
import {
getUser,
getProducts,
getProduct,
getProductById,
getProductsByBrand,
getCartItems,
getCartItem,
addToCart,
Expand Down Expand Up @@ -43,10 +44,13 @@ app.get("/api/products", function(req, res) {
res.json(getProducts());
});

app.get("/api/products/:id", function(req, res) {
app.get("/api/products/:id(\\d+)/", function(req, res) {
const id = parseInt(req.params.id, 10);
console.log("product id", id);
res.json(getProduct(id));
res.json(getProductById(id));
});

app.get("/api/products/:brand(\\w+)/", function(req, res) {
res.json(getProductsByBrand(req.params.brand));
});

app.get("/api/cart-items", function(req, res) {
Expand All @@ -59,7 +63,7 @@ app.get("/api/cart-items/:id", function(req, res) {
});

app.post("/api/cart-items", function(req, res) {
res.json(addToCart(req.body));
addToCart(req.body).then(response => res.json(response));
});

app.post("/api/cart-items/:id", function(req, res) {
Expand Down
4 changes: 4 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4969,6 +4969,10 @@ lodash.uniq@^4.5.0:
version "4.5.0"
resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"

[email protected]:
version "4.17.10"
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7"

"lodash@>=3.5 <5", lodash@^4.13.1, lodash@^4.14.0, lodash@^4.15.0, lodash@^4.17.2, lodash@^4.17.3, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.3.0:
version "4.17.5"
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.5.tgz#99a92d65c0272debe8c96b6057bc8fbfa3bed511"
Expand Down