More cleanup in Plugwise binary sensor (#66255)

This commit is contained in:
Franck Nijhof 2022-02-10 11:17:35 +01:00 committed by GitHub
parent f5fff95e8b
commit 4cad29d7d4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,18 +1,20 @@
"""Plugwise Binary Sensor component for Home Assistant."""
from __future__ import annotations
from collections.abc import Mapping
from dataclasses import dataclass
from typing import Any
from homeassistant.components.binary_sensor import (
BinarySensorEntity,
BinarySensorEntityDescription,
)
from homeassistant.config_entries import ConfigEntry
from homeassistant.core import HomeAssistant, callback
from homeassistant.core import HomeAssistant
from homeassistant.helpers.entity import EntityCategory
from homeassistant.helpers.entity_platform import AddEntitiesCallback
from .const import DOMAIN, LOGGER
from .const import DOMAIN
from .coordinator import PlugwiseDataUpdateCoordinator
from .entity import PlugwiseEntity
@ -95,35 +97,33 @@ class PlugwiseBinarySensorEntity(PlugwiseEntity, BinarySensorEntity):
super().__init__(coordinator, device_id)
self.entity_description = description
self._attr_unique_id = f"{device_id}-{description.key}"
self._attr_name = (
f"{coordinator.data.devices[device_id].get('name', '')} {description.name}"
).lstrip()
self._attr_name = (f"{self.device.get('name', '')} {description.name}").lstrip()
@callback
def _handle_coordinator_update(self) -> None:
"""Handle updated data from the coordinator."""
if not (data := self.coordinator.data.devices.get(self._dev_id)):
LOGGER.error("Received no data for device %s", self._dev_id)
super()._handle_coordinator_update()
return
@property
def is_on(self) -> bool | None:
"""Return true if the binary sensor is on."""
return self.device["binary_sensors"].get(self.entity_description.key)
state = data["binary_sensors"].get(self.entity_description.key)
self._attr_is_on = state
if icon_off := self.entity_description.icon_off:
self._attr_icon = self.entity_description.icon if state else icon_off
@property
def icon(self) -> str | None:
"""Return the icon to use in the frontend, if any."""
if (icon_off := self.entity_description.icon_off) and self.is_on is False:
return icon_off
return self.entity_description.icon
# Add entity attribute for Plugwise notifications
if self.entity_description.key == "plugwise_notification":
self._attr_extra_state_attributes = {
f"{severity}_msg": [] for severity in SEVERITIES
}
@property
def extra_state_attributes(self) -> Mapping[str, Any] | None:
"""Return entity specific state attributes."""
if self.entity_description.key != "plugwise_notification":
return None
if notify := self.coordinator.data.gateway["notifications"]:
for details in notify.values():
for msg_type, msg in details.items():
msg_type = msg_type.lower()
if msg_type not in SEVERITIES:
msg_type = "other"
self._attr_extra_state_attributes[f"{msg_type}_msg"].append(msg)
attrs: dict[str, list[str]] = {f"{severity}_msg": [] for severity in SEVERITIES}
if notify := self.coordinator.data.gateway["notifications"]:
for details in notify.values():
for msg_type, msg in details.items():
msg_type = msg_type.lower()
if msg_type not in SEVERITIES:
msg_type = "other"
attrs[f"{msg_type}_msg"].append(msg)
super()._handle_coordinator_update()
return attrs