mirror of
https://github.com/hazemKrimi/react-weather-app.git
synced 2026-05-01 18:30:25 +00:00
297 lines
11 KiB
TypeScript
297 lines
11 KiB
TypeScript
import React, { useState, useEffect } from 'react';
|
|
import styled from 'styled-components';
|
|
import { motion } from 'framer-motion';
|
|
import { useParams } from 'react-router-dom';
|
|
import Loader from '../components/Loader';
|
|
import Card from '../components/Card';
|
|
import LeftArrow from '../assets/left-arrow.svg';
|
|
import RightArrow from '../assets/right-arrow.svg';
|
|
|
|
const Wrapper = styled.div`
|
|
min-height: 85vh;
|
|
padding: 2rem 0rem;
|
|
display: grid;
|
|
row-gap: 3rem;
|
|
|
|
h2 {
|
|
text-align: center;
|
|
}
|
|
|
|
.main, .wind, .humidity {
|
|
display: grid;
|
|
justify-content: center;
|
|
}
|
|
|
|
.slider {
|
|
display: grid;
|
|
grid-template-columns: auto 1fr auto;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
.slider-background {
|
|
width: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
img {
|
|
cursor: pointer;
|
|
width: 4rem;
|
|
height: 4rem;
|
|
}
|
|
}
|
|
|
|
.forecast-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, 10rem);
|
|
grid-auto-flow: column;
|
|
column-gap: 2rem;
|
|
justify-content: center;
|
|
}
|
|
|
|
.error {
|
|
display: grid;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
h2 {
|
|
text-align: center;
|
|
word-break: break-word;
|
|
}
|
|
}
|
|
`;
|
|
|
|
interface WeatherResponse {
|
|
weather: Array<{ id: number, description: string }>,
|
|
main: { temp: number, humidity: number },
|
|
wind: { speed: number },
|
|
name: string,
|
|
sys: {
|
|
country: string
|
|
},
|
|
dt: number,
|
|
coord: {
|
|
lat: number,
|
|
lon: number
|
|
}
|
|
};
|
|
|
|
interface ForecastResponse {
|
|
hourly: Array<{
|
|
dt: number,
|
|
temp: number,
|
|
weather: Array<{ id: number, description: string }>
|
|
}>,
|
|
daily: Array<{
|
|
dt: number,
|
|
temp: { min: number, max: number },
|
|
weather: Array<{ id: number, description: string }>
|
|
}>
|
|
};
|
|
|
|
interface Weather {
|
|
description: string,
|
|
icon: number,
|
|
main: {
|
|
temp: number,
|
|
humidity: number
|
|
},
|
|
wind: {
|
|
speed: number
|
|
},
|
|
country: string,
|
|
timestamp: number,
|
|
name: string
|
|
};
|
|
|
|
interface Forecast {
|
|
hourly: Array<{
|
|
dt: number,
|
|
temp: number,
|
|
weather: Array<{ id: number, description: string }>
|
|
}>,
|
|
daily: Array<{
|
|
dt: number,
|
|
temp: { min: number, max: number },
|
|
weather: Array<{ id: number, description: string }>
|
|
}>
|
|
};
|
|
|
|
const Search: React.FC = () => {
|
|
const [ weather, setWeather ] = useState<Weather | null>(null);
|
|
const [ forecast, setForecast ] = useState<Forecast | null>(null);
|
|
const [ loading, setLoading ] = useState<boolean>(true);
|
|
const [ error, setError ] = useState<string>('');
|
|
const { query } = useParams<{ query: string }>();
|
|
const [ dailyForecastGrid, setDailyForecastGrid ] = useState<number>(0);
|
|
const [ hourlyForecastGrid, setHourlyForecastGrid ] = useState<number>(0);
|
|
|
|
useEffect(() => {
|
|
(async () => {
|
|
try {
|
|
let weatherRes: Response = await fetch(
|
|
`https://api.openweathermap.org/data/2.5/weather?q=${query}&appid=${process.env.REACT_APP_WEATHER_API_KEY}&units=metric`
|
|
);
|
|
let weatherResBody: WeatherResponse = await weatherRes.json();
|
|
setWeather({
|
|
description: weatherResBody.weather[0].description,
|
|
icon: weatherResBody.weather[0].id,
|
|
main: weatherResBody.main,
|
|
wind: weatherResBody.wind,
|
|
name: weatherResBody.name,
|
|
country: weatherResBody.sys.country,
|
|
timestamp: weatherResBody.dt,
|
|
});
|
|
let coords = weatherResBody.coord;
|
|
let forecastRes: Response = await fetch(
|
|
`https://api.openweathermap.org/data/2.5/onecall?lat=${coords.lat}&lon=${coords.lon}&appid=${process.env.REACT_APP_WEATHER_API_KEY}&exclude=minutely&units=metric`
|
|
);
|
|
let forecastResBody: ForecastResponse = await forecastRes.json();
|
|
setForecast({
|
|
hourly: forecastResBody.hourly,
|
|
daily: forecastResBody.daily
|
|
});
|
|
setLoading(false);
|
|
} catch (err) {
|
|
setLoading(false);
|
|
setError('Could not find any weather data! Try again later');
|
|
}
|
|
})();
|
|
|
|
return () => {
|
|
setError('');
|
|
setLoading(true);
|
|
}
|
|
}, [query]);
|
|
|
|
return !loading ? (
|
|
<Wrapper>
|
|
{
|
|
weather && forecast && !error ? (
|
|
<>
|
|
<div className='main'>
|
|
<h2>{weather.name}, {weather.country}</h2>
|
|
<Card
|
|
date={new Date(weather.timestamp * 1000)}
|
|
time={false}
|
|
data={weather.main.temp + '°C'}
|
|
temp={weather.main.temp > 25 ? 'hot' : weather.main.temp < 20 ? 'cold' : null}
|
|
icon={weather.icon}
|
|
description={weather.description}
|
|
/>
|
|
</div>
|
|
<div className='daily-forecast'>
|
|
<h2>Daily Forecast</h2>
|
|
<div className='slider'>
|
|
<motion.img
|
|
src={LeftArrow}
|
|
alt='Left slider arrow'
|
|
onTap={() => {
|
|
if (dailyForecastGrid <= forecast.daily.length / 2 - 1) setDailyForecastGrid(dailyForecastGrid + 1);
|
|
}}
|
|
/>
|
|
<div className='slider-background'>
|
|
<motion.div
|
|
initial={false}
|
|
animate={{ transform: `translateX(${dailyForecastGrid * 10}rem)` }}
|
|
transition={{ duration: 0.25 }}
|
|
className='forecast-grid'
|
|
>
|
|
{
|
|
forecast.daily.map(day => (
|
|
<Card
|
|
key={day.dt}
|
|
date={new Date(day.dt * 1000)}
|
|
time={false}
|
|
data={day.temp.min + '°C/' + day.temp.max + '°C'}
|
|
temp={day.temp.max > 25 ? 'hot' : day.temp.max < 20 ? 'cold' : null}
|
|
icon={day.weather[0].id}
|
|
description={day.weather[0].description}
|
|
/>
|
|
))
|
|
}
|
|
</motion.div>
|
|
</div>
|
|
<motion.img
|
|
src={RightArrow}
|
|
alt='Right slider arrow'
|
|
onTap={() => {
|
|
if (dailyForecastGrid >= - forecast.daily.length / 2 + 1) setDailyForecastGrid(dailyForecastGrid - 1);
|
|
}}
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div className='hourly-forecast'>
|
|
<h2>Hourly Forecast</h2>
|
|
<div className='slider'>
|
|
<motion.img
|
|
src={LeftArrow}
|
|
alt='Left slider arrow'
|
|
onTap={() => {
|
|
if (hourlyForecastGrid <= forecast.hourly.length / 2 - 1) setHourlyForecastGrid(hourlyForecastGrid + 1);
|
|
}}
|
|
/>
|
|
<div className='slider-background'>
|
|
<motion.div
|
|
initial={false}
|
|
animate={{ transform: `translateX(${hourlyForecastGrid * 10}rem)` }}
|
|
transition={{ duration: 0.25 }}
|
|
className='forecast-grid'
|
|
>
|
|
{
|
|
forecast.hourly.map(hour => (
|
|
<Card
|
|
key={hour.dt}
|
|
date={new Date(hour.dt * 1000)}
|
|
time={true}
|
|
data={hour.temp + '°C'}
|
|
temp={hour.temp > 25 ? 'hot' : hour.temp < 20 ? 'cold' : null}
|
|
icon={hour.weather[0].id}
|
|
description={hour.weather[0].description}
|
|
/>
|
|
))
|
|
}
|
|
</motion.div>
|
|
</div>
|
|
<motion.img
|
|
src={RightArrow}
|
|
alt='Right slider arrow'
|
|
onTap={() => {
|
|
if (hourlyForecastGrid >= - forecast.hourly.length / 2 + 1) setHourlyForecastGrid(hourlyForecastGrid - 1);
|
|
}}
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div className='wind'>
|
|
<h2>Wind</h2>
|
|
<Card
|
|
date={new Date(weather.timestamp * 1000)}
|
|
time={false}
|
|
data={weather.wind.speed + 'km/h'}
|
|
icon={781}
|
|
/>
|
|
</div>
|
|
<div className='humidity'>
|
|
<h2>Humidity</h2>
|
|
<Card
|
|
date={new Date(weather.timestamp * 1000)}
|
|
time={false}
|
|
data={weather.main.humidity + '%'}
|
|
icon={741}
|
|
/>
|
|
</div>
|
|
</>
|
|
) : (
|
|
<div className='error'>
|
|
<h2>{error}</h2>
|
|
</div>
|
|
)
|
|
}
|
|
</Wrapper>
|
|
) : (
|
|
<Wrapper>
|
|
<Loader />
|
|
</Wrapper>
|
|
);
|
|
}
|
|
|
|
export default Search; |