spee.ch/react/containers/Dropzone/index.js

26 lines
628 B
JavaScript
Raw Normal View History

2018-01-17 10:49:57 -08:00
import { connect } from 'react-redux';
2018-01-18 09:33:26 -08:00
import { selectFile, updateError } from 'actions/publish';
2018-01-17 15:00:03 -08:00
import View from './view';
2018-01-17 10:49:57 -08:00
2018-01-18 09:33:26 -08:00
const mapStateToProps = ({ publish }) => {
2018-01-17 10:49:57 -08:00
return {
2018-01-18 09:33:26 -08:00
file : publish.file,
thumbnail: publish.metadata.thumbnail,
fileError: publish.error.file,
2018-01-17 10:49:57 -08:00
};
};
const mapDispatchToProps = dispatch => {
return {
onFileSelect: (file) => {
dispatch(selectFile(file));
dispatch(updateError('publishSubmit', null));
},
onFileError: (value) => {
dispatch(updateError('file', value));
},
};
};
export default connect(mapStateToProps, mapDispatchToProps)(View);