-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Location/zone editor updates (#19994)
- Loading branch information
Showing
9 changed files
with
308 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,150 @@ | ||
import "@material/mwc-button"; | ||
import { css, CSSResultGroup, html, LitElement, nothing } from "lit"; | ||
import { property, state } from "lit/decorators"; | ||
import memoizeOne from "memoize-one"; | ||
import { fireEvent } from "../../../common/dom/fire_event"; | ||
import { createCloseHeading } from "../../../components/ha-dialog"; | ||
import "../../../components/ha-form/ha-form"; | ||
import { HomeZoneMutableParams } from "../../../data/zone"; | ||
import { haStyleDialog } from "../../../resources/styles"; | ||
import { HomeAssistant } from "../../../types"; | ||
import { HomeZoneDetailDialogParams } from "./show-dialog-home-zone-detail"; | ||
|
||
const SCHEMA = [ | ||
{ | ||
name: "location", | ||
required: true, | ||
selector: { location: { radius: true, radius_readonly: true } }, | ||
}, | ||
]; | ||
|
||
class DialogHomeZoneDetail extends LitElement { | ||
@property({ attribute: false }) public hass!: HomeAssistant; | ||
|
||
@state() private _error?: Record<string, string>; | ||
|
||
@state() private _data?: HomeZoneMutableParams; | ||
|
||
@state() private _params?: HomeZoneDetailDialogParams; | ||
|
||
@state() private _submitting = false; | ||
|
||
public showDialog(params: HomeZoneDetailDialogParams): void { | ||
this._params = params; | ||
this._error = undefined; | ||
this._data = { | ||
latitude: this.hass.config.latitude, | ||
longitude: this.hass.config.longitude, | ||
}; | ||
} | ||
|
||
public closeDialog(): void { | ||
this._params = undefined; | ||
this._data = undefined; | ||
fireEvent(this, "dialog-closed", { dialog: this.localName }); | ||
} | ||
|
||
protected render() { | ||
if (!this._params || !this._data) { | ||
return nothing; | ||
} | ||
const latInvalid = String(this._data.latitude) === ""; | ||
const lngInvalid = String(this._data.longitude) === ""; | ||
|
||
const valid = !latInvalid && !lngInvalid; | ||
|
||
return html` | ||
<ha-dialog | ||
open | ||
@closed=${this.closeDialog} | ||
scrimClickAction | ||
escapeKeyAction | ||
.heading=${createCloseHeading( | ||
this.hass, | ||
this.hass!.localize("ui.panel.config.zone.edit_home") | ||
)} | ||
> | ||
<div> | ||
<ha-form | ||
.hass=${this.hass} | ||
.schema=${SCHEMA} | ||
.data=${this._formData(this._data)} | ||
.error=${this._error} | ||
.computeLabel=${this._computeLabel} | ||
@value-changed=${this._valueChanged} | ||
></ha-form> | ||
<p> | ||
${this.hass!.localize( | ||
"ui.panel.config.zone.detail.no_edit_home_zone_radius" | ||
)} | ||
</p> | ||
</div> | ||
<mwc-button | ||
slot="primaryAction" | ||
@click=${this._updateEntry} | ||
.disabled=${!valid || this._submitting} | ||
> | ||
${this.hass!.localize("ui.panel.config.zone.detail.update")} | ||
</mwc-button> | ||
</ha-dialog> | ||
`; | ||
} | ||
|
||
private _formData = memoizeOne((data: HomeZoneMutableParams) => ({ | ||
...data, | ||
location: { | ||
latitude: data.latitude, | ||
longitude: data.longitude, | ||
radius: this.hass.states["zone.home"]?.attributes?.radius || 100, | ||
}, | ||
})); | ||
|
||
private _valueChanged(ev: CustomEvent) { | ||
this._error = undefined; | ||
const value = { ...ev.detail.value }; | ||
value.latitude = value.location.latitude; | ||
value.longitude = value.location.longitude; | ||
delete value.location; | ||
this._data = value; | ||
} | ||
|
||
private _computeLabel = (): string => ""; | ||
|
||
private async _updateEntry() { | ||
this._submitting = true; | ||
try { | ||
await this._params!.updateEntry!(this._data!); | ||
this.closeDialog(); | ||
} catch (err: any) { | ||
this._error = { base: err ? err.message : "Unknown error" }; | ||
} finally { | ||
this._submitting = false; | ||
} | ||
} | ||
|
||
static get styles(): CSSResultGroup { | ||
return [ | ||
haStyleDialog, | ||
css` | ||
ha-dialog { | ||
--mdc-dialog-min-width: min(600px, 95vw); | ||
} | ||
@media all and (max-width: 450px), all and (max-height: 500px) { | ||
ha-dialog { | ||
--mdc-dialog-min-width: calc( | ||
100vw - env(safe-area-inset-right) - env(safe-area-inset-left) | ||
); | ||
} | ||
} | ||
`, | ||
]; | ||
} | ||
} | ||
|
||
declare global { | ||
interface HTMLElementTagNameMap { | ||
"dialog-home-zone-detail": DialogHomeZoneDetail; | ||
} | ||
} | ||
|
||
customElements.define("dialog-home-zone-detail", DialogHomeZoneDetail); |
Oops, something went wrong.