-
-
Notifications
You must be signed in to change notification settings - Fork 340
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
395 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
|
||
|
||
title: Switch | ||
title: Template | ||
icon: mdi:card-text | ||
cards: | ||
- type: grid | ||
|
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,17 @@ | ||
title: Title | ||
icon: mdi:card-text | ||
cards: | ||
- type: vertical-stack | ||
cards: | ||
- type: custom:mushroom-title-card | ||
title: Hello, {{user}} | ||
subtitle: How are you? | ||
- type: custom:mushroom-title-card | ||
title: Number of entities | ||
subtitle: | | ||
{{ states | count }} entities | ||
- type: custom:mushroom-title-card | ||
title: Title only | ||
- type: custom:mushroom-title-card | ||
subtitle: Subtitle only | ||
|
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,18 @@ | ||
# Title card | ||
|
||
![Title light](../images/title-light.png) | ||
![Title dark](../images/title-dark.png) | ||
|
||
## Description | ||
|
||
A Title block to separate sections of cards | ||
|
||
## Configuration variables | ||
|
||
All the options are available in the lovelace editor but you can use `yaml` if you want. | ||
|
||
| Name | Type | Default | Description | | ||
| :---------- | :-------------- | :------- | :---------------------------------------------------------------------------------------------------------------------------------- | | ||
| `title` | string | Optional | Title to render. May contain [templates](https://www.home-assistant.io/docs/configuration/templating/). | | ||
| `subtitle` | string | Optional | Subtitle to render. May contain [templates](https://www.home-assistant.io/docs/configuration/templating/). | | ||
| `entity_id` | `string` `list` | Optional | Only reacts to the state changes of these entities. This can be used if the automatic analysis fails to find all relevant entities. | |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,4 @@ | ||
import { PREFIX_NAME } from "../../const"; | ||
|
||
export const TITLE_CARD_NAME = `${PREFIX_NAME}-title-card`; | ||
export const TITLE_CARD_EDITOR_NAME = `${TITLE_CARD_NAME}-editor`; |
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,16 @@ | ||
import { LovelaceCardConfig } from "custom-card-helpers"; | ||
import { assign, object, optional, string } from "superstruct"; | ||
import { baseLovelaceCardConfig } from "../../utils/editor-styles"; | ||
|
||
export interface TitleCardConfig extends LovelaceCardConfig { | ||
title?: string; | ||
subtitle?: string; | ||
} | ||
|
||
export const titleCardConfigStruct = assign( | ||
baseLovelaceCardConfig, | ||
object({ | ||
title: optional(string()), | ||
subtitle: optional(string()), | ||
}) | ||
); |
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,102 @@ | ||
import { | ||
fireEvent, | ||
HomeAssistant, | ||
LovelaceCardEditor, | ||
} from "custom-card-helpers"; | ||
import { CSSResultGroup, html, LitElement, TemplateResult } from "lit"; | ||
import { customElement, property, state } from "lit/decorators.js"; | ||
import { assert } from "superstruct"; | ||
import setupCustomlocalize from "../../localize"; | ||
import { configElementStyle } from "../../utils/editor-styles"; | ||
import { EditorTarget } from "../../utils/lovelace/editor/types"; | ||
import { TITLE_CARD_EDITOR_NAME } from "./const"; | ||
import { TitleCardConfig, titleCardConfigStruct } from "./title-card-config"; | ||
|
||
@customElement(TITLE_CARD_EDITOR_NAME) | ||
export class TitleCardEditor extends LitElement implements LovelaceCardEditor { | ||
@property({ attribute: false }) public hass?: HomeAssistant; | ||
|
||
@state() private _config?: TitleCardConfig; | ||
|
||
public setConfig(config: TitleCardConfig): void { | ||
assert(config, titleCardConfigStruct); | ||
this._config = config; | ||
} | ||
|
||
protected render(): TemplateResult { | ||
if (!this.hass || !this._config) { | ||
return html``; | ||
} | ||
|
||
const customLocalize = setupCustomlocalize(this.hass); | ||
|
||
return html` | ||
<div class="card-config"> | ||
<paper-textarea | ||
.label="${customLocalize( | ||
"editor.card.generic.title" | ||
)} (${this.hass.localize( | ||
"ui.panel.lovelace.editor.card.config.optional" | ||
)})" | ||
.value=${this._config.title} | ||
.configValue=${"title"} | ||
@keydown=${this._ignoreKeydown} | ||
@value-changed=${this._valueChanged} | ||
autocapitalize="none" | ||
autocomplete="off" | ||
spellcheck="false" | ||
></paper-textarea> | ||
<paper-textarea | ||
.label="${customLocalize( | ||
"editor.card.generic.subtitle" | ||
)} (${this.hass.localize( | ||
"ui.panel.lovelace.editor.card.config.optional" | ||
)})" | ||
.value=${this._config.subtitle} | ||
.configValue=${"subtitle"} | ||
@keydown=${this._ignoreKeydown} | ||
@value-changed=${this._valueChanged} | ||
autocapitalize="none" | ||
autocomplete="off" | ||
spellcheck="false" | ||
></paper-textarea> | ||
</div> | ||
`; | ||
} | ||
|
||
private _ignoreKeydown(ev: KeyboardEvent) { | ||
// Stop keyboard events from the paper-textarea from propagating to avoid accidentally closing the dialog when the user presses Enter. | ||
ev.stopPropagation(); | ||
} | ||
|
||
private _valueChanged(ev: CustomEvent): void { | ||
if (!this._config || !this.hass) { | ||
return; | ||
} | ||
const target = ev.target! as EditorTarget; | ||
const value = | ||
target.checked !== undefined ? target.checked : ev.detail.value; | ||
|
||
if (this[`_${target.configValue}`] === value) { | ||
return; | ||
} | ||
|
||
let newConfig; | ||
if (target.configValue) { | ||
if (!value) { | ||
newConfig = { ...this._config }; | ||
delete newConfig[target.configValue!]; | ||
} else { | ||
newConfig = { | ||
...this._config, | ||
[target.configValue!]: value, | ||
}; | ||
} | ||
} | ||
fireEvent(this, "config-changed", { config: newConfig }); | ||
} | ||
|
||
static get styles(): CSSResultGroup { | ||
return configElementStyle; | ||
} | ||
} |
Oops, something went wrong.