-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
68 lines (59 loc) · 1.58 KB
/
index.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
import React, { useState, useEffect, useRef } from "react";
import { render } from "react-dom";
const Form = ({ showed })=>{
let [title, setTitle] = useState("");
let [body, setBody] = useState("");
const firstInput = useRef();
useEffect(()=>{
// Actualizar el Dom
if(showed){
console.log(firstInput);
firstInput.current.focus();
}
})
const sendForm = (ev) =>{
ev.preventDefault()
fetch('https://jsonplaceholder.typicode.com/posts', {
method: 'POST',
body: JSON.stringify({
title: title,
body: body,
userId: 1
}),
headers: {
"Content-type": "application/json; charset=UTF-8"
}
})
.then(response => response.json())
.then(json => {
setTitle("");
setBody("");
console.log(json)})
}
return(
<form onSubmit={(ev)=> sendForm(ev)}>
<div>
<label htmlFor="title">Título</label>
<input type="text" value={title} id="title" onChange={ (ev)=> setTitle(ev.target.value)} ref={firstInput}/>
</div>
<div>
<label htmlFor="body">Publicación</label>
<textarea value={body} id="body" onChange={ (ev)=> setBody(ev.target.value)}></textarea>
</div>
<input type="submit" value="Enviar" />
</form>
)
}
const Accordion = ()=>{
const [show, setShow] = useState(false);
return(
<div>
<button onClick={()=>setShow(true)}>Mostrar formulario</button>
{show && <Form showed={show}/>}
</div>
)
}
const App = () => {
return <div> <Accordion /> </div>
}
render(<App />, document.getElementById("react-app"));