mastodon/app/javascript/themes/glitch/features/ui/containers/modal_container.js

17 lines
434 B
JavaScript
Raw Normal View History

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