Appointment.js 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. import React from 'react';
  2. import {connect} from "react-redux";
  3. import {
  4. setAppointmentSpec,
  5. setAppointmentShedule,
  6. setAppointmentDoctor,
  7. clearAppointment,
  8. setAppointmentTime,
  9. setAppointmentComment,
  10. postOrders
  11. } from "../actions/actions";
  12. import Calendar from "../components/Calendar"
  13. export class Appoint extends React.Component {
  14. componentDidMount() {
  15. this.props.setAppointmentDoctor(this.props.match.params.doctorId)
  16. }
  17. componentWillUnmount() {
  18. this.props.clearAppointment()
  19. }
  20. render() {
  21. const {doctors, appointment, timeArray,services} = this.props.app;
  22. const {match, setAppointmentSpec, setAppointmentShedule, setAppointmentTime, setAppointmentComment, postOrders} = this.props;
  23. const doctor = doctors.find(el => el._id === match.params.doctorId);
  24. let spec;
  25. if (appointment.spec){
  26. spec = services.find(el => el._id === appointment.spec)
  27. }
  28. return (
  29. <>
  30. <div className="main">
  31. {doctor &&
  32. <div className = "info-wrap">
  33. <div className="card">
  34. <div className="card-item">
  35. <img src={`.${doctor.photo}`} alt={doctor.name}/>
  36. </div>
  37. <div className="card-item desc">
  38. <h3>{doctor.name}</h3>
  39. <p className = "highlights">{doctor.profession}</p>
  40. {appointment.spec &&
  41. <div>
  42. <p>{spec.name}</p>
  43. <p>Длительность: {spec.duration} ч.</p>
  44. {/* <p>{spec.description}</p> */}
  45. <p>Цена от {spec.price} грн.</p>
  46. </div>
  47. }
  48. <select onChange={(e)=>setAppointmentSpec(e.target.value)} defaultValue='Выбор услуги'>
  49. <option disabled >Выбор услуги</option>
  50. {
  51. doctor.speciality.map(el=> (
  52. <option key={el._id}>{el.name}</option>
  53. ))
  54. }
  55. </select>
  56. {appointment.spec &&
  57. <Calendar doctor={doctor} setAppointmentShedule={setAppointmentShedule} />
  58. }
  59. {appointment.shedule &&
  60. <div>
  61. <div>
  62. <select onChange={(e)=>setAppointmentTime(e.target.value)} defaultValue='choose time'>
  63. <option disabled >Выбор даты</option>
  64. {
  65. timeArray.map(el=> (
  66. <option key={Object.keys(el)[0]}> {Object.keys(el)[0]} </option>
  67. ))
  68. }
  69. </select>
  70. </div>
  71. </div>
  72. }
  73. {appointment.time &&
  74. <div style={{display:"flex",flexDirection:"column"}}>
  75. <input type='text' placeholder='Добавить комментарий' onChange={(e)=>setAppointmentComment(e.target.value)}/>
  76. <button onClick={() => postOrders(appointment)}>Подтвердите запись</button>
  77. </div>
  78. }
  79. </div>
  80. </div>
  81. </div>
  82. }
  83. </div>
  84. </>
  85. );
  86. }
  87. }
  88. const mapStateToProps = state => {
  89. return {
  90. app:state.app,
  91. }
  92. };
  93. const mapDispatchToProps = {
  94. setAppointmentSpec,
  95. setAppointmentShedule,
  96. setAppointmentDoctor,
  97. clearAppointment,
  98. setAppointmentTime,
  99. setAppointmentComment,
  100. postOrders
  101. };
  102. export default connect (mapStateToProps,mapDispatchToProps)(Appoint)