This repository has been archived on 2024-07-31. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon/app/assets/javascripts/components/features/ui/containers/modal_container.jsx

17 lines
428 B
React
Raw Normal View History

import { connect } from 'react-redux';
2017-04-01 16:11:28 -04:00
import { closeModal } from '../../../actions/modal';
import ModalRoot from '../components/modal_root';
2016-10-24 12:07:40 -04:00
const mapStateToProps = state => ({
2017-04-01 16:11:28 -04:00
type: state.get('modal').modalType,
props: state.get('modal').modalProps
2016-10-24 12:07:40 -04:00
});
const mapDispatchToProps = dispatch => ({
2017-04-01 16:11:28 -04:00
onClose () {
2016-10-24 12:07:40 -04:00
dispatch(closeModal());
},
});
2017-04-01 16:11:28 -04:00
export default connect(mapStateToProps, mapDispatchToProps)(ModalRoot);