-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRecipeCreate.js
97 lines (93 loc) · 2.59 KB
/
RecipeCreate.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
import React, { useState } from "react";
function RecipeCreate({createRecipe}) {
const initialStateForm={
name:"",
cuisine:"",
photo:"",
ingredients:"",
preparation:"",
};
const [formData, setFormData] = useState({...initialStateForm});
const handleSubmit = (event) => {
event.preventDefault();
createRecipe(formData);
setFormData({...initialStateForm});
}
const handleChange = ({target}) => {
setFormData({...formData, [target.name]:target.value})
}
// TODO: When the form is submitted, a new recipe should be created, and the form contents cleared.
// TODO: Add the required input and textarea form elements.
// TODO: Add the required submit and change handlers
return (
<form name="create" onSubmit={handleSubmit}>
<table>
<tbody>
<tr>
<td>
<input
id="name"
type="text"
name="name"
required={true}
onChange={handleChange}
value={formData.name}
placeholder="Name"
/>
</td>
<td>
<input
id="cuisine"
type="text"
name="cuisine"
required={true}
placeholder="Cuisine"
value={formData.cuisine}
onChange={handleChange}
/>
</td>
<td>
<input
id="photo"
name="photo"
type="text"
required={true}
onChange={handleChange}
value={formData.photo}
placeholder="URL"
/>
</td>
<td>
<textarea
id="ingredients"
type="text"
name="ingredients"
required={true}
rows={2}
placeholder="Ingredients"
value={formData.ingredients}
onChange={handleChange}
/>
</td>
<td>
<textarea
id="preparation"
type="text"
name="preparation"
required={true}
rows={2}
placeholder="Preparation"
value={formData.preparation}
onChange={handleChange}
/>
</td>
<td>
<button type="submit">Create</button>
</td>
</tr>
</tbody>
</table>
</form>
);
}
export default RecipeCreate;