mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-10 10:56:34 +00:00
Add a button for launching the ZHA options flow to reconfigure the radio (#13506)
* Add a button for launching the ZHA options flow to reconfigure the radio * Remove unnecessary whitespace * Rename `Reconfigure` to `Migrate Radio` * Rename `Download Network Backup` to `Download Backup`
This commit is contained in:
parent
92c8de307d
commit
e463a997c1
@ -9,6 +9,10 @@ import {
|
|||||||
TemplateResult,
|
TemplateResult,
|
||||||
} from "lit";
|
} from "lit";
|
||||||
import { customElement, property, state } from "lit/decorators";
|
import { customElement, property, state } from "lit/decorators";
|
||||||
|
import {
|
||||||
|
ConfigEntry,
|
||||||
|
getConfigEntries,
|
||||||
|
} from "../../../../../data/config_entries";
|
||||||
import { computeRTL } from "../../../../../common/util/compute_rtl";
|
import { computeRTL } from "../../../../../common/util/compute_rtl";
|
||||||
import "../../../../../components/ha-card";
|
import "../../../../../components/ha-card";
|
||||||
import "../../../../../components/ha-fab";
|
import "../../../../../components/ha-fab";
|
||||||
@ -16,6 +20,7 @@ import { fileDownload } from "../../../../../util/file_download";
|
|||||||
import "../../../../../components/ha-icon-next";
|
import "../../../../../components/ha-icon-next";
|
||||||
import "../../../../../layouts/hass-tabs-subpage";
|
import "../../../../../layouts/hass-tabs-subpage";
|
||||||
import type { PageNavigation } from "../../../../../layouts/hass-tabs-subpage";
|
import type { PageNavigation } from "../../../../../layouts/hass-tabs-subpage";
|
||||||
|
import { showOptionsFlowDialog } from "../../../../../dialogs/config-flow/show-dialog-options-flow";
|
||||||
import { haStyle } from "../../../../../resources/styles";
|
import { haStyle } from "../../../../../resources/styles";
|
||||||
import type { HomeAssistant, Route } from "../../../../../types";
|
import type { HomeAssistant, Route } from "../../../../../types";
|
||||||
import "../../../ha-config-section";
|
import "../../../ha-config-section";
|
||||||
@ -114,13 +119,14 @@ class ZHAConfigDashboard extends LitElement {
|
|||||||
</div>`
|
</div>`
|
||||||
: ""}
|
: ""}
|
||||||
</ha-card>
|
</ha-card>
|
||||||
${this._networkSettings
|
<ha-card
|
||||||
? html` <ha-card
|
class="network-settings"
|
||||||
header=${this.hass.localize(
|
header=${this.hass.localize(
|
||||||
"ui.panel.config.zha.configuration_page.network_settings_title"
|
"ui.panel.config.zha.configuration_page.network_settings_title"
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
<div class="card-content network-settings">
|
${this._networkSettings
|
||||||
|
? html`<div class="card-content network-settings">
|
||||||
<div>
|
<div>
|
||||||
<strong>PAN ID:</strong>
|
<strong>PAN ID:</strong>
|
||||||
${this._networkSettings.settings.network_info.pan_id}
|
${this._networkSettings.settings.network_info.pan_id}
|
||||||
@ -145,20 +151,25 @@ class ZHAConfigDashboard extends LitElement {
|
|||||||
<strong>Radio type:</strong>
|
<strong>Radio type:</strong>
|
||||||
${this._networkSettings.radio_type}
|
${this._networkSettings.radio_type}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>`
|
||||||
<div class="card-actions">
|
: ""}
|
||||||
<ha-progress-button
|
<div class="card-actions">
|
||||||
@click=${this._createAndDownloadBackup}
|
<ha-progress-button
|
||||||
.progress=${this._generatingBackup}
|
@click=${this._createAndDownloadBackup}
|
||||||
.disabled=${this._generatingBackup}
|
.progress=${this._generatingBackup}
|
||||||
>
|
.disabled=${!this._networkSettings || this._generatingBackup}
|
||||||
${this.hass.localize(
|
>
|
||||||
"ui.panel.config.zha.configuration_page.download_backup"
|
${this.hass.localize(
|
||||||
)}
|
"ui.panel.config.zha.configuration_page.download_backup"
|
||||||
</ha-progress-button>
|
)}
|
||||||
</div>
|
</ha-progress-button>
|
||||||
</ha-card>`
|
<mwc-button class="warning" @click=${this._openOptionFlow}>
|
||||||
: ""}
|
${this.hass.localize(
|
||||||
|
"ui.panel.config.zha.configuration_page.migrate_radio"
|
||||||
|
)}
|
||||||
|
</mwc-button>
|
||||||
|
</div>
|
||||||
|
</ha-card>
|
||||||
${this._configuration
|
${this._configuration
|
||||||
? Object.entries(this._configuration.schemas).map(
|
? Object.entries(this._configuration.schemas).map(
|
||||||
([section, schema]) => html`<ha-card
|
([section, schema]) => html`<ha-card
|
||||||
@ -253,6 +264,22 @@ class ZHAConfigDashboard extends LitElement {
|
|||||||
fileDownload(backupJSON, `${basename}.json`);
|
fileDownload(backupJSON, `${basename}.json`);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private async _openOptionFlow() {
|
||||||
|
if (!this.configEntryId) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const configEntries: ConfigEntry[] = await getConfigEntries(this.hass, {
|
||||||
|
domain: "zha",
|
||||||
|
});
|
||||||
|
|
||||||
|
const configEntry = configEntries.find(
|
||||||
|
(entry) => entry.entry_id === this.configEntryId
|
||||||
|
);
|
||||||
|
|
||||||
|
showOptionsFlowDialog(this, configEntry!);
|
||||||
|
}
|
||||||
|
|
||||||
private _dataChanged(ev) {
|
private _dataChanged(ev) {
|
||||||
this._configuration!.data[ev.currentTarget!.section] = ev.detail.value;
|
this._configuration!.data[ev.currentTarget!.section] = ev.detail.value;
|
||||||
}
|
}
|
||||||
@ -282,6 +309,12 @@ class ZHAConfigDashboard extends LitElement {
|
|||||||
word-break: break-all;
|
word-break: break-all;
|
||||||
margin-top: 2px;
|
margin-top: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.network-settings > .card-actions {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
`,
|
`,
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
@ -3023,7 +3023,8 @@
|
|||||||
"configuration_page": {
|
"configuration_page": {
|
||||||
"shortcuts_title": "Shortcuts",
|
"shortcuts_title": "Shortcuts",
|
||||||
"update_button": "Update Configuration",
|
"update_button": "Update Configuration",
|
||||||
"download_backup": "Download Network Backup",
|
"download_backup": "Download Backup",
|
||||||
|
"migrate_radio": "Migrate Radio",
|
||||||
"network_settings_title": "Network Settings"
|
"network_settings_title": "Network Settings"
|
||||||
},
|
},
|
||||||
"add_device_page": {
|
"add_device_page": {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user