import React, { Component } from "react"; import { reduxForm, Field } from "redux-form"; import "./adminPhotogalary.scss"; import { addPhotogalaryInitialValue } from "../../state/photogalaryFormData"; import { customInput } from "../customFields/customInput/customInput"; import { customSelect } from "../customFields/customSelect/customSelect"; import { eventTypes } from "../../state/addEventInitialValue"; class PhotogalaryReduxForm extends Component { state = { addPhotogalaryInitialValue } submit = e => { // this.props.submitHandler(addPhotogalaryInitialValue); }; onChangeHandler = e => { const { name, value, id } = e.target; this.setState(prevState => { return { ...prevState, addPhotogalaryInitialValue: { ...prevState.addPhotogalaryInitialValue, [name]: value, pictures: prevState.addPhotogalaryInitialValue.pictures.map(el => (el.id === id ? { ...el, value } : el)) } }; }); }; addPicture = (e) => { this.setState(prevState => ({ ...prevState, addPhotogalaryInitialValue: { ...prevState.addPhotogalaryInitialValue, pictures: prevState.addPhotogalaryInitialValue.pictures.concat({ id: Math.random() .toString() .substr(2, 100), value: "" }) } })); }; render() { const { addPhotogalaryInitialValue } = this.state; console.log(this.state) const { handleSubmit } = this.props; return (
{eventTypes.map(elem => )} {addPhotogalaryInitialValue.pictures.map((el, i) => ( ))}
); } } export default reduxForm({ form: "photogalaryForm", enableReinitialize: true })(PhotogalaryReduxForm);