Refactor goalzero (#72398)

This commit is contained in:
Robert Hillis 2022-06-04 21:50:38 -04:00 committed by GitHub
parent bc22e79c7b
commit e98a641376
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 116 additions and 175 deletions

View file

@ -3,17 +3,13 @@ from __future__ import annotations
from typing import Any, cast
from goalzero import Yeti
from homeassistant.components.switch import SwitchEntity, SwitchEntityDescription
from homeassistant.config_entries import ConfigEntry
from homeassistant.const import CONF_NAME
from homeassistant.core import HomeAssistant
from homeassistant.helpers.entity_platform import AddEntitiesCallback
from homeassistant.helpers.update_coordinator import DataUpdateCoordinator
from . import YetiEntity
from .const import DATA_KEY_API, DATA_KEY_COORDINATOR, DOMAIN
from .const import DOMAIN
from .entity import GoalZeroEntity
SWITCH_TYPES: tuple[SwitchEntityDescription, ...] = (
SwitchEntityDescription(
@ -35,50 +31,31 @@ async def async_setup_entry(
hass: HomeAssistant, entry: ConfigEntry, async_add_entities: AddEntitiesCallback
) -> None:
"""Set up the Goal Zero Yeti switch."""
name = entry.data[CONF_NAME]
goalzero_data = hass.data[DOMAIN][entry.entry_id]
async_add_entities(
YetiSwitch(
goalzero_data[DATA_KEY_API],
goalzero_data[DATA_KEY_COORDINATOR],
name,
GoalZeroSwitch(
hass.data[DOMAIN][entry.entry_id],
description,
entry.entry_id,
)
for description in SWITCH_TYPES
)
class YetiSwitch(YetiEntity, SwitchEntity):
class GoalZeroSwitch(GoalZeroEntity, SwitchEntity):
"""Representation of a Goal Zero Yeti switch."""
def __init__(
self,
api: Yeti,
coordinator: DataUpdateCoordinator,
name: str,
description: SwitchEntityDescription,
server_unique_id: str,
) -> None:
"""Initialize a Goal Zero Yeti switch."""
super().__init__(api, coordinator, name, server_unique_id)
self.entity_description = description
self._attr_name = f"{name} {description.name}"
self._attr_unique_id = f"{server_unique_id}/{description.key}"
@property
def is_on(self) -> bool:
"""Return state of the switch."""
return cast(bool, self.api.data[self.entity_description.key] == 1)
return cast(bool, self._api.data[self.entity_description.key] == 1)
async def async_turn_off(self, **kwargs: Any) -> None:
"""Turn off the switch."""
payload = {self.entity_description.key: 0}
await self.api.post_state(payload=payload)
await self._api.post_state(payload=payload)
self.coordinator.async_set_updated_data(data=payload)
async def async_turn_on(self, **kwargs: Any) -> None:
"""Turn on the switch."""
payload = {self.entity_description.key: 1}
await self.api.post_state(payload=payload)
await self._api.post_state(payload=payload)
self.coordinator.async_set_updated_data(data=payload)