Implemented setTypeOptions and setSelectedType at correct place
parent
e2bbe1d959
commit
fd21848a85
|
@ -70,14 +70,19 @@ const Filters = () => {
|
||||||
dispatch(setRegionOptions(fetchedRegionOptions));
|
dispatch(setRegionOptions(fetchedRegionOptions));
|
||||||
dispatch(setSortOptions(fetchedSortOptions));
|
dispatch(setSortOptions(fetchedSortOptions));
|
||||||
|
|
||||||
if (!isFetchingTypeOptions && fetchedTypeOptions) {
|
|
||||||
dispatch(setTypeOptions(fetchedTypeOptions.results));
|
|
||||||
}
|
|
||||||
|
|
||||||
dispatch(setSelectedRegion(fetchedRegionOptions[0].region));
|
dispatch(setSelectedRegion(fetchedRegionOptions[0].region));
|
||||||
dispatch(fetchPokemonsInTheRegion(fetchedRegionOptions[0].region));
|
dispatch(fetchPokemonsInTheRegion(fetchedRegionOptions[0].region));
|
||||||
|
|
||||||
|
dispatch(setSelectedSort(fetchedSortOptions[0].value));
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (!isFetchingTypeOptions && fetchedTypeOptions) {
|
||||||
|
dispatch(setTypeOptions(fetchedTypeOptions.results));
|
||||||
|
dispatch(setSelectedType(fetchedTypeOptions.results[0].name));
|
||||||
|
}
|
||||||
|
}, [isFetchingTypeOptions]);
|
||||||
|
|
||||||
const optionElements =
|
const optionElements =
|
||||||
createRegionPokemonListOptionElements(regionPokemonList);
|
createRegionPokemonListOptionElements(regionPokemonList);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue