* Add confirmation modal when closing media edit modal with unsaved changes * Move focal point media state to redux so it does not get erased by confirmation dialog * Change upload modal behavior to keep it open while saving changes Instead of closing it immediately and losing changes if they fail to save… * Make it work with react-intl 2.9
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			756 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			756 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import { connect } from 'react-redux';
 | |
| import { openModal, closeModal } from '../../../actions/modal';
 | |
| import ModalRoot from '../components/modal_root';
 | |
| 
 | |
| const mapStateToProps = state => ({
 | |
|   type: state.getIn(['modal', 0, 'modalType'], null),
 | |
|   props: state.getIn(['modal', 0, 'modalProps'], {}),
 | |
| });
 | |
| 
 | |
| const mapDispatchToProps = dispatch => ({
 | |
|   onClose (confirmationMessage) {
 | |
|     if (confirmationMessage) {
 | |
|       dispatch(
 | |
|         openModal('CONFIRM', {
 | |
|           message: confirmationMessage.message,
 | |
|           confirm: confirmationMessage.confirm,
 | |
|           onConfirm: () => dispatch(closeModal()),
 | |
|         }),
 | |
|       );
 | |
|     } else {
 | |
|       dispatch(closeModal());
 | |
|     }
 | |
|   },
 | |
| });
 | |
| 
 | |
| export default connect(mapStateToProps, mapDispatchToProps)(ModalRoot);
 |