import React from 'react'; import {connect} from "react-redux"; import { setAppointmentSpec, setAppointmentShedule, setAppointmentDoctor, clearAppointment, setAppointmentTime, setAppointmentComment, postOrders } from "../actions/actions"; import Calendar from "../components/Calendar" export class Appoint extends React.Component { componentDidMount() { this.props.setAppointmentDoctor(this.props.match.params.doctorId) } componentWillUnmount() { this.props.clearAppointment() } render() { const {doctors, appointment, timeArray,services} = this.props.app; const {match, setAppointmentSpec, setAppointmentShedule, setAppointmentTime, setAppointmentComment, postOrders} = this.props; const doctor = doctors.find(el => el._id === match.params.doctorId); let spec; if (appointment.spec){ spec = services.find(el => el._id === appointment.spec) } return ( <>
{doctor &&
{doctor.name}/

{doctor.name}

{doctor.profession}

{appointment.spec &&

{spec.name}

Длительность: {spec.duration} ч.

{/*

{spec.description}

*/}

Цена от {spec.price} грн.

} {appointment.spec && } {appointment.shedule &&
} {appointment.time &&
setAppointmentComment(e.target.value)}/>
}
}
); } } const mapStateToProps = state => { return { app:state.app, } }; const mapDispatchToProps = { setAppointmentSpec, setAppointmentShedule, setAppointmentDoctor, clearAppointment, setAppointmentTime, setAppointmentComment, postOrders }; export default connect (mapStateToProps,mapDispatchToProps)(Appoint)