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.
16 lines
550 B
16 lines
550 B
import { openModal, closeModal } from '../actions/modal'; |
|
import { connect } from 'react-redux'; |
|
import DropdownMenu from '../components/dropdown_menu'; |
|
import { isUserTouching } from '../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);
|
|
|