refactor: move weather icons to utils
This commit is contained in:
parent
82e31b6d8d
commit
d240272918
2 changed files with 59 additions and 58 deletions
|
|
@ -1,3 +1,4 @@
|
||||||
|
import { weatherIcons } from "@/utils/icons";
|
||||||
import { notify } from "@/utils/system";
|
import { notify } from "@/utils/system";
|
||||||
import { execAsync, GLib, GObject, interval, property, readFileAsync, register, writeFileAsync } from "astal";
|
import { execAsync, GLib, GObject, interval, property, readFileAsync, register, writeFileAsync } from "astal";
|
||||||
import { weather as config } from "config";
|
import { weather as config } from "config";
|
||||||
|
|
@ -196,62 +197,6 @@ const DEFAULT: WeatherData = {
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
const STATUS_ICONS: Record<string, string> = {
|
|
||||||
warning: "",
|
|
||||||
sunny: "",
|
|
||||||
clear: "",
|
|
||||||
partly_cloudy: "",
|
|
||||||
partly_cloudy_night: "",
|
|
||||||
cloudy: "",
|
|
||||||
overcast: "",
|
|
||||||
mist: "",
|
|
||||||
patchy_rain_nearby: "",
|
|
||||||
patchy_rain_possible: "",
|
|
||||||
patchy_snow_possible: "",
|
|
||||||
patchy_sleet_possible: "",
|
|
||||||
patchy_freezing_drizzle_possible: "",
|
|
||||||
thundery_outbreaks_possible: "",
|
|
||||||
blowing_snow: "",
|
|
||||||
blizzard: "",
|
|
||||||
fog: "",
|
|
||||||
freezing_fog: "",
|
|
||||||
patchy_light_drizzle: "",
|
|
||||||
light_drizzle: "",
|
|
||||||
freezing_drizzle: "",
|
|
||||||
heavy_freezing_drizzle: "",
|
|
||||||
patchy_light_rain: "",
|
|
||||||
light_rain: "",
|
|
||||||
moderate_rain_at_times: "",
|
|
||||||
moderate_rain: "",
|
|
||||||
heavy_rain_at_times: "",
|
|
||||||
heavy_rain: "",
|
|
||||||
light_freezing_rain: "",
|
|
||||||
moderate_or_heavy_freezing_rain: "",
|
|
||||||
light_sleet: "",
|
|
||||||
moderate_or_heavy_sleet: "",
|
|
||||||
patchy_light_snow: "",
|
|
||||||
light_snow: "",
|
|
||||||
patchy_moderate_snow: "",
|
|
||||||
moderate_snow: "",
|
|
||||||
patchy_heavy_snow: "",
|
|
||||||
heavy_snow: "",
|
|
||||||
ice_pellets: "",
|
|
||||||
light_rain_shower: "",
|
|
||||||
moderate_or_heavy_rain_shower: "",
|
|
||||||
torrential_rain_shower: "",
|
|
||||||
light_sleet_showers: "",
|
|
||||||
moderate_or_heavy_sleet_showers: "",
|
|
||||||
light_snow_showers: "",
|
|
||||||
moderate_or_heavy_snow_showers: "",
|
|
||||||
light_showers_of_ice_pellets: "",
|
|
||||||
moderate_or_heavy_showers_of_ice_pellets: "",
|
|
||||||
patchy_light_rain_with_thunder: "",
|
|
||||||
moderate_or_heavy_rain_with_thunder: "",
|
|
||||||
moderate_or_heavy_rain_in_area_with_thunder: "",
|
|
||||||
patchy_light_snow_with_thunder: "",
|
|
||||||
moderate_or_heavy_snow_with_thunder: "",
|
|
||||||
};
|
|
||||||
|
|
||||||
@register({ GTypeName: "Weather" })
|
@register({ GTypeName: "Weather" })
|
||||||
export default class Weather extends GObject.Object {
|
export default class Weather extends GObject.Object {
|
||||||
static instance: Weather;
|
static instance: Weather;
|
||||||
|
|
@ -325,8 +270,8 @@ export default class Weather extends GObject.Object {
|
||||||
|
|
||||||
getIcon(status: string) {
|
getIcon(status: string) {
|
||||||
let query = status.trim().toLowerCase().replaceAll(" ", "_");
|
let query = status.trim().toLowerCase().replaceAll(" ", "_");
|
||||||
if (!this.#data.current.is_day && query + "_night" in STATUS_ICONS) query += "_night";
|
if (!this.#data.current.is_day && query + "_night" in weatherIcons) query += "_night";
|
||||||
return STATUS_ICONS[query] ?? STATUS_ICONS.warning;
|
return weatherIcons[query] ?? weatherIcons.warning;
|
||||||
}
|
}
|
||||||
|
|
||||||
getTemp(data: _WeatherState) {
|
getTemp(data: _WeatherState) {
|
||||||
|
|
|
||||||
|
|
@ -47,6 +47,62 @@ export const osIcons: Record<string, string> = {
|
||||||
zorin: "",
|
zorin: "",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export const weatherIcons: Record<string, string> = {
|
||||||
|
warning: "",
|
||||||
|
sunny: "",
|
||||||
|
clear: "",
|
||||||
|
partly_cloudy: "",
|
||||||
|
partly_cloudy_night: "",
|
||||||
|
cloudy: "",
|
||||||
|
overcast: "",
|
||||||
|
mist: "",
|
||||||
|
patchy_rain_nearby: "",
|
||||||
|
patchy_rain_possible: "",
|
||||||
|
patchy_snow_possible: "",
|
||||||
|
patchy_sleet_possible: "",
|
||||||
|
patchy_freezing_drizzle_possible: "",
|
||||||
|
thundery_outbreaks_possible: "",
|
||||||
|
blowing_snow: "",
|
||||||
|
blizzard: "",
|
||||||
|
fog: "",
|
||||||
|
freezing_fog: "",
|
||||||
|
patchy_light_drizzle: "",
|
||||||
|
light_drizzle: "",
|
||||||
|
freezing_drizzle: "",
|
||||||
|
heavy_freezing_drizzle: "",
|
||||||
|
patchy_light_rain: "",
|
||||||
|
light_rain: "",
|
||||||
|
moderate_rain_at_times: "",
|
||||||
|
moderate_rain: "",
|
||||||
|
heavy_rain_at_times: "",
|
||||||
|
heavy_rain: "",
|
||||||
|
light_freezing_rain: "",
|
||||||
|
moderate_or_heavy_freezing_rain: "",
|
||||||
|
light_sleet: "",
|
||||||
|
moderate_or_heavy_sleet: "",
|
||||||
|
patchy_light_snow: "",
|
||||||
|
light_snow: "",
|
||||||
|
patchy_moderate_snow: "",
|
||||||
|
moderate_snow: "",
|
||||||
|
patchy_heavy_snow: "",
|
||||||
|
heavy_snow: "",
|
||||||
|
ice_pellets: "",
|
||||||
|
light_rain_shower: "",
|
||||||
|
moderate_or_heavy_rain_shower: "",
|
||||||
|
torrential_rain_shower: "",
|
||||||
|
light_sleet_showers: "",
|
||||||
|
moderate_or_heavy_sleet_showers: "",
|
||||||
|
light_snow_showers: "",
|
||||||
|
moderate_or_heavy_snow_showers: "",
|
||||||
|
light_showers_of_ice_pellets: "",
|
||||||
|
moderate_or_heavy_showers_of_ice_pellets: "",
|
||||||
|
patchy_light_rain_with_thunder: "",
|
||||||
|
moderate_or_heavy_rain_with_thunder: "",
|
||||||
|
moderate_or_heavy_rain_in_area_with_thunder: "",
|
||||||
|
patchy_light_snow_with_thunder: "",
|
||||||
|
moderate_or_heavy_snow_with_thunder: "",
|
||||||
|
};
|
||||||
|
|
||||||
export const desktopEntrySubs: Record<string, string> = {
|
export const desktopEntrySubs: Record<string, string> = {
|
||||||
Firefox: "firefox",
|
Firefox: "firefox",
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue