mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-24 09:46:36 +00:00
Display default action label in action selector (#18398)
This commit is contained in:
parent
e63c7e3763
commit
784f753f07
@ -25,6 +25,7 @@ export class HaSelectorUiAction extends LitElement {
|
||||
.hass=${this.hass}
|
||||
.config=${this.value}
|
||||
.actions=${this.selector.ui_action?.actions}
|
||||
.defaultAction=${this.selector.ui_action?.default_action}
|
||||
.tooltipText=${this.helper}
|
||||
@value-changed=${this._valueChanged}
|
||||
></hui-action-editor>
|
||||
|
@ -392,6 +392,7 @@ export interface TTSVoiceSelector {
|
||||
export interface UiActionSelector {
|
||||
ui_action: {
|
||||
actions?: UiAction[];
|
||||
default_action?: UiAction;
|
||||
} | null;
|
||||
}
|
||||
|
||||
|
@ -55,6 +55,11 @@ import { createEntityNotFoundWarning } from "../components/hui-warning";
|
||||
import { LovelaceCard, LovelaceCardEditor } from "../types";
|
||||
import { ButtonCardConfig } from "./types";
|
||||
|
||||
export const getEntityDefaultButtonAction = (entityId?: string) =>
|
||||
entityId && DOMAINS_TOGGLE.has(computeDomain(entityId))
|
||||
? "toggle"
|
||||
: "more-info";
|
||||
|
||||
@customElement("hui-button-card")
|
||||
export class HuiButtonCard extends LitElement implements LovelaceCard {
|
||||
public static async getConfigElement(): Promise<LovelaceCardEditor> {
|
||||
@ -149,10 +154,7 @@ export class HuiButtonCard extends LitElement implements LovelaceCard {
|
||||
|
||||
this._config = {
|
||||
tap_action: {
|
||||
action:
|
||||
config.entity && DOMAINS_TOGGLE.has(computeDomain(config.entity))
|
||||
? "toggle"
|
||||
: "more-info",
|
||||
action: getEntityDefaultButtonAction(config.entity),
|
||||
},
|
||||
hold_action: { action: "more-info" },
|
||||
show_icon: true,
|
||||
|
@ -50,6 +50,15 @@ import type { ThermostatCardConfig, TileCardConfig } from "./types";
|
||||
|
||||
const TIMESTAMP_STATE_DOMAINS = ["button", "input_button", "scene"];
|
||||
|
||||
export const getEntityDefaultTileIconAction = (entityId: string) => {
|
||||
const domain = computeDomain(entityId);
|
||||
const supportsIconAction =
|
||||
DOMAINS_TOGGLE.has(domain) ||
|
||||
["button", "input_button", "scene"].includes(domain);
|
||||
|
||||
return supportsIconAction ? "toggle" : "more-info";
|
||||
};
|
||||
|
||||
@customElement("hui-tile-card")
|
||||
export class HuiTileCard extends LitElement implements LovelaceCard {
|
||||
public static async getConfigElement(): Promise<LovelaceCardEditor> {
|
||||
@ -87,17 +96,12 @@ export class HuiTileCard extends LitElement implements LovelaceCard {
|
||||
throw new Error("Specify an entity");
|
||||
}
|
||||
|
||||
const domain = computeDomain(config.entity);
|
||||
const supportsIconAction =
|
||||
DOMAINS_TOGGLE.has(domain) ||
|
||||
["button", "input_button", "scene"].includes(domain);
|
||||
|
||||
this._config = {
|
||||
tap_action: {
|
||||
action: "more-info",
|
||||
},
|
||||
icon_tap_action: {
|
||||
action: supportsIconAction ? "toggle" : "more-info",
|
||||
action: getEntityDefaultTileIconAction(config.entity),
|
||||
},
|
||||
...config,
|
||||
};
|
||||
|
@ -1,5 +1,12 @@
|
||||
import { css, CSSResultGroup, html, LitElement, nothing } from "lit";
|
||||
import { customElement, property } from "lit/decorators";
|
||||
import {
|
||||
css,
|
||||
CSSResultGroup,
|
||||
html,
|
||||
LitElement,
|
||||
nothing,
|
||||
PropertyValues,
|
||||
} from "lit";
|
||||
import { customElement, property, query } from "lit/decorators";
|
||||
import memoizeOne from "memoize-one";
|
||||
import { fireEvent } from "../../../common/dom/fire_event";
|
||||
import { stopPropagation } from "../../../common/dom/stop_propagation";
|
||||
@ -17,6 +24,7 @@ import {
|
||||
import { ServiceAction } from "../../../data/script";
|
||||
import { HomeAssistant } from "../../../types";
|
||||
import { EditorTarget } from "../editor/types";
|
||||
import { HaSelect } from "../../../components/ha-select";
|
||||
|
||||
export type UiAction = Exclude<ActionConfig["action"], "fire-dom-event">;
|
||||
|
||||
@ -70,10 +78,14 @@ export class HuiActionEditor extends LitElement {
|
||||
|
||||
@property() public actions?: UiAction[];
|
||||
|
||||
@property() public defaultAction?: UiAction;
|
||||
|
||||
@property() public tooltipText?: string;
|
||||
|
||||
@property() protected hass?: HomeAssistant;
|
||||
|
||||
@query("ha-select") private _select!: HaSelect;
|
||||
|
||||
get _navigation_path(): string {
|
||||
const config = this.config as NavigateActionConfig | undefined;
|
||||
return config?.navigation_path || "";
|
||||
@ -99,6 +111,15 @@ export class HuiActionEditor extends LitElement {
|
||||
})
|
||||
);
|
||||
|
||||
protected updated(changedProperties: PropertyValues<typeof this>) {
|
||||
super.updated(changedProperties);
|
||||
if (changedProperties.has("defaultAction")) {
|
||||
if (changedProperties.get("defaultAction") !== this.defaultAction) {
|
||||
this._select.layoutOptions();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
protected render() {
|
||||
if (!this.hass) {
|
||||
return nothing;
|
||||
@ -121,6 +142,11 @@ export class HuiActionEditor extends LitElement {
|
||||
${this.hass!.localize(
|
||||
"ui.panel.lovelace.editor.action-editor.actions.default_action"
|
||||
)}
|
||||
${this.defaultAction
|
||||
? ` (${this.hass!.localize(
|
||||
`ui.panel.lovelace.editor.action-editor.actions.${this.defaultAction}`
|
||||
).toLowerCase()})`
|
||||
: nothing}
|
||||
</mwc-list-item>
|
||||
${actions.map(
|
||||
(action) => html`
|
||||
|
@ -1,10 +1,15 @@
|
||||
import { CSSResultGroup, html, LitElement, nothing } from "lit";
|
||||
import { customElement, property, state } from "lit/decorators";
|
||||
import memoizeOne from "memoize-one";
|
||||
import { assert, assign, boolean, object, optional, string } from "superstruct";
|
||||
import { fireEvent } from "../../../../common/dom/fire_event";
|
||||
import "../../../../components/ha-form/ha-form";
|
||||
import type { SchemaUnion } from "../../../../components/ha-form/types";
|
||||
import type {
|
||||
HaFormSchema,
|
||||
SchemaUnion,
|
||||
} from "../../../../components/ha-form/types";
|
||||
import type { HomeAssistant } from "../../../../types";
|
||||
import { getEntityDefaultButtonAction } from "../../cards/hui-button-card";
|
||||
import type { ButtonCardConfig } from "../../cards/types";
|
||||
import type { LovelaceCardEditor } from "../../types";
|
||||
import { actionConfigStruct } from "../structs/action-struct";
|
||||
@ -27,52 +32,6 @@ const cardConfigStruct = assign(
|
||||
})
|
||||
);
|
||||
|
||||
const SCHEMA = [
|
||||
{ name: "entity", selector: { entity: {} } },
|
||||
{
|
||||
name: "",
|
||||
type: "grid",
|
||||
schema: [
|
||||
{ name: "name", selector: { text: {} } },
|
||||
{
|
||||
name: "icon",
|
||||
selector: {
|
||||
icon: {},
|
||||
},
|
||||
context: {
|
||||
icon_entity: "entity",
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
name: "",
|
||||
type: "grid",
|
||||
column_min_width: "100px",
|
||||
schema: [
|
||||
{ name: "show_name", selector: { boolean: {} } },
|
||||
{ name: "show_state", selector: { boolean: {} } },
|
||||
{ name: "show_icon", selector: { boolean: {} } },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: "",
|
||||
type: "grid",
|
||||
schema: [
|
||||
{ name: "icon_height", selector: { text: { suffix: "px" } } },
|
||||
{ name: "theme", selector: { theme: {} } },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: "tap_action",
|
||||
selector: { ui_action: {} },
|
||||
},
|
||||
{
|
||||
name: "hold_action",
|
||||
selector: { ui_action: {} },
|
||||
},
|
||||
] as const;
|
||||
|
||||
@customElement("hui-button-card-editor")
|
||||
export class HuiButtonCardEditor
|
||||
extends LitElement
|
||||
@ -87,6 +46,63 @@ export class HuiButtonCardEditor
|
||||
this._config = config;
|
||||
}
|
||||
|
||||
private _schema = memoizeOne(
|
||||
(entityId: string | undefined) =>
|
||||
[
|
||||
{ name: "entity", selector: { entity: {} } },
|
||||
{
|
||||
name: "",
|
||||
type: "grid",
|
||||
schema: [
|
||||
{ name: "name", selector: { text: {} } },
|
||||
{
|
||||
name: "icon",
|
||||
selector: {
|
||||
icon: {},
|
||||
},
|
||||
context: {
|
||||
icon_entity: "entity",
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
name: "",
|
||||
type: "grid",
|
||||
column_min_width: "100px",
|
||||
schema: [
|
||||
{ name: "show_name", selector: { boolean: {} } },
|
||||
{ name: "show_state", selector: { boolean: {} } },
|
||||
{ name: "show_icon", selector: { boolean: {} } },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: "",
|
||||
type: "grid",
|
||||
schema: [
|
||||
{ name: "icon_height", selector: { text: { suffix: "px" } } },
|
||||
{ name: "theme", selector: { theme: {} } },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: "tap_action",
|
||||
selector: {
|
||||
ui_action: {
|
||||
default_action: getEntityDefaultButtonAction(entityId),
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "hold_action",
|
||||
selector: {
|
||||
ui_action: {
|
||||
default_action: "more-info",
|
||||
},
|
||||
},
|
||||
},
|
||||
] as const satisfies readonly HaFormSchema[]
|
||||
);
|
||||
|
||||
protected render() {
|
||||
if (!this.hass || !this._config) {
|
||||
return nothing;
|
||||
@ -102,11 +118,13 @@ export class HuiButtonCardEditor
|
||||
data.icon_height = String(parseFloat(data.icon_height));
|
||||
}
|
||||
|
||||
const schema = this._schema(this._config.entity);
|
||||
|
||||
return html`
|
||||
<ha-form
|
||||
.hass=${this.hass}
|
||||
.data=${data}
|
||||
.schema=${SCHEMA}
|
||||
.schema=${schema}
|
||||
.computeLabel=${this._computeLabelCallback}
|
||||
.computeHelper=${this._computeHelperCallback}
|
||||
@value-changed=${this._valueChanged}
|
||||
@ -124,7 +142,9 @@ export class HuiButtonCardEditor
|
||||
fireEvent(this, "config-changed", { config });
|
||||
}
|
||||
|
||||
private _computeHelperCallback = (schema: SchemaUnion<typeof SCHEMA>) => {
|
||||
private _computeHelperCallback = (
|
||||
schema: SchemaUnion<ReturnType<typeof this._schema>>
|
||||
) => {
|
||||
switch (schema.name) {
|
||||
case "tap_action":
|
||||
case "hold_action":
|
||||
@ -136,7 +156,9 @@ export class HuiButtonCardEditor
|
||||
}
|
||||
};
|
||||
|
||||
private _computeLabelCallback = (schema: SchemaUnion<typeof SCHEMA>) => {
|
||||
private _computeLabelCallback = (
|
||||
schema: SchemaUnion<ReturnType<typeof this._schema>>
|
||||
) => {
|
||||
switch (schema.name) {
|
||||
case "theme":
|
||||
case "tap_action":
|
||||
|
@ -36,6 +36,7 @@ import { baseLovelaceCardConfig } from "../structs/base-card-struct";
|
||||
import { EditSubElementEvent, SubElementEditorConfig } from "../types";
|
||||
import { configElementStyle } from "./config-elements-style";
|
||||
import "./hui-tile-card-features-editor";
|
||||
import { getEntityDefaultTileIconAction } from "../../cards/hui-tile-card";
|
||||
|
||||
const HIDDEN_ATTRIBUTES = [
|
||||
"access_token",
|
||||
@ -125,6 +126,7 @@ export class HuiTileCardEditor
|
||||
(
|
||||
localize: LocalizeFunc,
|
||||
formatEntityAttributeName: formatEntityAttributeNameFunc,
|
||||
entityId: string | undefined,
|
||||
stateObj: HassEntity | undefined,
|
||||
hideState: boolean
|
||||
) =>
|
||||
@ -223,13 +225,19 @@ export class HuiTileCardEditor
|
||||
{
|
||||
name: "tap_action",
|
||||
selector: {
|
||||
ui_action: {},
|
||||
ui_action: {
|
||||
default_action: "more-info",
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "icon_tap_action",
|
||||
selector: {
|
||||
ui_action: {},
|
||||
ui_action: {
|
||||
default_action: entityId
|
||||
? getEntityDefaultTileIconAction(entityId)
|
||||
: "more-info",
|
||||
},
|
||||
},
|
||||
},
|
||||
],
|
||||
@ -246,13 +254,14 @@ export class HuiTileCardEditor
|
||||
return nothing;
|
||||
}
|
||||
|
||||
const stateObj = this.hass.states[this._config.entity ?? ""] as
|
||||
| HassEntity
|
||||
| undefined;
|
||||
const stateObj = this._config.entity
|
||||
? this.hass.states[this._config.entity]
|
||||
: undefined;
|
||||
|
||||
const schema = this._schema(
|
||||
this.hass!.localize,
|
||||
this.hass.formatEntityAttributeName,
|
||||
this._config.entity,
|
||||
stateObj,
|
||||
this._config.hide_state ?? false
|
||||
);
|
||||
|
Loading…
x
Reference in New Issue
Block a user