File size: 2,248 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
import React from "react";
import "./ListItem.scss";
import { withRouter } from "react-router";
import { IMAGE_BASE_URL, POSTER_SIZE } from "../../Config/config";
import { faTimes } from "@fortawesome/free-solid-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import imdb from "../../Assets/imdb.png";
import star from "../../Assets/star.png";
import { FixString } from "../../Utils/FixString";
import { removeItem } from "../../Redux/List/list-actions";
import { connect } from "react-redux";
import { compose } from "redux";
const ListItem = ({ item, history, removeItem }) => {
const { id, title, poster_path, vote_average, name } = item;
var titlePath = title ? FixString(title) : null;
var namePath = name ? FixString(name) : null;
return (
<div className="list-item">
<div className="list-item__rating-container">
<span className="list-item__rating">
<img src={imdb} alt="imdb" className="list-item__imdb" />
<span className="list-item__rank">{vote_average}/</span>
<span className="list-item__ten">10</span>
<img src={star} alt="imdb" className="list-item__star" />
</span>
</div>
<div className="list-item__addtolist" onClick={() => removeItem(item)}>
<FontAwesomeIcon icon={faTimes} className="list-item__remove-icon" />
</div>
<div
className="list-item__img-box"
onClick={() => {
return title
? history.push({ pathname: `/movies/${titlePath}`, state: { id } })
: history.push({ pathname: `/tvshows/${namePath}`, state: { id } });
}}
>
<img
src={`${IMAGE_BASE_URL}${POSTER_SIZE}${poster_path}`}
alt="movie"
className="list-item__img"
/>
</div>
<div className="list-item__text">
<h1 className="list-item__title">{title}</h1>
<h1 className="list-item__title">{name}</h1>
</div>
</div>
);
};
const mapDispatchToProps = dispatch => ({
removeItem: item => dispatch(removeItem(item))
});
export default compose(
withRouter,
connect(
null,
mapDispatchToProps
)
)(ListItem);
|