-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfiltros.componente.tsx
43 lines (38 loc) · 1.31 KB
/
filtros.componente.tsx
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
import "./filtros.css";
import { ChangeEvent, FC } from "react";
import { useDispatch } from "react-redux";
import { buscarPersonajesThunk } from "../../acciones/personajes.acciones";
import { useSelector } from "./grilla-personajes.componente";
/**
* Componente funcional Filtros() va a procesar el ingreso de datos en el input para poder pedir data a la API
*
* @author Bottinelli Rocio<rociobottinelli@gmail.com>
* @returns {JSX.Element} retorna un array que contiene personajes
*/
const Filtros: FC = () => {
const dispatch = useDispatch();
const { busqueda } = useSelector((state) => state.personajes);
/**
* Función buscarPersonajesTodos() va a despachar una nueva accion con la llamada a la api informando sobre los nuevos datos
*
* @author Bottinelli Rocio<rociobottinelli@gmail.com>
* @returns {Event} e
*/
const buscarPersonajesTodos = async (e: ChangeEvent<HTMLInputElement>) => {
dispatch(buscarPersonajesThunk(e.target.value));
};
return (
<div className="filtros">
<label htmlFor="nombre">Filtrar por nombre:</label>
<input
type="text"
placeholder="Rick, Morty, Beth, Alien, ...etc"
autoFocus={true}
name="nombre"
value={busqueda}
onChange={(e) => buscarPersonajesTodos(e)}
/>
</div>
);
};
export default Filtros;