local-weather/components/WeatherNow.tsx

40 lines
1.1 KiB
TypeScript
Raw Normal View History

"use client";
2024-05-04 21:04:30 +00:00
import { getForecast, getHourlyForecast } from "@/app/actions";
import Temperature from "./Temperature";
import { Forecast, HourlyForecast, WeatherContextType, coordType } from "@/types/types";
import { createContext, useContext, useEffect, useState } from "react";
import { defaultForecast, defaultHourlyForecast } from "@/app/defaultState";
import { LocationContext } from "@/app/page";
2024-05-04 21:04:30 +00:00
export const weatherContext = createContext<WeatherContextType>({
weather: defaultHourlyForecast,
setWeather: () => {} // Default function, does nothing
});
export default function WeatherNow() {
const { geoLocation } = useContext(LocationContext)
const [weather, setWeather] = useState<HourlyForecast>(defaultHourlyForecast);
const contextValue: WeatherContextType = {
weather,
setWeather
};
useEffect(() => {
let mounted = true;
getHourlyForecast(geoLocation).then((data) => {
if (mounted) {
setWeather(data);
}
});
return () => {
mounted = false;
};
}, [geoLocation]);
2024-05-04 21:04:30 +00:00
return (
<>
<h1>Here is the current weather in {geoLocation.name}</h1>
</>
2024-05-04 21:04:30 +00:00
);
}