2018-02-06 03:14:12 +01:00
|
|
|
import { connect } from 'react-redux';
|
2018-03-01 06:25:51 +01:00
|
|
|
import { updateThumbnailClaim, updateThumbnailSelectedFile } from 'actions/publish';
|
2018-01-18 00:00:03 +01:00
|
|
|
import View from './view';
|
2018-01-17 19:49:57 +01:00
|
|
|
|
2018-02-06 03:14:12 +01:00
|
|
|
const mapStateToProps = ({ publish, site }) => {
|
2018-01-17 19:49:57 +01:00
|
|
|
return {
|
2018-03-01 06:25:51 +01:00
|
|
|
host : site.host,
|
2018-02-06 03:14:12 +01:00
|
|
|
// file props
|
2018-03-01 06:25:51 +01:00
|
|
|
file : publish.file,
|
|
|
|
claim : publish.claim,
|
2018-02-06 03:14:12 +01:00
|
|
|
// channel props
|
2018-03-01 06:25:51 +01:00
|
|
|
thumbnailChannel: publish.thumbnail.channel,
|
|
|
|
thumbnailClaim : publish.thumbnail.claim,
|
|
|
|
thumbnailFile : publish.thumbnail.selectedFile,
|
2018-01-17 19:49:57 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
const mapDispatchToProps = dispatch => {
|
|
|
|
return {
|
2018-03-01 06:25:51 +01:00
|
|
|
onThumbnailChange: (claim, url) => {
|
2018-02-06 03:14:12 +01:00
|
|
|
dispatch(updateThumbnailClaim(claim, url));
|
|
|
|
},
|
|
|
|
onThumbnailFileSelect: (file) => {
|
|
|
|
dispatch(updateThumbnailSelectedFile(file));
|
2018-01-17 19:49:57 +01:00
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(View);
|