32 lines
		
	
	
		
			873 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			873 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import { connect } from 'react-redux';
 | 
						|
import Upload from '../components/upload';
 | 
						|
import { undoUploadCompose, changeUploadCompose } from 'flavours/glitch/actions/compose';
 | 
						|
import { openModal } from 'flavours/glitch/actions/modal';
 | 
						|
import { submitCompose } from 'flavours/glitch/actions/compose';
 | 
						|
 | 
						|
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 }));
 | 
						|
  },
 | 
						|
 | 
						|
  onSubmit (router) {
 | 
						|
    dispatch(submitCompose(router));
 | 
						|
  },
 | 
						|
 | 
						|
});
 | 
						|
 | 
						|
export default connect(mapStateToProps, mapDispatchToProps)(Upload);
 |