-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathApp.jsx
106 lines (93 loc) · 2.43 KB
/
App.jsx
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
98
99
100
101
102
103
104
105
import Search from './components/search';
import Navbar from './components/navbar';
import Footer from './components/footer';
import Grid from './layout/grid';
import Container from './layout/container';
import React from 'react';
import './App.css';
export default class App extends React.Component{
constructor(props){
super(props);
this.state = {
pokemons: [],
total: 0,
notFound: false,
search: [],
searching: false,
}
this.handleSearch = this.handleSearch.bind(this);
this.showPokemons = this.showPokemons.bind(this);
this.nextPokemon = this.nextPokemon.bind(this);
}
async handleSearch(textSearch){
if(!textSearch) {
this.setState({
search: [],
notFound:false,
})
return;
}
this.setState({
notFound: false,
searching: true,
})
const api = await fetch(`https://pokeapi.co/api/v2/pokemon/${textSearch.toLowerCase()}`);
const data = await api.json().catch(()=> undefined);
if(!data){
this.setState({
notFound: true,
})
return;
}else{
this.setState({
search: [data],
})
}
this.setState({
searching: false,
})
}
async showPokemons(limit = 20, offset = 0){
const api = await fetch(`https://pokeapi.co/api/v2/pokemon?limit=${limit}&offset=${offset}`);
const data = await api.json();
const promises = await data.results.map(async pokemon => {
const result = await fetch(pokemon.url);
const res = await result.json();
return res;
});
const results = await Promise.all(promises);
this.setState(prev => ({
search: [],
pokemons: [...prev.pokemons, ...results],
notFound: false,
total: prev.total + results.length,
}));
}
nextPokemon(){
this.showPokemons(20,this.state.total);
}
componentDidMount(){
if(!this.state.searching){
this.showPokemons();
}
}
render(){
const poke = this.state.search.length > 0 ? this.state.search : this.state.pokemons;
return (
<>
<Container>
<Navbar title="PokeApi"></Navbar>
<Search onHandleSearch={this.handleSearch} />
{
this.state.notFound ? (
<div>'Pokemon not found'</div>
) : (
<Grid pokemons={poke} next={this.nextPokemon}/>
)
}
</Container>
<Footer></Footer>
</>
);
}
}