adminPhotogalaryReduxForm.js 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. import React, { Component } from "react";
  2. import { reduxForm, Field } from "redux-form";
  3. import "./adminPhotogalary.scss";
  4. import { addPhotogalaryInitialValue } from "../../state/photogalaryFormData";
  5. import { customInput } from "../customFields/customInput/customInput";
  6. import { customSelect } from "../customFields/customSelect/customSelect";
  7. class PhotogalaryReduxForm extends Component {
  8. state = {
  9. addPhotogalaryInitialValue,
  10. filteredEventList: []
  11. }
  12. submit = values => {
  13. // console.log('submit props', this.props)
  14. // console.log('submit state', this.state)
  15. const pictures = this.state.addPhotogalaryInitialValue.pictures.reduce((prev, elem) => {
  16. return prev.concat(elem.value);
  17. }, []);
  18. // const eventId = this.props.eventList.find(
  19. // event => event.title === this.state.addPhotogalaryInitialValue.eventTitle
  20. // )._id
  21. const submitValues = {
  22. ...this.state.addPhotogalaryInitialValue,
  23. pictures: pictures,
  24. // _id: eventId
  25. }
  26. // console.log('submit eventId', eventId)
  27. console.log('submit values', submitValues)
  28. // console.log('pictures', pictures)
  29. this.props.submitHandler(submitValues);
  30. this.props.reset()
  31. };
  32. onChangeTypeHandler = e => {
  33. const { name, value } = e.target;
  34. console.log('eventInput', value)
  35. this.setState(prevState => {
  36. console.log('prevStateInput', prevState)
  37. return {
  38. ...prevState,
  39. addPhotogalaryInitialValue: {
  40. ...prevState.addPhotogalaryInitialValue,
  41. [name]: value
  42. },
  43. filteredEventList: [{id: 1, title: "Choose event"}].concat(
  44. this.props.eventList.filter(el => el.eventType === value)
  45. )
  46. };
  47. });
  48. };
  49. onChangeTitleHandler = e => {
  50. const { name, value } = e.target;
  51. console.log('eventInput', value)
  52. this.setState(prevState => {
  53. console.log('prevStateInput', prevState)
  54. return {
  55. ...prevState,
  56. addPhotogalaryInitialValue: {
  57. ...prevState.addPhotogalaryInitialValue,
  58. [name]: value
  59. }
  60. };
  61. });
  62. };
  63. onChangePicturesHandler = e => {
  64. const { value, id } = e.target;
  65. console.log('eventPicture', e)
  66. this.setState(prevState => {
  67. console.log('prevStatePicture', prevState)
  68. return {
  69. ...prevState,
  70. addPhotogalaryInitialValue: {
  71. ...prevState.addPhotogalaryInitialValue,
  72. pictures: prevState.addPhotogalaryInitialValue.pictures.map(el => (el.id === id ? { ...el, value } : el))
  73. }
  74. };
  75. });
  76. };
  77. addPicture = (e) => {
  78. this.setState(prevState => {
  79. console.log('prevStatePicture-add', prevState)
  80. return {
  81. ...prevState,
  82. addPhotogalaryInitialValue: {
  83. ...prevState.addPhotogalaryInitialValue,
  84. pictures: prevState.addPhotogalaryInitialValue.pictures.concat({
  85. id: Math.random()
  86. .toString()
  87. .substr(2, 100),
  88. name: `picture_${Math.random()
  89. .toString()
  90. .substr(2, 100)}`,
  91. value: ""
  92. })
  93. }
  94. }
  95. });
  96. };
  97. render() {
  98. const { filteredEventList, addPhotogalaryInitialValue } = this.state;
  99. // console.log(this.state )
  100. const {
  101. handleSubmit,
  102. eventTypes,
  103. } = this.props;
  104. return (
  105. <form className="event-form__event-form__main" onSubmit={handleSubmit(this.submit)}>
  106. <Field
  107. name="eventType"
  108. label="Event Type"
  109. required
  110. component={customSelect}
  111. onChange={this.onChangeTypeHandler}
  112. className="form-block__select -wide"
  113. >
  114. {eventTypes.map(elem => <option key={elem.id} value={elem.optionName}>{elem.optionName}</option>)}
  115. </Field>
  116. <Field
  117. name="eventTitle"
  118. label="Event Title"
  119. required
  120. component={customSelect}
  121. onChange={this.onChangeTitleHandler}
  122. className="form-block__select -wide"
  123. >
  124. {filteredEventList.map(elem => <option key={elem._id} value={elem.title}>{elem.title}</option>)}
  125. </Field>
  126. {addPhotogalaryInitialValue.pictures.map((el, i) => (
  127. <Field
  128. key={`${el.id}/${i}`}
  129. name={el.name}
  130. id={el.id}
  131. label="Picture"
  132. onChange={this.onChangePicturesHandler}
  133. className="input-box -wide"
  134. placeholder='Enter picture url'
  135. component={customInput}
  136. />
  137. ))}
  138. <button type="button" className="photogalary-form__picture-btn" onClick={this.addPicture} >Add Picture</button>
  139. <div className="event-form__control-box">
  140. <button className="event-form__submit-btn" >Add Photogalary</button>
  141. </div>
  142. </form>
  143. );
  144. }
  145. }
  146. export default reduxForm({ form: "photogalaryForm", enableReinitialize: true })(PhotogalaryReduxForm);