2018-02-07 19:52:09 +01:00
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import View from './view';
|
2018-01-30 18:00:02 +01:00
|
|
|
|
2018-02-07 19:52:09 +01:00
|
|
|
const mapStateToProps = ({ show }) => {
|
2018-02-13 03:18:56 +01:00
|
|
|
let props = {};
|
|
|
|
// select name and claim id
|
|
|
|
const existingRequest = show.assetRequests[show.request.id];
|
|
|
|
const assetKey = `a#${existingRequest.name}#${existingRequest.claimId}`;
|
2018-02-13 03:50:19 +01:00
|
|
|
const asset = show.assetList[assetKey];
|
|
|
|
if (asset) {
|
|
|
|
props['name'] = asset.name;
|
|
|
|
props['claimId'] = asset.claimId;
|
2018-02-07 19:52:09 +01:00
|
|
|
};
|
2018-02-13 03:18:56 +01:00
|
|
|
return props;
|
2018-01-30 18:00:02 +01:00
|
|
|
};
|
|
|
|
|
2018-02-07 19:52:09 +01:00
|
|
|
export default connect(mapStateToProps, null)(View);
|