42 lines
1.4 KiB
Python
42 lines
1.4 KiB
Python
import logging
|
|
import voluptuous as vol
|
|
|
|
from homeassistant import config_entries
|
|
from homeassistant.core import callback
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
# Configuration:
|
|
SIDEPANEL_TITLE = "sidepanel_title"
|
|
SIDEPANEL_ICON = "sidepanel_icon"
|
|
|
|
@config_entries.HANDLERS.register("dwains_dashboard")
|
|
class DwainsDashboardConfigFlow(config_entries.ConfigFlow):
|
|
async def async_step_user(self, user_input=None):
|
|
if self._async_current_entries():
|
|
return self.async_abort(reason="single_instance_allowed")
|
|
return self.async_create_entry(title="", data={})
|
|
|
|
@staticmethod
|
|
@callback
|
|
def async_get_options_flow(config_entry):
|
|
return DwainsDashboardEditFlow(config_entry)
|
|
|
|
class DwainsDashboardEditFlow(config_entries.OptionsFlow):
|
|
def __init__(self, config_entry):
|
|
self.config_entry = config_entry
|
|
|
|
async def async_step_init(self, user_input=None):
|
|
if user_input is not None:
|
|
return self.async_create_entry(title="", data=user_input)
|
|
|
|
schema = {
|
|
vol.Optional(SIDEPANEL_TITLE, default=self.config_entry.options.get("sidepanel_title", "Dwains Dashboard")): str,
|
|
vol.Optional(SIDEPANEL_ICON, default=self.config_entry.options.get("sidepanel_icon", "mdi:alpha-d-box")): str,
|
|
}
|
|
|
|
return self.async_show_form(
|
|
step_id="init",
|
|
data_schema=vol.Schema(schema)
|
|
)
|