mirror of
https://github.com/home-assistant/core.git
synced 2026-08-28 10:16:02 -05:00
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
117 lines
3.7 KiB
Python
117 lines
3.7 KiB
Python
"""Select platform for the Yoto integration."""
|
|
|
|
from collections.abc import Callable
|
|
from dataclasses import dataclass
|
|
from typing import override
|
|
|
|
from yoto_api import (
|
|
AMBIENT_PRESET_KEYS,
|
|
Capabilities,
|
|
PlayerConfig,
|
|
YotoPlayer,
|
|
caps_for,
|
|
)
|
|
|
|
from homeassistant.components.select import SelectEntity, SelectEntityDescription
|
|
from homeassistant.const import EntityCategory
|
|
from homeassistant.core import HomeAssistant, callback
|
|
from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback
|
|
|
|
from .coordinator import YotoConfigEntry, YotoDataUpdateCoordinator
|
|
from .entity import YotoConfigEntity
|
|
|
|
PARALLEL_UPDATES = 1
|
|
|
|
|
|
@dataclass(frozen=True, kw_only=True)
|
|
class YotoSelectEntityDescription(SelectEntityDescription):
|
|
"""Describes a Yoto select entity.
|
|
|
|
``config_field`` is the ``set_player_config`` kwarg written on change.
|
|
``supported_fn`` gates setup on the device's capabilities.
|
|
"""
|
|
|
|
value_fn: Callable[[PlayerConfig], str | None]
|
|
config_field: str
|
|
options: list[str]
|
|
supported_fn: Callable[[Capabilities], bool]
|
|
|
|
|
|
SELECTS: tuple[YotoSelectEntityDescription, ...] = (
|
|
YotoSelectEntityDescription(
|
|
key="day_mode_color",
|
|
translation_key="day_mode_color",
|
|
entity_category=EntityCategory.CONFIG,
|
|
value_fn=lambda config: config.day_ambient_preset,
|
|
config_field="day_ambient_preset",
|
|
options=list(AMBIENT_PRESET_KEYS),
|
|
supported_fn=lambda caps: caps.has_ambient_light,
|
|
),
|
|
YotoSelectEntityDescription(
|
|
key="night_mode_color",
|
|
translation_key="night_mode_color",
|
|
entity_category=EntityCategory.CONFIG,
|
|
value_fn=lambda config: config.night_ambient_preset,
|
|
config_field="night_ambient_preset",
|
|
options=list(AMBIENT_PRESET_KEYS),
|
|
supported_fn=lambda caps: caps.has_ambient_light,
|
|
),
|
|
)
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
entry: YotoConfigEntry,
|
|
async_add_entities: AddConfigEntryEntitiesCallback,
|
|
) -> None:
|
|
"""Set up the Yoto select platform."""
|
|
coordinator = entry.runtime_data
|
|
known_players: set[str] = set()
|
|
|
|
@callback
|
|
def _add_players() -> None:
|
|
current = set(coordinator.data)
|
|
new_players = current - known_players
|
|
known_players.clear()
|
|
known_players.update(current)
|
|
if new_players:
|
|
async_add_entities(
|
|
YotoSelect(coordinator, coordinator.data[player_id], description)
|
|
for player_id in new_players
|
|
for description in SELECTS
|
|
if description.supported_fn(
|
|
caps_for(coordinator.data[player_id].device)
|
|
)
|
|
)
|
|
|
|
entry.async_on_unload(coordinator.async_add_listener(_add_players))
|
|
_add_players()
|
|
|
|
|
|
class YotoSelect(YotoConfigEntity, SelectEntity):
|
|
"""Representation of a Yoto player config select."""
|
|
|
|
entity_description: YotoSelectEntityDescription
|
|
|
|
def __init__(
|
|
self,
|
|
coordinator: YotoDataUpdateCoordinator,
|
|
player: YotoPlayer,
|
|
description: YotoSelectEntityDescription,
|
|
) -> None:
|
|
"""Initialize the select."""
|
|
super().__init__(coordinator, player)
|
|
self.entity_description = description
|
|
self._attr_unique_id = f"{player.id}_{description.key}"
|
|
|
|
@property
|
|
@override
|
|
def current_option(self) -> str | None:
|
|
"""Return the selected colour preset, or None for a custom value."""
|
|
return self.entity_description.value_fn(self.player.info.config)
|
|
|
|
@override
|
|
async def async_select_option(self, option: str) -> None:
|
|
"""Update the configured colour preset."""
|
|
await self._async_set_config(**{self.entity_description.config_field: option})
|