mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-01 23:31:13 +01:00
50d38d7605
* fix(dropdown_menu): Open as modal on mobile * fix(dropdown_menu): Open modal on touch * fix(dropdown_menu): Show status * fix(dropdown_menu): Max dimensions and reduce padding * chore(dropdown_menu): Test new functionality * refactor: Use DropdownMenuContainer instead of DropdownMenu * feat(privacy_dropdown): Open as modal on touch devices * feat(modal_root): Do not load actions-modal async
16 lines
550 B
JavaScript
16 lines
550 B
JavaScript
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);
|