mirror of
https://github.com/home-assistant/core.git
synced 2026-05-08 17:49:37 +01:00
120 lines
3.8 KiB
Python
120 lines
3.8 KiB
Python
"""Select platform for the jvc_projector integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from dataclasses import dataclass
|
|
from typing import Final
|
|
|
|
from jvcprojector import Command, command as cmd
|
|
|
|
from homeassistant.components.select import SelectEntity, SelectEntityDescription
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback
|
|
|
|
from .coordinator import JVCConfigEntry, JvcProjectorDataUpdateCoordinator
|
|
from .entity import JvcProjectorEntity
|
|
|
|
|
|
@dataclass(frozen=True, kw_only=True)
|
|
class JvcProjectorSelectDescription(SelectEntityDescription):
|
|
"""Describes JVC Projector select entities."""
|
|
|
|
command: type[Command]
|
|
snake_case_states: bool = False
|
|
|
|
|
|
SELECTS: Final[tuple[JvcProjectorSelectDescription, ...]] = (
|
|
JvcProjectorSelectDescription(key="input", command=cmd.Input),
|
|
JvcProjectorSelectDescription(
|
|
key="installation_mode",
|
|
command=cmd.InstallationMode,
|
|
entity_registry_enabled_default=False,
|
|
),
|
|
JvcProjectorSelectDescription(
|
|
key="light_power",
|
|
command=cmd.LightPower,
|
|
entity_registry_enabled_default=False,
|
|
),
|
|
JvcProjectorSelectDescription(
|
|
key="dynamic_control",
|
|
command=cmd.DynamicControl,
|
|
entity_registry_enabled_default=False,
|
|
),
|
|
JvcProjectorSelectDescription(
|
|
key="clear_motion_drive",
|
|
command=cmd.ClearMotionDrive,
|
|
entity_registry_enabled_default=False,
|
|
),
|
|
JvcProjectorSelectDescription(
|
|
key="anamorphic",
|
|
command=cmd.Anamorphic,
|
|
entity_registry_enabled_default=False,
|
|
),
|
|
JvcProjectorSelectDescription(
|
|
key="hdr_processing",
|
|
command=cmd.HdrProcessing,
|
|
entity_registry_enabled_default=False,
|
|
snake_case_states=True,
|
|
),
|
|
JvcProjectorSelectDescription(
|
|
key="picture_mode",
|
|
command=cmd.PictureMode,
|
|
entity_registry_enabled_default=False,
|
|
snake_case_states=True,
|
|
),
|
|
)
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
entry: JVCConfigEntry,
|
|
async_add_entities: AddConfigEntryEntitiesCallback,
|
|
) -> None:
|
|
"""Set up the JVC Projector platform from a config entry."""
|
|
coordinator = entry.runtime_data
|
|
|
|
async_add_entities(
|
|
JvcProjectorSelectEntity(coordinator, description)
|
|
for description in SELECTS
|
|
if coordinator.supports(description.command)
|
|
)
|
|
|
|
|
|
class JvcProjectorSelectEntity(JvcProjectorEntity, SelectEntity):
|
|
"""Representation of a JVC Projector select entity."""
|
|
|
|
def __init__(
|
|
self,
|
|
coordinator: JvcProjectorDataUpdateCoordinator,
|
|
description: JvcProjectorSelectDescription,
|
|
) -> None:
|
|
"""Initialize the entity."""
|
|
super().__init__(coordinator, description.command)
|
|
self.command: type[Command] = description.command
|
|
|
|
self.entity_description = description
|
|
self._attr_translation_key = description.key
|
|
self._attr_unique_id = f"{self._attr_unique_id}_{description.key}"
|
|
|
|
self._options_map: dict[str, str] = coordinator.get_options_map(
|
|
self.command.name,
|
|
snake_case=description.snake_case_states,
|
|
)
|
|
|
|
@property
|
|
def options(self) -> list[str]:
|
|
"""Return a list of selectable options."""
|
|
return list(self._options_map.values())
|
|
|
|
@property
|
|
def current_option(self) -> str | None:
|
|
"""Return the selected entity option to represent the entity state."""
|
|
if value := self.coordinator.data.get(self.command.name):
|
|
return self._options_map.get(value)
|
|
return None
|
|
|
|
async def async_select_option(self, option: str) -> None:
|
|
"""Change the selected option."""
|
|
value = next((k for k, v in self._options_map.items() if v == option), None)
|
|
await self.coordinator.device.set(self.command, value)
|