mirror of
https://github.com/home-assistant/frontend.git
synced 2025-11-05 17:09:48 +00:00
* add 'state' option for secondary entity info on Entities card * Use formatEntityState instead of computeStateDisplay
254 lines
9.4 KiB
TypeScript
254 lines
9.4 KiB
TypeScript
import type { PropertyValues } from "lit";
|
|
import { LitElement, css, html, nothing } from "lit";
|
|
import { customElement, property } from "lit/decorators";
|
|
import { classMap } from "lit/directives/class-map";
|
|
import { ifDefined } from "lit/directives/if-defined";
|
|
import { DOMAINS_INPUT_ROW } from "../../../common/const";
|
|
import { toggleAttribute } from "../../../common/dom/toggle_attribute";
|
|
import { computeDomain } from "../../../common/entity/compute_domain";
|
|
import { computeStateName } from "../../../common/entity/compute_state_name";
|
|
import "../../../components/entity/state-badge";
|
|
import "../../../components/ha-relative-time";
|
|
import type { ActionHandlerEvent } from "../../../data/lovelace/action_handler";
|
|
import type { HomeAssistant } from "../../../types";
|
|
import type { EntitiesCardEntityConfig } from "../cards/types";
|
|
import { actionHandler } from "../common/directives/action-handler-directive";
|
|
import { handleAction } from "../common/handle-action";
|
|
import { hasAction, hasAnyAction } from "../common/has-action";
|
|
import { createEntityNotFoundWarning } from "./hui-warning";
|
|
import { stopPropagation } from "../../../common/dom/stop_propagation";
|
|
|
|
@customElement("hui-generic-entity-row")
|
|
export class HuiGenericEntityRow extends LitElement {
|
|
@property({ attribute: false }) public hass?: HomeAssistant;
|
|
|
|
@property({ attribute: false }) public config?: EntitiesCardEntityConfig;
|
|
|
|
@property({ attribute: "secondary-text" }) public secondaryText?: string;
|
|
|
|
@property({ attribute: "hide-name", type: Boolean }) public hideName = false;
|
|
|
|
// Allows to control if this row should capture the user interaction, e.g. with its
|
|
// toggle switch, button or input field. Some domains dynamically decide what to show
|
|
// => static determination will not work => the caller has to pass the desired value in.
|
|
// Same applies for custom components that want to override the default behavior.
|
|
// Default behavior is controlled by DOMAINS_INPUT_ROW.
|
|
@property({ attribute: "catch-interaction", type: Boolean })
|
|
public catchInteraction?;
|
|
|
|
protected render() {
|
|
if (!this.hass || !this.config) {
|
|
return nothing;
|
|
}
|
|
const stateObj = this.config.entity
|
|
? this.hass.states[this.config.entity]
|
|
: undefined;
|
|
|
|
if (!stateObj) {
|
|
return html`
|
|
<hui-warning .hass=${this.hass}>
|
|
${createEntityNotFoundWarning(this.hass, this.config.entity)}
|
|
</hui-warning>
|
|
`;
|
|
}
|
|
|
|
const domain = computeDomain(this.config.entity);
|
|
// By default, we always show a pointer, since if there is no explicit configuration provided,
|
|
// the frontend always assumes "more-info" in the action handler. We only need to hide the pointer
|
|
// if the tap action is explicitly set to "none".
|
|
const pointer = hasAnyAction(this.config);
|
|
|
|
const hasSecondary = this.secondaryText || this.config.secondary_info;
|
|
const name = this.config.name ?? computeStateName(stateObj);
|
|
|
|
return html`
|
|
<div
|
|
class="row ${classMap({ pointer })}"
|
|
@action=${this._handleAction}
|
|
.actionHandler=${actionHandler({
|
|
hasHold: hasAction(this.config!.hold_action),
|
|
hasDoubleClick: hasAction(this.config!.double_tap_action),
|
|
})}
|
|
tabindex=${ifDefined(
|
|
!this.config.tap_action || hasAction(this.config.tap_action)
|
|
? "0"
|
|
: undefined
|
|
)}
|
|
>
|
|
<state-badge
|
|
.hass=${this.hass}
|
|
.stateObj=${stateObj}
|
|
.overrideIcon=${this.config.icon}
|
|
.overrideImage=${this.config.image}
|
|
.stateColor=${this.config.state_color}
|
|
></state-badge>
|
|
${!this.hideName
|
|
? html`<div
|
|
class="info ${classMap({ "text-content": !hasSecondary })}"
|
|
.title=${name}
|
|
>
|
|
${this.config.name || computeStateName(stateObj)}
|
|
${hasSecondary
|
|
? html`
|
|
<div class="secondary">
|
|
${this.secondaryText ||
|
|
(this.config.secondary_info === "entity-id"
|
|
? stateObj.entity_id
|
|
: this.config.secondary_info === "last-changed"
|
|
? html`
|
|
<ha-relative-time
|
|
.hass=${this.hass}
|
|
.datetime=${stateObj.last_changed}
|
|
capitalize
|
|
></ha-relative-time>
|
|
`
|
|
: this.config.secondary_info === "last-updated"
|
|
? html`
|
|
<ha-relative-time
|
|
.hass=${this.hass}
|
|
.datetime=${stateObj.last_updated}
|
|
capitalize
|
|
></ha-relative-time>
|
|
`
|
|
: this.config.secondary_info === "last-triggered"
|
|
? stateObj.attributes.last_triggered
|
|
? html`
|
|
<ha-relative-time
|
|
.hass=${this.hass}
|
|
.datetime=${stateObj.attributes
|
|
.last_triggered}
|
|
capitalize
|
|
></ha-relative-time>
|
|
`
|
|
: this.hass.localize(
|
|
"ui.panel.lovelace.cards.entities.never_triggered"
|
|
)
|
|
: this.config.secondary_info === "position" &&
|
|
stateObj.attributes.current_position !==
|
|
undefined
|
|
? `${this.hass.localize(
|
|
"ui.card.cover.position"
|
|
)}: ${stateObj.attributes.current_position}`
|
|
: this.config.secondary_info ===
|
|
"tilt-position" &&
|
|
stateObj.attributes
|
|
.current_tilt_position !== undefined
|
|
? `${this.hass.localize(
|
|
"ui.card.cover.tilt_position"
|
|
)}: ${
|
|
stateObj.attributes.current_tilt_position
|
|
}`
|
|
: this.config.secondary_info ===
|
|
"brightness" &&
|
|
stateObj.attributes.brightness
|
|
? html`${Math.round(
|
|
(stateObj.attributes.brightness / 255) *
|
|
100
|
|
)}
|
|
%`
|
|
: this.config.secondary_info === "state"
|
|
? html`${this.hass.formatEntityState(
|
|
stateObj
|
|
)}`
|
|
: nothing)}
|
|
</div>
|
|
`
|
|
: nothing}
|
|
</div>`
|
|
: nothing}
|
|
${(this.catchInteraction ?? !DOMAINS_INPUT_ROW.includes(domain))
|
|
? html`
|
|
<div class="text-content value">
|
|
<div class="state"><slot></slot></div>
|
|
</div>
|
|
`
|
|
: html`<slot
|
|
@touchcancel=${stopPropagation}
|
|
@touchend=${stopPropagation}
|
|
@keydown=${stopPropagation}
|
|
@click=${stopPropagation}
|
|
@action=${stopPropagation}
|
|
></slot>`}
|
|
</div>
|
|
`;
|
|
}
|
|
|
|
protected updated(changedProps: PropertyValues): void {
|
|
super.updated(changedProps);
|
|
toggleAttribute(
|
|
this,
|
|
"no-secondary",
|
|
!this.secondaryText && !this.config?.secondary_info
|
|
);
|
|
}
|
|
|
|
private _handleAction(ev: ActionHandlerEvent) {
|
|
handleAction(this, this.hass!, this.config!, ev.detail.action!);
|
|
}
|
|
|
|
static styles = css`
|
|
:host {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: row;
|
|
}
|
|
.row {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: row;
|
|
width: 100%;
|
|
outline: none;
|
|
transition: background-color 180ms ease-in-out;
|
|
}
|
|
.row:focus-visible {
|
|
background-color: var(--primary-background-color);
|
|
}
|
|
.info {
|
|
padding-left: 16px;
|
|
padding-right: 8px;
|
|
padding-inline-start: 16px;
|
|
padding-inline-end: 8px;
|
|
flex: 1 1 30%;
|
|
}
|
|
.info,
|
|
.info > * {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
.flex ::slotted(*) {
|
|
margin-left: 8px;
|
|
margin-inline-start: 8px;
|
|
margin-inline-end: initial;
|
|
min-width: 0;
|
|
}
|
|
.flex ::slotted([slot="secondary"]) {
|
|
margin-left: 0;
|
|
margin-inline-start: 0;
|
|
margin-inline-end: initial;
|
|
}
|
|
.secondary,
|
|
ha-relative-time {
|
|
color: var(--secondary-text-color);
|
|
}
|
|
state-badge {
|
|
flex: 0 0 40px;
|
|
}
|
|
.pointer {
|
|
cursor: pointer;
|
|
}
|
|
.state {
|
|
text-align: var(--float-end);
|
|
}
|
|
.value {
|
|
direction: ltr;
|
|
}
|
|
`;
|
|
}
|
|
|
|
declare global {
|
|
interface HTMLElementTagNameMap {
|
|
"hui-generic-entity-row": HuiGenericEntityRow;
|
|
}
|
|
}
|