Last active
September 14, 2020 11:15
-
-
Save porfidev/eac35299dec2b5c1bee77b01c82a5abb to your computer and use it in GitHub Desktop.
React - Any form value to state
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from "react"; | |
import "./App.css"; | |
class App extends Component { | |
state = { | |
nombre: "", | |
email: "", | |
esAdmin: "", | |
genero: "", | |
color: "", | |
comentarios: "" | |
}; | |
valueToState = ({ name, value, checked, type }) => { | |
this.setState(() => { | |
return { [name]: type === "checkbox" ? checked : value }; | |
}); | |
}; | |
render() { | |
return ( | |
<div> | |
<pre>{JSON.stringify(this.state, null, 2)}</pre> | |
<form> | |
<label htmlFor="nombre">Nombre</label> | |
<input | |
name="nombre" | |
type="text" | |
placeholder="Ingresa tu nombre" | |
onChange={event => this.valueToState(event.target)} | |
/> | |
<label htmlFor="email">Correo Electrónico</label> | |
<input | |
name="email" | |
type="email" | |
placeholder="[email protected]" | |
onChange={event => this.valueToState(event.target)} | |
/> | |
<label> | |
¿Es Administrador? | |
<input | |
type="checkbox" | |
name="esAdmin" | |
onChange={event => this.valueToState(event.target)} | |
/> | |
</label> | |
<legend>Genero</legend> | |
<label> | |
Masculino | |
<input | |
type="radio" | |
name="genero" | |
value={"m"} | |
onChange={event => this.valueToState(event.target)} | |
/> | |
</label> | |
<label> | |
Femenino | |
<input | |
type="radio" | |
name="genero" | |
value={"f"} | |
onChange={event => this.valueToState(event.target)} | |
/> | |
</label> | |
<label htmlFor="color">¿Cual es tu color favorito?</label> | |
<select | |
name="color" | |
onChange={event => this.valueToState(event.target)} | |
> | |
<option value={""}>- selecciona uno -</option> | |
<option value={"rojo"}>rojo</option> | |
<option value={"azul"}>azul</option> | |
<option value={"verde"}>verde</option> | |
</select> | |
<label htmlFor="comentarios">Comentarios</label> | |
<textarea | |
name="comentarios" | |
placeholder="Escribe tus sugerencias" | |
onChange={event => this.valueToState(event.target)} | |
/> | |
</form> | |
</div> | |
); | |
} | |
} | |
export default App; | |
render() { | |
return ( | |
<div> | |
<pre>{JSON.stringify(this.state, null, 2)}</pre> | |
<form> | |
<label htmlFor={"nombre"}>Nombre</label> | |
<input | |
type="text" | |
name="nombre" | |
placeholder="nombre" | |
onChange={e => this.valueToState(e.target)} | |
/> | |
<br /> | |
<label htmlFor={"email"}>Correo Electrónico</label> | |
<input | |
type="email" | |
name="email" | |
placeholder="[email protected]" | |
onChange={e => this.valueToState(e.target)} | |
/> | |
<br /> | |
<label htmlFor={"mensaje"}>Comentarios</label> | |
<textarea | |
name="mensaje" | |
placeholder="sugerencias aquí" | |
onChange={e => this.valueToState(e.target)} | |
/> | |
<br /> | |
<label htmlFor="activo">¿Activo?</label> | |
<input | |
type="checkbox" | |
name="activo" | |
onChange={e => this.valueToState(e.target, "checkbox")} | |
/> | |
<br /> | |
<label> | |
Masculino | |
<input | |
type="radio" | |
name="genero" | |
value={"m"} | |
onChange={e => this.valueToState(e.target)} | |
/> | |
</label> | |
<label> | |
Femenino | |
<input | |
type="radio" | |
name="genero" | |
value={"f"} | |
onChange={e => this.valueToState(e.target)} | |
/> | |
</label> | |
<br /> | |
<label htmlFor="color">Seleccione un color</label> | |
<select name="color" onChange={e => this.valueToState(e.target)}> | |
<option value="">- -</option> | |
<option value="rojo">Rojo</option> | |
<option value="azul">Azul</option> | |
<option value="verde">Verde</option> | |
</select> | |
</form> | |
</div> | |
); | |
} | |
} | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment