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.
26 lines
729 B
26 lines
729 B
import { connect } from 'react-redux'; |
|
import Upload from '../components/upload'; |
|
import { undoUploadCompose, changeUploadCompose } from '../../../actions/compose'; |
|
import { openModal } from '../../../actions/modal'; |
|
|
|
const mapStateToProps = (state, { id }) => ({ |
|
media: state.getIn(['compose', 'media_attachments']).find(item => item.get('id') === id), |
|
}); |
|
|
|
const mapDispatchToProps = dispatch => ({ |
|
|
|
onUndo: id => { |
|
dispatch(undoUploadCompose(id)); |
|
}, |
|
|
|
onDescriptionChange: (id, description) => { |
|
dispatch(changeUploadCompose(id, { description })); |
|
}, |
|
|
|
onOpenFocalPoint: id => { |
|
dispatch(openModal('FOCAL_POINT', { id })); |
|
}, |
|
|
|
}); |
|
|
|
export default connect(mapStateToProps, mapDispatchToProps)(Upload);
|
|
|