17 lines
		
	
	
		
			588 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			588 B
		
	
	
	
		
			JavaScript
		
	
	
	
| import { openModal, closeModal } from 'themes/glitch/actions/modal';
 | |
| import { connect } from 'react-redux';
 | |
| import DropdownMenu from 'themes/glitch/components/dropdown_menu';
 | |
| import { isUserTouching } from 'themes/glitch/util/is_mobile';
 | |
| 
 | |
| const mapStateToProps = state => ({
 | |
|   isModalOpen: state.get('modal').modalType === 'ACTIONS',
 | |
| });
 | |
| 
 | |
| const mapDispatchToProps = dispatch => ({
 | |
|   isUserTouching,
 | |
|   onModalOpen: props => dispatch(openModal('ACTIONS', props)),
 | |
|   onModalClose: () => dispatch(closeModal()),
 | |
| });
 | |
| 
 | |
| export default connect(mapStateToProps, mapDispatchToProps)(DropdownMenu);
 |