19 lines
497 B
JavaScript
19 lines
497 B
JavaScript
import { connect } from 'react-redux';
|
|
|
|
import { uploadCompose } from '../../../actions/compose';
|
|
import UploadButton from '../components/upload_button';
|
|
|
|
const mapStateToProps = state => ({
|
|
disabled: state.getIn(['compose', 'is_uploading']),
|
|
resetFileKey: state.getIn(['compose', 'resetFileKey']),
|
|
});
|
|
|
|
const mapDispatchToProps = dispatch => ({
|
|
|
|
onSelectFile(files) {
|
|
dispatch(uploadCompose(files));
|
|
},
|
|
|
|
});
|
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(UploadButton);
|