chore: add more weather icons and day/night variation handling

This commit is contained in:
Nydragon 2024-11-19 19:16:22 +01:00
parent 00aa8eaea2
commit a6548c9c9b
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE

View file

@ -14,11 +14,33 @@ Singleton {
property int actualTemp: lastFetch?.current_condition[0]?.temp_C ?? 0
property string description: lastFetch?.current_condition[0]?.weatherDesc[0].value ?? ""
property string icon: getIcon(lastFetch?.current_condition[0]?.weatherCode)
property var astronomy: lastFetch?.weather[0].astronomy[0] ?? {}
function getIcon(weatherCode: string): string {
let day = true;
if (astronomy.sunset && astronomy.sunrise) {
const now = new Date();
let [sunsetH, sunsetM] = astronomy.sunset.match(/\d{2}/g).map(n => Number.parseInt(n));
if (astronomy.sunset.endsWith("PM")) {
sunsetH += 12;
}
let [sunriseH, sunriseM] = astronomy.sunrise.match(/\d{2}/g).map(n => Number.parseInt(n));
if (astronomy.sunrise.endsWith("PM")) {
sunriseH += 12;
}
const nowH = now.getHours();
const nowM = now.getMinutes();
const afterSunrise = (sunriseH < nowH || (sunriseH === nowH && sunriseM <= nowM));
const beforeSunset = (nowH < sunsetH || (nowH === sunsetH && nowM <= sunsetM));
day = afterSunrise && beforeSunset;
}
switch (weatherCode) {
case "113":
return day ? "weather-clear" : "weather-clear-night";
case "116":
return "weather-few-clouds";
return day ? "weather-few-clouds" : "weather-few-clouds-night";
default:
return "weather-none-available";
}