initial docker setup
This commit is contained in:
44
frontend/src/containers/cart/CartContainer.jsx
Normal file
44
frontend/src/containers/cart/CartContainer.jsx
Normal file
@@ -0,0 +1,44 @@
|
||||
import React, {Component} from 'react';
|
||||
import {connect} from 'react-redux';
|
||||
import {Link} from 'react-router-dom';
|
||||
import {Row, Col, Container, NavLink} from 'reactstrap';
|
||||
import CartStepsContainer from './CartStepsContainer.jsx';
|
||||
import CartItemsContainer from './CartItemsContainer.jsx';
|
||||
import {fetchCartCount} from '../../actions/cart/cartActions';
|
||||
import {cartTexts} from '../../constants/cartConstants';
|
||||
|
||||
class CartContainer extends Component {
|
||||
componentDidMount() {
|
||||
this.props.dispatch(fetchCartCount());
|
||||
}
|
||||
|
||||
render() {
|
||||
const {cartSteps, currentStep, cartCount} = this.props;
|
||||
const TagName = currentStep && cartSteps && cartSteps[currentStep] ? cartSteps[currentStep].container : null;
|
||||
|
||||
return (
|
||||
<Container fluid={true} id="cart-container">
|
||||
{ cartCount
|
||||
? <div>
|
||||
<CartStepsContainer/>
|
||||
<Row>
|
||||
<Col xl="5" lg="5" md="12" xs="12"><CartItemsContainer /></Col>
|
||||
<Col xl="7" lg="7" md="12" xs="12">{TagName && <TagName/>}</Col>
|
||||
</Row>
|
||||
</div>
|
||||
: <Row>
|
||||
<NavLink tag={Link} to='/co-market' id="go-to-co-market-text">{cartTexts.labels.EMPTY_CART}</NavLink>
|
||||
</Row>
|
||||
}
|
||||
</Container>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
const mapStateToProps = (state) => ({
|
||||
cartSteps: state.cartReducer.cartSteps,
|
||||
currentStep: state.cartReducer.currentStep,
|
||||
cartCount: state.cartReducer.cartCount
|
||||
});
|
||||
|
||||
export default connect(mapStateToProps)(CartContainer);
|
||||
Reference in New Issue
Block a user