You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
741 B
27 lines
741 B
import { connect } from 'react-redux'; |
|
import Upload from '../components/upload'; |
|
import { undoUploadCompose, initMediaEditModal } from '../../../actions/compose'; |
|
import { submitCompose } from '../../../actions/compose'; |
|
|
|
const mapStateToProps = (state, { id }) => ({ |
|
media: state.getIn(['compose', 'media_attachments']).find(item => item.get('id') === id), |
|
isEditingStatus: state.getIn(['compose', 'id']) !== null, |
|
}); |
|
|
|
const mapDispatchToProps = dispatch => ({ |
|
|
|
onUndo: id => { |
|
dispatch(undoUploadCompose(id)); |
|
}, |
|
|
|
onOpenFocalPoint: id => { |
|
dispatch(initMediaEditModal(id)); |
|
}, |
|
|
|
onSubmit (router) { |
|
dispatch(submitCompose(router)); |
|
}, |
|
|
|
}); |
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(Upload);
|
|
|