mirror of
https://github.com/joBr99/nspanel-lovelace-ui.git
synced 2026-02-15 17:36:59 +01:00
69 lines
2.2 KiB
Python
69 lines
2.2 KiB
Python
from icon_mapping import get_icon_id
|
|
|
|
weather_mapping = {
|
|
'clear-night': 'weather-night',
|
|
'cloudy': 'weather-cloudy',
|
|
'exceptional': 'alert-circle-outline',
|
|
'fog': 'weather-fog',
|
|
'hail': 'weather-hail',
|
|
'lightning': 'weather-lightning',
|
|
'lightning-rainy': 'weather-lightning-rainy',
|
|
'partlycloudy': 'weather-partly-cloudy',
|
|
'pouring': 'weather-pouring',
|
|
'rainy': 'weather-rainy',
|
|
'snowy': 'weather-snowy',
|
|
'snowy-rainy': 'weather-snowy-rainy',
|
|
'sunny': 'weather-sunny',
|
|
'windy': 'weather-windy',
|
|
'windy-variant': 'weather-windy-variant'
|
|
}
|
|
|
|
sensor_mapping_on = {
|
|
"door": "door-open",
|
|
}
|
|
|
|
sensor_mapping_off = {
|
|
"door": "door-closed",
|
|
}
|
|
|
|
sensor_mapping = {
|
|
"temperature": "thermometer",
|
|
"power": "flash"
|
|
}
|
|
|
|
|
|
def map_to_mdi_name(ha_type, state=None, device_class=None):
|
|
if ha_type == "weather":
|
|
return weather_mapping[state] if state in weather_mapping else "alert-circle-outline"
|
|
if ha_type == "button":
|
|
return "gesture-tap-button"
|
|
if ha_type == "scene":
|
|
return "palette"
|
|
if ha_type == "script":
|
|
return "script-text"
|
|
if ha_type == "switch":
|
|
return "light-switch" if state == "on" else "light-switch-off"
|
|
if ha_type == "number":
|
|
return "ray-vertex"
|
|
if ha_type == "light":
|
|
return "lightbulb"
|
|
if ha_type == "input_boolean":
|
|
return "check-circle-outline" if state == "on" else "close-circle-outline"
|
|
if ha_type == "cover":
|
|
return "window-open" if state == "open" else "window-closed"
|
|
|
|
elif ha_type == "sensor":
|
|
if state == "on":
|
|
return sensor_mapping_on[device_class] if device_class in sensor_mapping_on else "alert-circle-outline"
|
|
elif state == "off":
|
|
return sensor_mapping_off[device_class] if device_class in sensor_mapping_off else "alert-circle-outline"
|
|
else:
|
|
return sensor_mapping[device_class] if device_class in sensor_mapping else "alert-circle-outline"
|
|
|
|
return "alert-circle-outline"
|
|
|
|
def get_icon_id_ha(ha_name, state=None, device_class=None, overwrite=None):
|
|
if overwrite is not None:
|
|
return get_icon_id(overwrite)
|
|
return get_icon_id(map_to_mdi_name(ha_name, state, device_class))
|