about summary refs log tree commit diff
path: root/app/javascript/themes/glitch/features/ui/containers/modal_container.js
blob: c26f19886b85622bf695036418699f170d93f734 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { connect } from 'react-redux';
import { closeModal } from 'themes/glitch/actions/modal';
import ModalRoot from '../components/modal_root';

const mapStateToProps = state => ({
  type: state.get('modal').modalType,
  props: state.get('modal').modalProps,
});

const mapDispatchToProps = dispatch => ({
  onClose () {
    dispatch(closeModal());
  },
});

export default connect(mapStateToProps, mapDispatchToProps)(ModalRoot);