import useSWR from "swr"; import { useState } from "react"; import { WiCloudDown } from "react-icons/wi"; import { MdLocationDisabled, MdLocationSearching } from "react-icons/md"; import { useTranslation } from "next-i18next"; import Error from "../widget/error"; import Container from "../widget/container"; import ContainerButton from "../widget/container_button"; import WidgetIcon from "../widget/widget_icon"; import PrimaryText from "../widget/primary_text"; import SecondaryText from "../widget/secondary_text"; import mapIcon from "../../../utils/weather/openmeteo-condition-map"; function Widget({ options }) { const { t } = useTranslation(); const { data, error } = useSWR(`/api/widgets/openmeteo?${new URLSearchParams({ ...options }).toString()}`); if (error || data?.error) { return ; } if (!data) { return ( {t("weather.updating")} {t("weather.wait")} ); } const unit = options.units === "metric" ? "celsius" : "fahrenheit"; const condition = data.current_weather.weathercode; const timeOfDay = data.current_weather.time > data.daily.sunrise[0] && data.current_weather.time < data.daily.sunset[0] ? "day" : "night"; return ( {options.label && `${options.label}, `} {t("common.number", { value: data.current_weather.temperature, style: "unit", unit, })} {t(`wmo.${data.current_weather.weathercode}-${timeOfDay}`)} ); } export default function OpenMeteo({ options }) { const { t } = useTranslation(); const [location, setLocation] = useState(false); const [requesting, setRequesting] = useState(false); if (!location && options.latitude && options.longitude) { setLocation({ latitude: options.latitude, longitude: options.longitude }); } const requestLocation = () => { setRequesting(true); if (typeof window !== "undefined") { navigator.geolocation.getCurrentPosition( (position) => { setLocation({ latitude: position.coords.latitude, longitude: position.coords.longitude }); setRequesting(false); }, () => { setRequesting(false); }, { enableHighAccuracy: true, maximumAge: 1000 * 60 * 60 * 3, timeout: 1000 * 30, }, ); } }; // if (!requesting && !location) requestLocation(); if (!location) { return ( {t("weather.current")} {t("weather.allow")} ); } return ; }