react-adminlte-components
Version:
React Components that use AdminLTE theme
58 lines (49 loc) • 1.8 kB
JSX
import React from 'react';
import {Link, withRouter} from 'react-router-dom';
import {store} from 'base/routes';
import {Promotions} from 'api';
import {connect} from 'react-redux';
import CONFIG from 'base/constants/config';
import {UploadImage} from 'components/UI/Image';
import style from './_PromotionBox.scss';
class PromotionBox extends React.Component {
constructor(props, context) {
super(props, context);
}
handleDelete(id, e) {
if (confirm("Bạn có muốn xóa tin khuyến mãi này?")) {
Promotions.actions.delete.request({ id }).then(response => {
this.props.deleteCallBack();
});
}
}
render() {
let Img = null;
if (this.props.data.image) {
Img = <UploadImage width={128} height={128} type='PROMOTION' image={this.props.data.image} transform='crop'/>
} else {
Img = <img className="media-object" src={require('assets/images/placeholder-128.jpg')} alt="..." width="128" height="128"/>;
}
return (
<div className="media">
<h3>
{this.props.data.title}
<Link to={`/promotions/edit/${this.props.data.id}`} className="btn-actions"><span className="glyphicon glyphicon-pencil" aria-hidden="true"></span></Link>
<a onClick={this.handleDelete.bind(this, this.props.data.id)} className="btn-actions"><span className="glyphicon glyphicon-remove" aria-hidden="true"></span></a>
</h3>
{
<div className="media-left media-middle">
<a href="#">
{Img}
</a>
</div>
}
<div className="media-body">
<p>Link: {this.props.data.link}</p>
<p>{this.props.data.description}</p>
</div>
</div>
);
}
}
export default withRouter(connect()(PromotionBox));