| import React from 'react'; | |
| import { closeModal } from '../../actions/modal_actions'; | |
| import { connect } from 'react-redux'; | |
| import LoginFormContainer from '../splash/session_form/login_form_container'; | |
| import SignupFormContainer from '../splash/session_form/signup_form_container'; | |
| import BookingFormContainer from '../booking/booking_form_container'; | |
| import BookingForm from '../booking/booking_form'; | |
| function Modal({ modal, closeModal }) { | |
| if (!modal) { | |
| return null; | |
| } | |
| let component; | |
| switch (modal) { | |
| case 'login': | |
| component = <LoginFormContainer />; | |
| break; | |
| case 'signup': | |
| component = <SignupFormContainer />; | |
| break; | |
| case 'booking': | |
| component = <BookingFormContainer />; | |
| // component = <BookingForm />; | |
| break; | |
| default: | |
| return null; | |
| } | |
| return ( | |
| <div className="modal-background" onClick={closeModal}> | |
| <div className="modal-child" onClick={e => e.stopPropagation()}> | |
| {component} | |
| </div> | |
| </div> | |
| ); | |
| } | |
| const msp = state => { | |
| return { | |
| modal: state.ui.modal | |
| }; | |
| }; | |
| const mdp = dispatch => { | |
| return { | |
| closeModal: () => dispatch(closeModal()) | |
| }; | |
| }; | |
| export default connect(msp, mdp)(Modal); |