29 lines
2.0 KiB
TypeScript
29 lines
2.0 KiB
TypeScript
"use client";
|
|
|
|
import { CloudSun, Droplets, Gauge, Navigation, Thermometer, Umbrella, Wind } from "lucide-react";
|
|
import { calculateFeelsLike, formatHumidity, formatPressure, formatRainfall, formatTemperature, formatWind, getWindDirection } from "@/lib/weather-utils";
|
|
import type { SynopStation } from "@/types/imgw";
|
|
import { MetricCard } from "@/components/weather/metric-card";
|
|
import { useI18n } from "@/lib/i18n";
|
|
|
|
export function CurrentConditionsCard({ station }: { station: SynopStation }) {
|
|
const { language, t } = useI18n();
|
|
const feelsLike = calculateFeelsLike(station.temperature, station.humidity, station.windSpeed);
|
|
const metrics = [
|
|
{ icon: Thermometer, label: t("weather.feelsLike"), value: formatTemperature(feelsLike, language), detail: t("weather.feelsLikeDetail") },
|
|
{ icon: Droplets, label: t("weather.humidity"), value: formatHumidity(station.humidity, language), detail: t("weather.humidityDetail") },
|
|
{ icon: Gauge, label: t("weather.pressure"), value: formatPressure(station.pressure, language), detail: t("weather.pressureDetail") },
|
|
{ icon: Wind, label: t("weather.windSpeed"), value: formatWind(station.windSpeed, null, language), detail: t("weather.windSpeedDetail") },
|
|
{ icon: Navigation, label: t("weather.windDirection"), value: station.windDirection === null ? t("common.noData") : `${station.windDirection}° ${getWindDirection(station.windDirection)}`, detail: t("weather.windDirectionDetail") },
|
|
{ icon: Umbrella, label: t("weather.rainfallTotal"), value: formatRainfall(station.rainfall, language), detail: t("weather.rainfallDetail") },
|
|
{ icon: CloudSun, label: t("weather.airTemperature"), value: formatTemperature(station.temperature, language), detail: t("weather.temperatureDetail") },
|
|
];
|
|
return (
|
|
<div className="grid gap-3 sm:grid-cols-2 lg:grid-cols-4">
|
|
{metrics.map((metric, index) => <MetricCard {...metric} index={index} key={metric.label} />)}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export const WeatherDetailsGrid = CurrentConditionsCard;
|