2018-01-17 19:49:57 +01:00
|
|
|
import { connect } from 'react-redux';
|
2018-02-26 02:38:14 +01:00
|
|
|
import { selectFile, updateError, clearFile } from 'actions/publish';
|
2018-01-18 00:00:03 +01:00
|
|
|
import View from './view';
|
2018-01-17 19:49:57 +01:00
|
|
|
|
2018-01-18 18:33:26 +01:00
|
|
|
const mapStateToProps = ({ publish }) => {
|
2018-01-17 19:49:57 +01:00
|
|
|
return {
|
2018-01-18 18:33:26 +01:00
|
|
|
file : publish.file,
|
2018-03-02 23:57:25 +01:00
|
|
|
thumbnail: publish.thumbnail,
|
2018-01-18 18:33:26 +01:00
|
|
|
fileError: publish.error.file,
|
2018-01-17 19:49:57 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
const mapDispatchToProps = dispatch => {
|
|
|
|
return {
|
2018-02-26 02:47:22 +01:00
|
|
|
selectFile: (file) => {
|
2018-01-17 19:49:57 +01:00
|
|
|
dispatch(selectFile(file));
|
|
|
|
},
|
2018-02-26 02:47:22 +01:00
|
|
|
setFileError: (value) => {
|
2018-02-26 02:38:14 +01:00
|
|
|
dispatch(clearFile());
|
2018-01-17 19:49:57 +01:00
|
|
|
dispatch(updateError('file', value));
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(View);
|