From a6548c9c9bb410f83b869f52f9c978eb9596e2fc Mon Sep 17 00:00:00 2001 From: Nydragon Date: Tue, 19 Nov 2024 19:16:22 +0100 Subject: [PATCH] chore: add more weather icons and day/night variation handling --- src/provider/Weather.qml | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/src/provider/Weather.qml b/src/provider/Weather.qml index 14e1abf..9f626e3 100644 --- a/src/provider/Weather.qml +++ b/src/provider/Weather.qml @@ -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"; }