mirror of https://github.com/home-assistant/core
101 lines
2.8 KiB
Python
101 lines
2.8 KiB
Python
"""Config flow for Generic hygrostat."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from collections.abc import Mapping
|
|
from typing import Any, cast
|
|
|
|
import voluptuous as vol
|
|
|
|
from homeassistant.components import fan, switch
|
|
from homeassistant.components.humidifier import HumidifierDeviceClass
|
|
from homeassistant.components.sensor import DOMAIN as SENSOR_DOMAIN, SensorDeviceClass
|
|
from homeassistant.const import CONF_NAME, PERCENTAGE
|
|
from homeassistant.helpers import selector
|
|
from homeassistant.helpers.schema_config_entry_flow import (
|
|
SchemaConfigFlowHandler,
|
|
SchemaFlowFormStep,
|
|
)
|
|
|
|
from . import (
|
|
CONF_DEVICE_CLASS,
|
|
CONF_DRY_TOLERANCE,
|
|
CONF_HUMIDIFIER,
|
|
CONF_MIN_DUR,
|
|
CONF_SENSOR,
|
|
CONF_WET_TOLERANCE,
|
|
DEFAULT_TOLERANCE,
|
|
DOMAIN,
|
|
)
|
|
|
|
OPTIONS_SCHEMA = {
|
|
vol.Required(CONF_DEVICE_CLASS): selector.SelectSelector(
|
|
selector.SelectSelectorConfig(
|
|
options=[
|
|
HumidifierDeviceClass.HUMIDIFIER,
|
|
HumidifierDeviceClass.DEHUMIDIFIER,
|
|
],
|
|
translation_key=CONF_DEVICE_CLASS,
|
|
mode=selector.SelectSelectorMode.DROPDOWN,
|
|
),
|
|
),
|
|
vol.Required(CONF_SENSOR): selector.EntitySelector(
|
|
selector.EntitySelectorConfig(
|
|
domain=SENSOR_DOMAIN, device_class=SensorDeviceClass.HUMIDITY
|
|
)
|
|
),
|
|
vol.Required(CONF_HUMIDIFIER): selector.EntitySelector(
|
|
selector.EntitySelectorConfig(domain=[switch.DOMAIN, fan.DOMAIN])
|
|
),
|
|
vol.Required(
|
|
CONF_DRY_TOLERANCE, default=DEFAULT_TOLERANCE
|
|
): selector.NumberSelector(
|
|
selector.NumberSelectorConfig(
|
|
min=0,
|
|
max=100,
|
|
step=0.5,
|
|
unit_of_measurement=PERCENTAGE,
|
|
mode=selector.NumberSelectorMode.BOX,
|
|
)
|
|
),
|
|
vol.Required(
|
|
CONF_WET_TOLERANCE, default=DEFAULT_TOLERANCE
|
|
): selector.NumberSelector(
|
|
selector.NumberSelectorConfig(
|
|
min=0,
|
|
max=100,
|
|
step=0.5,
|
|
unit_of_measurement=PERCENTAGE,
|
|
mode=selector.NumberSelectorMode.BOX,
|
|
)
|
|
),
|
|
vol.Optional(CONF_MIN_DUR): selector.DurationSelector(
|
|
selector.DurationSelectorConfig(allow_negative=False)
|
|
),
|
|
}
|
|
|
|
CONFIG_SCHEMA = {
|
|
vol.Required(CONF_NAME): selector.TextSelector(),
|
|
**OPTIONS_SCHEMA,
|
|
}
|
|
|
|
|
|
CONFIG_FLOW = {
|
|
"user": SchemaFlowFormStep(vol.Schema(CONFIG_SCHEMA)),
|
|
}
|
|
|
|
OPTIONS_FLOW = {
|
|
"init": SchemaFlowFormStep(vol.Schema(OPTIONS_SCHEMA)),
|
|
}
|
|
|
|
|
|
class ConfigFlowHandler(SchemaConfigFlowHandler, domain=DOMAIN):
|
|
"""Handle a config or options flow."""
|
|
|
|
config_flow = CONFIG_FLOW
|
|
options_flow = OPTIONS_FLOW
|
|
|
|
def async_config_entry_title(self, options: Mapping[str, Any]) -> str:
|
|
"""Return config entry title."""
|
|
return cast(str, options["name"])
|