gab-social/app/javascript/gabsocial/containers/modal_container.js

21 lines
540 B
JavaScript
Raw Normal View History

import { closeModal } from '../actions/modal';
import { cancelReplyCompose } from '../actions/compose';
2019-07-02 08:10:25 +01:00
import ModalRoot from '../components/modal_root';
const mapStateToProps = state => ({
type: state.get('modal').modalType,
props: state.get('modal').modalProps,
});
const mapDispatchToProps = (dispatch) => ({
onClose (optionalType) {
if (optionalType === 'COMPOSE') {
dispatch(cancelReplyCompose());
}
dispatch(closeModal());
},
});
export default connect(mapStateToProps, mapDispatchToProps)(ModalRoot);