|
@@ -18,15 +18,29 @@ class PhotogalaryReduxForm extends Component {
|
|
|
};
|
|
|
|
|
|
onChangeHandler = e => {
|
|
|
- const { name, value, id } = e.target;
|
|
|
-
|
|
|
+ const { name, value } = e.target;
|
|
|
+ // console.log('eventInput',e)
|
|
|
this.setState(prevState => {
|
|
|
+ // console.log('prevStateInput', prevState)
|
|
|
+ return {
|
|
|
+ ...prevState,
|
|
|
+ addPhotogalaryInitialValue: {
|
|
|
+ ...prevState.addPhotogalaryInitialValue,
|
|
|
+ [ name ]: value
|
|
|
+ }
|
|
|
+ };
|
|
|
+ });
|
|
|
+ };
|
|
|
|
|
|
+ onChangePicturesHandler = e => {
|
|
|
+ const { value, id } = e.target;
|
|
|
+ // console.log('eventPicture',e)
|
|
|
+ this.setState(prevState => {
|
|
|
+ // console.log('prevStatePicture', prevState)
|
|
|
return {
|
|
|
...prevState,
|
|
|
addPhotogalaryInitialValue: {
|
|
|
...prevState.addPhotogalaryInitialValue,
|
|
|
- [name]: value,
|
|
|
pictures: prevState.addPhotogalaryInitialValue.pictures.map(el => (el.id === id ? { ...el, value } : el))
|
|
|
}
|
|
|
};
|
|
@@ -42,6 +56,9 @@ class PhotogalaryReduxForm extends Component {
|
|
|
id: Math.random()
|
|
|
.toString()
|
|
|
.substr(2, 100),
|
|
|
+ name: `picture ${Math.random()
|
|
|
+ .toString()
|
|
|
+ .substr(2, 100)}`,
|
|
|
value: ""
|
|
|
})
|
|
|
}
|
|
@@ -57,13 +74,35 @@ class PhotogalaryReduxForm extends Component {
|
|
|
return (
|
|
|
<form className="event-form__event-form__main" onSubmit={handleSubmit(this.submit)}>
|
|
|
|
|
|
- <Field name="eventType" label="Event Type" required component={customSelect} onChange = {this.onChangeHandler} >
|
|
|
+ <Field
|
|
|
+ name="eventType"
|
|
|
+ label="Event Type"
|
|
|
+ required
|
|
|
+ component={customSelect}
|
|
|
+ onChange = {this.onChangeHandler}
|
|
|
+ >
|
|
|
{eventTypes.map(elem => <option key={elem.id} value={elem.optionName}>{elem.optionName}</option>)}
|
|
|
</Field>
|
|
|
- <Field name="eventTytle" label="Event Title" required component={customInput} onChange = {this.onChangeHandler} />
|
|
|
+
|
|
|
+ <Field
|
|
|
+ name="eventTytle"
|
|
|
+ label="Event Title"
|
|
|
+ required
|
|
|
+ component={customInput}
|
|
|
+ onChange = {this.onChangeHandler}
|
|
|
+ />
|
|
|
|
|
|
{addPhotogalaryInitialValue.pictures.map((el, i) => (
|
|
|
- <Field key={`${el.id}/${i}`} name="pictures" label="Picture" onChange = {this.onChangeHandler} className="input-box__wide" placeholder='Enter picture url' component={customInput} />
|
|
|
+ <Field
|
|
|
+ key={`${el.id}/${i}`}
|
|
|
+ name={el.name}
|
|
|
+ id={el.id}
|
|
|
+ label="Picture"
|
|
|
+ onChange = {this.onChangePicturesHandler}
|
|
|
+ className="input-box -wide"
|
|
|
+ placeholder='Enter picture url'
|
|
|
+ component={customInput}
|
|
|
+ />
|
|
|
))}
|
|
|
<button type="button" className="photogalary-form__picture-btn" onClick={this.addPicture} >Add Picture</button>
|
|
|
<div className="event-form__control-box">
|