mirror of
https://github.com/10h30/fullstackopen.git
synced 2026-06-05 15:08:33 +09:00
54 lines
1.6 KiB
JavaScript
54 lines
1.6 KiB
JavaScript
import React from 'react';
|
|
import Weather from './Weather';
|
|
|
|
const Country = ({data,onClick,weather}) => {
|
|
const list = data.length
|
|
const clickHandler = (index) => {
|
|
onClick(index)
|
|
}
|
|
return (
|
|
<div>
|
|
{list > 10 ? 'Too many matches, specific another filter' :
|
|
list > 1 ? data.map((item, index) => <CountryLongList key={item.alpha2Code} data={item} onClick={() => clickHandler(index)} weather={weather}/>) :
|
|
data.map(item => <CountryDetail key={item.alpha2Code} data={item} weather={weather}/>)
|
|
}
|
|
|
|
</div>
|
|
|
|
)
|
|
}
|
|
const CountryLongList = ({data, onClick,weather}) => {
|
|
const show = data.Show
|
|
console.log(show)
|
|
return (
|
|
<div>
|
|
<span>{data.name}</span>
|
|
<button onClick={onClick}>
|
|
{show === false ? "Show" : "Hide"}
|
|
</button>
|
|
<div>{show === true && <CountryDetail key={data.alpha2Code} data={data}/>}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
const CountryDetail = ({data,weather}) => {
|
|
return (
|
|
<div>
|
|
<h2>{data.name}</h2>
|
|
<p>
|
|
Capital: {data.capital}
|
|
</p>
|
|
<p>
|
|
Population: {data.population}
|
|
</p>
|
|
<h3>Languagues</h3>
|
|
<ul>
|
|
{data.languages.map(item =><li key={item.name}>{item.name}</li>)}
|
|
</ul>
|
|
<img src={data.flag} alt={data.name} width="200" />
|
|
{weather.length === 0 ? "" : <Weather weather={weather} capital={data.capital} />}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default Country |