131 lines
3.5 KiB
JavaScript
131 lines
3.5 KiB
JavaScript
import { useState, useEffect } from "react";
|
|
import styles from "../styles/Home.module.css";
|
|
import Image from "next/image";
|
|
|
|
export default function Home() {
|
|
const [input, setInput] = useState();
|
|
const [defaultValue, setDefaultValue] = useState("Search a city...");
|
|
const [isCurrentActive, setIsCurrentActive] = useState(true);
|
|
const [weatherData, setWeatherData] = useState();
|
|
|
|
const clickHandler = async () => {
|
|
const res = await fetch("/api/data", {
|
|
method: "POST",
|
|
headers: { "Content-Type": "application/json" },
|
|
body: JSON.stringify({ input }),
|
|
});
|
|
const data = await res.json();
|
|
console.log(data);
|
|
setWeatherData({ ...data });
|
|
|
|
setInput("");
|
|
// setDefaultValue("sss");
|
|
};
|
|
|
|
const something = (event) => {
|
|
if (event.keyCode === 13) {
|
|
clickHandler();
|
|
}
|
|
};
|
|
|
|
function degToCompass(num) {
|
|
var val = Math.floor(num / 22.5 + 0.5);
|
|
var arr = [
|
|
"N",
|
|
"NNE",
|
|
"NE",
|
|
"ENE",
|
|
"E",
|
|
"ESE",
|
|
"SE",
|
|
"SSE",
|
|
"S",
|
|
"SSW",
|
|
"SW",
|
|
"WSW",
|
|
"W",
|
|
"WNW",
|
|
"NW",
|
|
"NNW",
|
|
];
|
|
return arr[val % 16];
|
|
}
|
|
|
|
return (
|
|
<div className={styles.wrapper}>
|
|
{weatherData && (
|
|
<div className={styles.weatherWrapper}>
|
|
<h1 className={styles.locationTitle}>
|
|
{weatherData.name}, {weatherData.sys.country}
|
|
</h1>
|
|
<p className={styles.weatherDescription}>
|
|
{weatherData.weather[0].description}
|
|
</p>
|
|
<Image
|
|
alt="weatherIcon"
|
|
src={`/icons/${weatherData.weather[0].icon}.svg`}
|
|
height="300px"
|
|
width="300px"
|
|
/>
|
|
|
|
<h1 className={styles.mainTemp}>
|
|
{Math.round(weatherData.main.temp)}°
|
|
</h1>
|
|
<p>Feels like {Math.round(weatherData.main.feels_like)}°</p>
|
|
|
|
<p>
|
|
Time:{" "}
|
|
{new Date(
|
|
weatherData.dt * 1000 + weatherData.timezone * 1000
|
|
).toLocaleString("en-US")}
|
|
</p>
|
|
</div>
|
|
)}
|
|
<div className={styles.statsWrapper}>
|
|
<input
|
|
type="text"
|
|
className={styles.searchInput}
|
|
defaultValue={defaultValue}
|
|
placeholder="🔍 Search a city ..."
|
|
value={input}
|
|
onFocus={(e) => (e.target.value = "")}
|
|
onChange={(e) => setInput(e.target.value)}
|
|
onKeyDown={(e) => something(e)}
|
|
/>
|
|
{weatherData && (
|
|
<div className={styles.statsBox}>
|
|
<div>Stats card1</div>
|
|
<div>Stats card2</div>
|
|
<div>Visibility: {weatherData.visibility / 1000} km</div>
|
|
<div>
|
|
<p>Humidity: {weatherData.main.humidity}</p>
|
|
</div>
|
|
<div>
|
|
<p>
|
|
Wind:{" "}
|
|
{` ${weatherData.wind.speed} ${degToCompass(
|
|
weatherData.wind.deg
|
|
)}`}
|
|
</p>
|
|
</div>
|
|
<div style={{ padding: "20px", border: "1px solid grey" }}>
|
|
<p>
|
|
Sunrise:{" "}
|
|
{new Date(
|
|
weatherData.sys.sunrise * 1000 + weatherData.timezone * 1000
|
|
).toLocaleString("en-US")}
|
|
</p>
|
|
<p>
|
|
Sunset:{" "}
|
|
{new Date(weatherData.sys.sunset * 1000).toLocaleString(
|
|
"en-US"
|
|
)}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|