180 lines
6.1 KiB
TypeScript
180 lines
6.1 KiB
TypeScript
/**
|
|
* WeatherCard Component
|
|
*
|
|
* Displays weather forecast with daily conditions, temperatures, and travel advice.
|
|
* Uses ADK blue styling to match the Weather Agent branding.
|
|
*/
|
|
|
|
import React from "react";
|
|
|
|
// Type definition matching the backend Weather Agent structure
|
|
export interface WeatherData {
|
|
destination: string;
|
|
forecast: Array<{
|
|
day: number;
|
|
date: string;
|
|
condition: string;
|
|
highTemp: number;
|
|
lowTemp: number;
|
|
precipitation: number;
|
|
humidity: number;
|
|
windSpeed: number;
|
|
description: string;
|
|
}>;
|
|
travelAdvice: string;
|
|
bestDays: number[];
|
|
}
|
|
|
|
interface WeatherCardProps {
|
|
data: WeatherData;
|
|
}
|
|
|
|
/**
|
|
* Get weather icon based on condition
|
|
*/
|
|
const getWeatherIcon = (condition: string): string => {
|
|
const cond = condition.toLowerCase();
|
|
if (cond.includes("sun") || cond.includes("clear")) return "☀️";
|
|
if (cond.includes("cloud")) return "☁️";
|
|
if (cond.includes("rain")) return "🌧️";
|
|
if (cond.includes("storm")) return "⛈️";
|
|
if (cond.includes("snow")) return "❄️";
|
|
if (cond.includes("fog") || cond.includes("mist")) return "🌫️";
|
|
return "🌤️";
|
|
};
|
|
|
|
/**
|
|
* Get condition color styling using CopilotCloud Palette
|
|
*/
|
|
const getConditionStyle = (condition: string) => {
|
|
const cond = condition.toLowerCase();
|
|
if (cond.includes("sun") || cond.includes("clear"))
|
|
return "bg-[#FFF388]/20 border-[#FFF388] text-[#010507]";
|
|
if (cond.includes("cloud"))
|
|
return "bg-[#C9C9DA]/20 border-[#C9C9DA] text-[#010507]";
|
|
if (cond.includes("rain") || cond.includes("storm"))
|
|
return "bg-[#BEC2FF]/20 border-[#BEC2FF] text-[#010507]";
|
|
return "bg-[#85E0CE]/20 border-[#85E0CE] text-[#010507]";
|
|
};
|
|
|
|
export const WeatherCard: React.FC<WeatherCardProps> = ({ data }) => {
|
|
return (
|
|
<div className="bg-white/60 backdrop-blur-md rounded-xl p-4 my-3 border-2 border-[#DBDBE5] shadow-elevation-md animate-fade-in-up">
|
|
{/* Header */}
|
|
<div className="mb-3">
|
|
<div className="flex items-center gap-2 mb-1">
|
|
<span className="text-xl">🌤️</span>
|
|
<h2 className="text-xl font-semibold text-[#010507]">
|
|
{data.destination} Weather
|
|
</h2>
|
|
</div>
|
|
<p className="text-[#57575B] text-xs">
|
|
{data.forecast.length}-day forecast
|
|
</p>
|
|
</div>
|
|
|
|
{/* Forecast Days */}
|
|
<div className="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-2 mb-3">
|
|
{data.forecast.map((day, index) => {
|
|
const isBestDay = data.bestDays.includes(day.day);
|
|
return (
|
|
<div
|
|
key={index}
|
|
className={`bg-white/80 backdrop-blur-sm rounded-lg p-2 shadow-elevation-sm border ${
|
|
isBestDay
|
|
? "border-[#85E0CE] ring-2 ring-[#85E0CE]/30"
|
|
: "border-[#E9E9EF]"
|
|
} relative`}
|
|
>
|
|
{/* Best Day Badge */}
|
|
{isBestDay && (
|
|
<div className="absolute -top-2 -right-2 bg-[#1B936F] text-white text-[9px] px-1.5 py-0.5 rounded-full font-bold">
|
|
BEST
|
|
</div>
|
|
)}
|
|
|
|
{/* Day Header */}
|
|
<div className="flex items-center justify-between mb-1">
|
|
<div className="flex items-center gap-1">
|
|
<div className="flex items-center justify-center w-6 h-6 rounded-full bg-[#BEC2FF] text-white font-bold text-[10px]">
|
|
{day.day}
|
|
</div>
|
|
<span className="text-[10px] font-semibold text-[#57575B]">
|
|
{day.date}
|
|
</span>
|
|
</div>
|
|
<span className="text-xl">{getWeatherIcon(day.condition)}</span>
|
|
</div>
|
|
|
|
{/* Condition */}
|
|
<div
|
|
className={`text-[10px] font-medium px-1.5 py-0.5 rounded mb-1 text-center ${getConditionStyle(
|
|
day.condition,
|
|
)}`}
|
|
>
|
|
{day.condition}
|
|
</div>
|
|
|
|
{/* Temperature */}
|
|
<div className="flex items-center justify-center gap-2 mb-1">
|
|
<span className="text-lg font-bold text-[#010507]">
|
|
{day.highTemp}°
|
|
</span>
|
|
<span className="text-xs text-[#838389]">{day.lowTemp}°</span>
|
|
</div>
|
|
|
|
{/* Weather Stats */}
|
|
<div className="space-y-0.5">
|
|
<div className="flex items-center justify-between text-[9px] text-[#57575B]">
|
|
<span>💧 {day.precipitation}%</span>
|
|
<span>💨 {day.windSpeed}mph</span>
|
|
</div>
|
|
<div className="text-[9px] text-[#57575B] text-center">
|
|
Humidity {day.humidity}%
|
|
</div>
|
|
</div>
|
|
|
|
{/* Description */}
|
|
{day.description && (
|
|
<div className="mt-1 pt-1 border-t border-[#E9E9EF]">
|
|
<p className="text-[9px] text-[#57575B] line-clamp-2">
|
|
{day.description}
|
|
</p>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
})}
|
|
</div>
|
|
|
|
{/* Travel Advice */}
|
|
{data.travelAdvice && (
|
|
<div className="bg-white/80 backdrop-blur-sm rounded-lg p-3 border border-[#DBDBE5] shadow-elevation-sm">
|
|
<div className="flex items-center gap-2 mb-1">
|
|
<span className="text-sm">💼</span>
|
|
<h3 className="text-sm font-semibold text-[#010507]">
|
|
Travel Advice
|
|
</h3>
|
|
</div>
|
|
<p className="text-xs text-[#57575B] leading-relaxed">
|
|
{data.travelAdvice}
|
|
</p>
|
|
</div>
|
|
)}
|
|
|
|
{/* Best Days Highlight */}
|
|
{data.bestDays && data.bestDays.length > 0 && (
|
|
<div className="mt-2 bg-[#85E0CE]/20 border border-[#85E0CE] rounded-lg p-2">
|
|
<div className="flex items-center gap-1">
|
|
<span className="text-xs">✨</span>
|
|
<span className="text-xs font-semibold text-[#010507]">
|
|
Best days for outdoor activities: Day{" "}
|
|
{data.bestDays.join(", Day ")}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|