mirror of
https://github.com/home-assistant/frontend.git
synced 2025-09-04 10:55:00 +00:00
Compare commits
2 Commits
20230224.0
...
restructur
Author | SHA1 | Date | |
---|---|---|---|
![]() |
d60639f99d | ||
![]() |
693b621dd5 |
@@ -1,13 +1,20 @@
|
|||||||
{
|
{
|
||||||
"name": "Home Assistant Frontend",
|
"name": "Home Assistant Frontend",
|
||||||
"build": {
|
"image": "mcr.microsoft.com/devcontainers/python:0-3.10",
|
||||||
"dockerfile": "Dockerfile",
|
|
||||||
"context": ".."
|
|
||||||
},
|
|
||||||
"appPort": "8124:8123",
|
"appPort": "8124:8123",
|
||||||
"postCreateCommand": "script/bootstrap",
|
"postCreateCommand": "script/bootstrap",
|
||||||
"containerEnv": {
|
"containerEnv": {
|
||||||
"WORKSPACE_DIRECTORY": "${containerWorkspaceFolder}"
|
"WORKSPACE_DIRECTORY": "${containerWorkspaceFolder}",
|
||||||
|
"DEVCONTAINER": "true"
|
||||||
|
},
|
||||||
|
"remoteUser": "vscode",
|
||||||
|
"remoteEnv": {
|
||||||
|
"PATH": "${containerEnv:PATH}:${containerWorkspaceFolder}/node_modules/.bin:/home/vscode/.local/bin"
|
||||||
|
},
|
||||||
|
"features": {
|
||||||
|
"ghcr.io/devcontainers/features/node:1": {
|
||||||
|
"version": "16"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"customizations": {
|
"customizations": {
|
||||||
"vscode": {
|
"vscode": {
|
@@ -1,13 +0,0 @@
|
|||||||
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.148.1/containers/python-3/.devcontainer/base.Dockerfile
|
|
||||||
FROM mcr.microsoft.com/vscode/devcontainers/python:0-3.10
|
|
||||||
|
|
||||||
ENV \
|
|
||||||
DEBIAN_FRONTEND=noninteractive \
|
|
||||||
DEVCONTAINER=true \
|
|
||||||
PATH=$PATH:./node_modules/.bin
|
|
||||||
|
|
||||||
# Install nvm
|
|
||||||
COPY .nvmrc /tmp/.nvmrc
|
|
||||||
RUN \
|
|
||||||
su vscode -c \
|
|
||||||
"source /usr/local/share/nvm/nvm.sh && nvm install $(cat /tmp/.nvmrc) 2>&1"
|
|
@@ -5,7 +5,6 @@
|
|||||||
"plugin:@typescript-eslint/recommended",
|
"plugin:@typescript-eslint/recommended",
|
||||||
"plugin:wc/recommended",
|
"plugin:wc/recommended",
|
||||||
"plugin:lit/all",
|
"plugin:lit/all",
|
||||||
"plugin:lit-a11y/recommended",
|
|
||||||
"prettier"
|
"prettier"
|
||||||
],
|
],
|
||||||
"parser": "@typescript-eslint/parser",
|
"parser": "@typescript-eslint/parser",
|
||||||
@@ -59,7 +58,6 @@
|
|||||||
"prefer-destructuring": "off",
|
"prefer-destructuring": "off",
|
||||||
"no-restricted-globals": [2, "event"],
|
"no-restricted-globals": [2, "event"],
|
||||||
"prefer-promise-reject-errors": "off",
|
"prefer-promise-reject-errors": "off",
|
||||||
"no-unsafe-optional-chaining": "warn",
|
|
||||||
"import/prefer-default-export": "off",
|
"import/prefer-default-export": "off",
|
||||||
"import/no-default-export": "off",
|
"import/no-default-export": "off",
|
||||||
"import/no-unresolved": "off",
|
"import/no-unresolved": "off",
|
||||||
@@ -67,10 +65,7 @@
|
|||||||
"import/extensions": [
|
"import/extensions": [
|
||||||
"error",
|
"error",
|
||||||
"ignorePackages",
|
"ignorePackages",
|
||||||
{
|
{ "ts": "never", "js": "never" }
|
||||||
"ts": "never",
|
|
||||||
"js": "never"
|
|
||||||
}
|
|
||||||
],
|
],
|
||||||
"no-restricted-syntax": ["error", "LabeledStatement", "WithStatement"],
|
"no-restricted-syntax": ["error", "LabeledStatement", "WithStatement"],
|
||||||
"object-curly-newline": "off",
|
"object-curly-newline": "off",
|
||||||
@@ -117,15 +112,7 @@
|
|||||||
],
|
],
|
||||||
"unused-imports/no-unused-imports": "error",
|
"unused-imports/no-unused-imports": "error",
|
||||||
"lit/attribute-value-entities": "off",
|
"lit/attribute-value-entities": "off",
|
||||||
"lit/no-template-map": "off",
|
"lit/no-template-map": "off"
|
||||||
"lit/no-native-attributes": "warn",
|
|
||||||
"lit/no-this-assign-in-render": "warn",
|
|
||||||
"lit/prefer-nothing": "warn",
|
|
||||||
"lit-a11y/click-events-have-key-events": ["off"],
|
|
||||||
"lit-a11y/no-autofocus": "off",
|
|
||||||
"lit-a11y/alt-text": "warn",
|
|
||||||
"lit-a11y/anchor-is-valid": "warn",
|
|
||||||
"lit-a11y/role-has-required-aria-attrs": "warn"
|
|
||||||
},
|
},
|
||||||
"plugins": ["disable", "unused-imports"],
|
"plugins": ["disable", "unused-imports"],
|
||||||
"processor": "disable/disable"
|
"processor": "disable/disable"
|
||||||
|
7
.github/dependabot.yml
vendored
7
.github/dependabot.yml
vendored
@@ -10,12 +10,9 @@ updates:
|
|||||||
directory: "/"
|
directory: "/"
|
||||||
schedule:
|
schedule:
|
||||||
interval: "daily"
|
interval: "daily"
|
||||||
time: "03:00"
|
time: "06:00"
|
||||||
open-pull-requests-limit: 10
|
open-pull-requests-limit: 5
|
||||||
labels:
|
|
||||||
- "dependencies"
|
|
||||||
ignore:
|
ignore:
|
||||||
# Ignore rollup and plugins until everything else is updated
|
# Ignore rollup and plugins until everything else is updated
|
||||||
- dependency-name: "*rollup*"
|
- dependency-name: "*rollup*"
|
||||||
- dependency-name: "@rollup/*"
|
- dependency-name: "@rollup/*"
|
||||||
- dependency-name: "serve"
|
|
||||||
|
8
.github/workflows/cast_deployment.yaml
vendored
8
.github/workflows/cast_deployment.yaml
vendored
@@ -33,7 +33,9 @@ jobs:
|
|||||||
cache: yarn
|
cache: yarn
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: yarn install --immutable
|
run: yarn install
|
||||||
|
env:
|
||||||
|
CI: true
|
||||||
|
|
||||||
- name: Build Cast
|
- name: Build Cast
|
||||||
run: ./node_modules/.bin/gulp build-cast
|
run: ./node_modules/.bin/gulp build-cast
|
||||||
@@ -69,7 +71,9 @@ jobs:
|
|||||||
cache: yarn
|
cache: yarn
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: yarn install --immutable
|
run: yarn install
|
||||||
|
env:
|
||||||
|
CI: true
|
||||||
|
|
||||||
- name: Build Cast
|
- name: Build Cast
|
||||||
run: ./node_modules/.bin/gulp build-cast
|
run: ./node_modules/.bin/gulp build-cast
|
||||||
|
34
.github/workflows/ci.yaml
vendored
34
.github/workflows/ci.yaml
vendored
@@ -15,13 +15,8 @@ env:
|
|||||||
NODE_OPTIONS: --max_old_space_size=6144
|
NODE_OPTIONS: --max_old_space_size=6144
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
concurrency:
|
|
||||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
||||||
cancel-in-progress: true
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
lint:
|
lint:
|
||||||
name: Lint and check format
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Check out files from GitHub
|
- name: Check out files from GitHub
|
||||||
@@ -32,19 +27,20 @@ jobs:
|
|||||||
node-version: ${{ env.NODE_VERSION }}
|
node-version: ${{ env.NODE_VERSION }}
|
||||||
cache: yarn
|
cache: yarn
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: yarn install --immutable
|
run: yarn install
|
||||||
- name: Check for duplicate dependencies
|
env:
|
||||||
run: yarn dedupe --check
|
CI: true
|
||||||
- name: Build resources
|
- name: Build resources
|
||||||
run: ./node_modules/.bin/gulp gen-icons-json build-translations build-locale-data gather-gallery-pages
|
run: ./node_modules/.bin/gulp gen-icons-json build-translations build-locale-data gather-gallery-pages
|
||||||
- name: Run eslint
|
- name: Run eslint
|
||||||
run: yarn run lint:eslint --quiet
|
run: yarn run lint:eslint
|
||||||
- name: Run tsc
|
- name: Run tsc
|
||||||
run: yarn run lint:types
|
run: yarn run lint:types
|
||||||
- name: Run prettier
|
- name: Run prettier
|
||||||
run: yarn run lint:prettier
|
run: yarn run lint:prettier
|
||||||
|
- name: Check for duplicate dependencies
|
||||||
|
run: yarn dedupe --check
|
||||||
test:
|
test:
|
||||||
name: Run tests
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Check out files from GitHub
|
- name: Check out files from GitHub
|
||||||
@@ -55,15 +51,16 @@ jobs:
|
|||||||
node-version: ${{ env.NODE_VERSION }}
|
node-version: ${{ env.NODE_VERSION }}
|
||||||
cache: yarn
|
cache: yarn
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: yarn install --immutable
|
run: yarn install
|
||||||
|
env:
|
||||||
|
CI: true
|
||||||
- name: Build resources
|
- name: Build resources
|
||||||
run: ./node_modules/.bin/gulp build-translations build-locale-data
|
run: ./node_modules/.bin/gulp build-translations build-locale-data
|
||||||
- name: Run Tests
|
- name: Run Tests
|
||||||
run: yarn run test
|
run: yarn run test
|
||||||
build:
|
build:
|
||||||
name: Build frontend
|
|
||||||
needs: [lint, test]
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
needs: [lint, test]
|
||||||
steps:
|
steps:
|
||||||
- name: Check out files from GitHub
|
- name: Check out files from GitHub
|
||||||
uses: actions/checkout@v3.3.0
|
uses: actions/checkout@v3.3.0
|
||||||
@@ -73,15 +70,16 @@ jobs:
|
|||||||
node-version: ${{ env.NODE_VERSION }}
|
node-version: ${{ env.NODE_VERSION }}
|
||||||
cache: yarn
|
cache: yarn
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: yarn install --immutable
|
run: yarn install
|
||||||
|
env:
|
||||||
|
CI: true
|
||||||
- name: Build Application
|
- name: Build Application
|
||||||
run: ./node_modules/.bin/gulp build-app
|
run: ./node_modules/.bin/gulp build-app
|
||||||
env:
|
env:
|
||||||
IS_TEST: "true"
|
IS_TEST: "true"
|
||||||
supervisor:
|
supervisor:
|
||||||
name: Build supervisor
|
|
||||||
needs: [lint, test]
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
needs: [lint, test]
|
||||||
steps:
|
steps:
|
||||||
- name: Check out files from GitHub
|
- name: Check out files from GitHub
|
||||||
uses: actions/checkout@v3.3.0
|
uses: actions/checkout@v3.3.0
|
||||||
@@ -91,7 +89,9 @@ jobs:
|
|||||||
node-version: ${{ env.NODE_VERSION }}
|
node-version: ${{ env.NODE_VERSION }}
|
||||||
cache: yarn
|
cache: yarn
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: yarn install --immutable
|
run: yarn install
|
||||||
|
env:
|
||||||
|
CI: true
|
||||||
- name: Build Application
|
- name: Build Application
|
||||||
run: ./node_modules/.bin/gulp build-hassio
|
run: ./node_modules/.bin/gulp build-hassio
|
||||||
env:
|
env:
|
||||||
|
8
.github/workflows/demo_deployment.yaml
vendored
8
.github/workflows/demo_deployment.yaml
vendored
@@ -34,7 +34,9 @@ jobs:
|
|||||||
cache: yarn
|
cache: yarn
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: yarn install --immutable
|
run: yarn install
|
||||||
|
env:
|
||||||
|
CI: true
|
||||||
|
|
||||||
- name: Build Demo
|
- name: Build Demo
|
||||||
run: ./node_modules/.bin/gulp build-demo
|
run: ./node_modules/.bin/gulp build-demo
|
||||||
@@ -70,7 +72,9 @@ jobs:
|
|||||||
cache: yarn
|
cache: yarn
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: yarn install --immutable
|
run: yarn install
|
||||||
|
env:
|
||||||
|
CI: true
|
||||||
|
|
||||||
- name: Build Demo
|
- name: Build Demo
|
||||||
run: ./node_modules/.bin/gulp build-demo
|
run: ./node_modules/.bin/gulp build-demo
|
||||||
|
4
.github/workflows/design_deployment.yaml
vendored
4
.github/workflows/design_deployment.yaml
vendored
@@ -26,7 +26,9 @@ jobs:
|
|||||||
cache: yarn
|
cache: yarn
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: yarn install --immutable
|
run: yarn install
|
||||||
|
env:
|
||||||
|
CI: true
|
||||||
|
|
||||||
- name: Build Gallery
|
- name: Build Gallery
|
||||||
run: ./node_modules/.bin/gulp build-gallery
|
run: ./node_modules/.bin/gulp build-gallery
|
||||||
|
4
.github/workflows/design_preview.yaml
vendored
4
.github/workflows/design_preview.yaml
vendored
@@ -31,7 +31,9 @@ jobs:
|
|||||||
cache: yarn
|
cache: yarn
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: yarn install --immutable
|
run: yarn install
|
||||||
|
env:
|
||||||
|
CI: true
|
||||||
|
|
||||||
- name: Build Gallery
|
- name: Build Gallery
|
||||||
run: ./node_modules/.bin/gulp build-gallery
|
run: ./node_modules/.bin/gulp build-gallery
|
||||||
|
@@ -67,7 +67,7 @@ module.exports.babelOptions = ({ latestBuild }) => ({
|
|||||||
"@babel/preset-env",
|
"@babel/preset-env",
|
||||||
{
|
{
|
||||||
useBuiltIns: "entry",
|
useBuiltIns: "entry",
|
||||||
corejs: { version: "3.28", proposals: true },
|
corejs: "3.15",
|
||||||
bugfixes: true,
|
bugfixes: true,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
@@ -181,7 +181,7 @@ class HcCast extends LitElement {
|
|||||||
private async _handlePickView(ev: Event) {
|
private async _handlePickView(ev: Event) {
|
||||||
const path = (ev.currentTarget as any).getAttribute("data-path");
|
const path = (ev.currentTarget as any).getAttribute("data-path");
|
||||||
await ensureConnectedCastSession(this.castManager!, this.auth!);
|
await ensureConnectedCastSession(this.castManager!, this.auth!);
|
||||||
castSendShowLovelaceView(this.castManager, this.auth.data.hassUrl, path);
|
castSendShowLovelaceView(this.castManager, path, this.auth.data.hassUrl);
|
||||||
}
|
}
|
||||||
|
|
||||||
private async _handleLogout() {
|
private async _handleLogout() {
|
||||||
|
@@ -252,22 +252,6 @@ export class HcMain extends HassElement {
|
|||||||
msg.urlPath = null;
|
msg.urlPath = null;
|
||||||
}
|
}
|
||||||
this._lovelacePath = msg.viewPath;
|
this._lovelacePath = msg.viewPath;
|
||||||
if (msg.urlPath === "energy") {
|
|
||||||
this._lovelaceConfig = {
|
|
||||||
views: [
|
|
||||||
{
|
|
||||||
strategy: {
|
|
||||||
type: "energy",
|
|
||||||
options: { show_date_selection: true },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
],
|
|
||||||
};
|
|
||||||
this._urlPath = "energy";
|
|
||||||
this._lovelacePath = 0;
|
|
||||||
this._sendStatus();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (!this._unsubLovelace || this._urlPath !== msg.urlPath) {
|
if (!this._unsubLovelace || this._urlPath !== msg.urlPath) {
|
||||||
this._urlPath = msg.urlPath;
|
this._urlPath = msg.urlPath;
|
||||||
this._lovelaceConfig = undefined;
|
this._lovelaceConfig = undefined;
|
||||||
|
@@ -6,9 +6,6 @@ set -e
|
|||||||
|
|
||||||
cd "$(dirname "$0")/.."
|
cd "$(dirname "$0")/.."
|
||||||
|
|
||||||
export STATS=1
|
STATS=1 NODE_ENV=production ../node_modules/.bin/webpack --profile --json > compilation-stats.json
|
||||||
statsfile="compilation-stats-demo.json"
|
npx webpack-bundle-analyzer compilation-stats.json dist/frontend_latest
|
||||||
|
rm compilation-stats.json
|
||||||
./node_modules/.bin/webpack-cli --profile --node-env=production --json=$statsfile
|
|
||||||
npx webpack-bundle-analyzer $statsfile dist/frontend_latest
|
|
||||||
rm -f $statsfile
|
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
import "@material/mwc-button";
|
import "@material/mwc-button";
|
||||||
import { css, CSSResultGroup, html, LitElement, TemplateResult } from "lit";
|
import { css, CSSResultGroup, html, LitElement, TemplateResult } from "lit";
|
||||||
import { customElement, property, state } from "lit/decorators";
|
import { property, state } from "lit/decorators";
|
||||||
import { until } from "lit/directives/until";
|
import { until } from "lit/directives/until";
|
||||||
import "../../../src/components/ha-card";
|
import "../../../src/components/ha-card";
|
||||||
import "../../../src/components/ha-circular-progress";
|
import "../../../src/components/ha-circular-progress";
|
||||||
@@ -14,7 +14,6 @@ import {
|
|||||||
setDemoConfig,
|
setDemoConfig,
|
||||||
} from "../configs/demo-configs";
|
} from "../configs/demo-configs";
|
||||||
|
|
||||||
@customElement("ha-demo-card")
|
|
||||||
export class HADemoCard extends LitElement implements LovelaceCard {
|
export class HADemoCard extends LitElement implements LovelaceCard {
|
||||||
@property({ attribute: false }) public lovelace?: Lovelace;
|
@property({ attribute: false }) public lovelace?: Lovelace;
|
||||||
|
|
||||||
@@ -155,3 +154,5 @@ declare global {
|
|||||||
"ha-demo-card": HADemoCard;
|
"ha-demo-card": HADemoCard;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
customElements.define("ha-demo-card", HADemoCard);
|
||||||
|
@@ -1,6 +1,4 @@
|
|||||||
// Compat needs to be first import
|
// Compat needs to be first import
|
||||||
import "../../src/resources/compatibility";
|
|
||||||
import { customElement } from "lit/decorators";
|
|
||||||
import { isNavigationClick } from "../../src/common/dom/is-navigation-click";
|
import { isNavigationClick } from "../../src/common/dom/is-navigation-click";
|
||||||
import { navigate } from "../../src/common/navigate";
|
import { navigate } from "../../src/common/navigate";
|
||||||
import {
|
import {
|
||||||
@@ -8,6 +6,7 @@ import {
|
|||||||
provideHass,
|
provideHass,
|
||||||
} from "../../src/fake_data/provide_hass";
|
} from "../../src/fake_data/provide_hass";
|
||||||
import { HomeAssistantAppEl } from "../../src/layouts/home-assistant";
|
import { HomeAssistantAppEl } from "../../src/layouts/home-assistant";
|
||||||
|
import "../../src/resources/compatibility";
|
||||||
import { HomeAssistant } from "../../src/types";
|
import { HomeAssistant } from "../../src/types";
|
||||||
import { selectedDemoConfig } from "./configs/demo-configs";
|
import { selectedDemoConfig } from "./configs/demo-configs";
|
||||||
import { mockAuth } from "./stubs/auth";
|
import { mockAuth } from "./stubs/auth";
|
||||||
@@ -27,8 +26,7 @@ import { mockSystemLog } from "./stubs/system_log";
|
|||||||
import { mockTemplate } from "./stubs/template";
|
import { mockTemplate } from "./stubs/template";
|
||||||
import { mockTranslations } from "./stubs/translations";
|
import { mockTranslations } from "./stubs/translations";
|
||||||
|
|
||||||
@customElement("ha-demo")
|
class HaDemo extends HomeAssistantAppEl {
|
||||||
export class HaDemo extends HomeAssistantAppEl {
|
|
||||||
protected async _initializeHass() {
|
protected async _initializeHass() {
|
||||||
const initial: Partial<MockHomeAssistant> = {
|
const initial: Partial<MockHomeAssistant> = {
|
||||||
panelUrl: (this as any)._panelUrl,
|
panelUrl: (this as any)._panelUrl,
|
||||||
@@ -73,7 +71,6 @@ export class HaDemo extends HomeAssistantAppEl {
|
|||||||
entity_category: null,
|
entity_category: null,
|
||||||
has_entity_name: false,
|
has_entity_name: false,
|
||||||
unique_id: "co2_intensity",
|
unique_id: "co2_intensity",
|
||||||
options: null,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
config_entry_id: "co2signal",
|
config_entry_id: "co2signal",
|
||||||
@@ -89,7 +86,6 @@ export class HaDemo extends HomeAssistantAppEl {
|
|||||||
entity_category: null,
|
entity_category: null,
|
||||||
has_entity_name: false,
|
has_entity_name: false,
|
||||||
unique_id: "grid_fossil_fuel_percentage",
|
unique_id: "grid_fossil_fuel_percentage",
|
||||||
options: null,
|
|
||||||
},
|
},
|
||||||
]);
|
]);
|
||||||
|
|
||||||
@@ -125,6 +121,8 @@ export class HaDemo extends HomeAssistantAppEl {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
customElements.define("ha-demo", HaDemo);
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLElementTagNameMap {
|
interface HTMLElementTagNameMap {
|
||||||
"ha-demo": HaDemo;
|
"ha-demo": HaDemo;
|
||||||
|
@@ -66,7 +66,7 @@ const incrementalUnits = ["clients", "queries", "ads"];
|
|||||||
|
|
||||||
export const mockHistory = (mockHass: MockHomeAssistant) => {
|
export const mockHistory = (mockHass: MockHomeAssistant) => {
|
||||||
mockHass.mockAPI(
|
mockHass.mockAPI(
|
||||||
/history\/period\/.+/,
|
new RegExp("history/period/.+"),
|
||||||
(hass, _method, path, _parameters) => {
|
(hass, _method, path, _parameters) => {
|
||||||
const params = parseQuery<HistoryQueryParams>(path.split("?")[1]);
|
const params = parseQuery<HistoryQueryParams>(path.split("?")[1]);
|
||||||
const entities = params.filter_entity_id.split(",");
|
const entities = params.filter_entity_id.split(",");
|
||||||
|
@@ -15,7 +15,6 @@ import { MockHomeAssistant } from "../../../src/fake_data/provide_hass";
|
|||||||
const generateMeanStatistics = (
|
const generateMeanStatistics = (
|
||||||
start: Date,
|
start: Date,
|
||||||
end: Date,
|
end: Date,
|
||||||
// eslint-disable-next-line @typescript-eslint/default-param-last
|
|
||||||
period: "5minute" | "hour" | "day" | "month" = "hour",
|
period: "5minute" | "hour" | "day" | "month" = "hour",
|
||||||
initValue: number,
|
initValue: number,
|
||||||
maxDiff: number
|
maxDiff: number
|
||||||
@@ -52,7 +51,6 @@ const generateMeanStatistics = (
|
|||||||
const generateSumStatistics = (
|
const generateSumStatistics = (
|
||||||
start: Date,
|
start: Date,
|
||||||
end: Date,
|
end: Date,
|
||||||
// eslint-disable-next-line @typescript-eslint/default-param-last
|
|
||||||
period: "5minute" | "hour" | "day" | "month" = "hour",
|
period: "5minute" | "hour" | "day" | "month" = "hour",
|
||||||
initValue: number,
|
initValue: number,
|
||||||
maxDiff: number
|
maxDiff: number
|
||||||
@@ -88,7 +86,6 @@ const generateSumStatistics = (
|
|||||||
const generateCurvedStatistics = (
|
const generateCurvedStatistics = (
|
||||||
start: Date,
|
start: Date,
|
||||||
end: Date,
|
end: Date,
|
||||||
// eslint-disable-next-line @typescript-eslint/default-param-last
|
|
||||||
_period: "5minute" | "hour" | "day" | "month" = "hour",
|
_period: "5minute" | "hour" | "day" | "month" = "hour",
|
||||||
initValue: number,
|
initValue: number,
|
||||||
maxDiff: number,
|
maxDiff: number,
|
||||||
|
@@ -136,7 +136,7 @@ export class DemoAutomationDescribeAction extends LitElement {
|
|||||||
<div class="action">
|
<div class="action">
|
||||||
<span>
|
<span>
|
||||||
${this._action
|
${this._action
|
||||||
? describeAction(this.hass, [], this._action)
|
? describeAction(this.hass, this._action)
|
||||||
: "<invalid YAML>"}
|
: "<invalid YAML>"}
|
||||||
</span>
|
</span>
|
||||||
<ha-yaml-editor
|
<ha-yaml-editor
|
||||||
@@ -149,7 +149,7 @@ export class DemoAutomationDescribeAction extends LitElement {
|
|||||||
${ACTIONS.map(
|
${ACTIONS.map(
|
||||||
(conf) => html`
|
(conf) => html`
|
||||||
<div class="action">
|
<div class="action">
|
||||||
<span>${describeAction(this.hass, [], conf as any)}</span>
|
<span>${describeAction(this.hass, conf as any)}</span>
|
||||||
<pre>${dump(conf)}</pre>
|
<pre>${dump(conf)}</pre>
|
||||||
</div>
|
</div>
|
||||||
`
|
`
|
||||||
|
@@ -156,6 +156,18 @@ The `title ` option should not be used without a description.
|
|||||||
|
|
||||||
*Documentation coming soon*
|
*Documentation coming soon*
|
||||||
|
|
||||||
|
**Right to left**
|
||||||
|
|
||||||
|
<ha-alert alert-type="success" rtl>
|
||||||
|
This is an info alert — check it out!
|
||||||
|
</ha-alert>
|
||||||
|
|
||||||
|
```html
|
||||||
|
<ha-alert alert-type="success" rtl>
|
||||||
|
This is an info alert — check it out!
|
||||||
|
</ha-alert>
|
||||||
|
```
|
||||||
|
|
||||||
### API
|
### API
|
||||||
**Properties/Attributes**
|
**Properties/Attributes**
|
||||||
|
|
||||||
|
3
gallery/src/pages/components/ha-bar-slider.markdown
Normal file
3
gallery/src/pages/components/ha-bar-slider.markdown
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
---
|
||||||
|
title: Bar Slider
|
||||||
|
---
|
@@ -2,7 +2,7 @@ import { css, html, LitElement, TemplateResult } from "lit";
|
|||||||
import { customElement, state } from "lit/decorators";
|
import { customElement, state } from "lit/decorators";
|
||||||
import { ifDefined } from "lit/directives/if-defined";
|
import { ifDefined } from "lit/directives/if-defined";
|
||||||
import { repeat } from "lit/directives/repeat";
|
import { repeat } from "lit/directives/repeat";
|
||||||
import "../../../../src/components/ha-control-slider";
|
import "../../../../src/components/ha-bar-slider";
|
||||||
import "../../../../src/components/ha-card";
|
import "../../../../src/components/ha-card";
|
||||||
|
|
||||||
const sliders: {
|
const sliders: {
|
||||||
@@ -46,7 +46,7 @@ const sliders: {
|
|||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
@customElement("demo-components-ha-control-slider")
|
@customElement("demo-components-ha-bar-slider")
|
||||||
export class DemoHaBarSlider extends LitElement {
|
export class DemoHaBarSlider extends LitElement {
|
||||||
@state() private value = 50;
|
@state() private value = 50;
|
||||||
|
|
||||||
@@ -86,7 +86,7 @@ export class DemoHaBarSlider extends LitElement {
|
|||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
<label id=${id}>${label}</label>
|
<label id=${id}>${label}</label>
|
||||||
<pre>Config: ${JSON.stringify(config)}</pre>
|
<pre>Config: ${JSON.stringify(config)}</pre>
|
||||||
<ha-control-slider
|
<ha-bar-slider
|
||||||
.value=${this.value}
|
.value=${this.value}
|
||||||
.mode=${config.mode}
|
.mode=${config.mode}
|
||||||
class=${ifDefined(config.class)}
|
class=${ifDefined(config.class)}
|
||||||
@@ -94,7 +94,7 @@ export class DemoHaBarSlider extends LitElement {
|
|||||||
@slider-moved=${this.handleSliderMoved}
|
@slider-moved=${this.handleSliderMoved}
|
||||||
aria-labelledby=${id}
|
aria-labelledby=${id}
|
||||||
>
|
>
|
||||||
</ha-control-slider>
|
</ha-bar-slider>
|
||||||
</div>
|
</div>
|
||||||
</ha-card>
|
</ha-card>
|
||||||
`;
|
`;
|
||||||
@@ -106,7 +106,7 @@ export class DemoHaBarSlider extends LitElement {
|
|||||||
${repeat(sliders, (slider) => {
|
${repeat(sliders, (slider) => {
|
||||||
const { id, label, ...config } = slider;
|
const { id, label, ...config } = slider;
|
||||||
return html`
|
return html`
|
||||||
<ha-control-slider
|
<ha-bar-slider
|
||||||
.value=${this.value}
|
.value=${this.value}
|
||||||
.mode=${config.mode}
|
.mode=${config.mode}
|
||||||
vertical
|
vertical
|
||||||
@@ -115,7 +115,7 @@ export class DemoHaBarSlider extends LitElement {
|
|||||||
@slider-moved=${this.handleSliderMoved}
|
@slider-moved=${this.handleSliderMoved}
|
||||||
aria-label=${label}
|
aria-label=${label}
|
||||||
>
|
>
|
||||||
</ha-control-slider>
|
</ha-bar-slider>
|
||||||
`;
|
`;
|
||||||
})}
|
})}
|
||||||
</div>
|
</div>
|
||||||
@@ -141,11 +141,11 @@ export class DemoHaBarSlider extends LitElement {
|
|||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
.custom {
|
.custom {
|
||||||
--control-slider-color: #ffcf4c;
|
--slider-bar-color: #ffcf4c;
|
||||||
--control-slider-background: #ffcf4c;
|
--slider-bar-background: #ffcf4c;
|
||||||
--control-slider-background-opacity: 0.2;
|
--slider-bar-background-opacity: 0.2;
|
||||||
--control-slider-thickness: 100px;
|
--slider-bar-thickness: 100px;
|
||||||
--control-slider-border-radius: 24px;
|
--slider-bar-border-radius: 24px;
|
||||||
}
|
}
|
||||||
.vertical-sliders {
|
.vertical-sliders {
|
||||||
height: 300px;
|
height: 300px;
|
||||||
@@ -165,6 +165,6 @@ export class DemoHaBarSlider extends LitElement {
|
|||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLElementTagNameMap {
|
interface HTMLElementTagNameMap {
|
||||||
"demo-components-ha-control-slider": DemoHaBarSlider;
|
"demo-components-ha-bar-slider": DemoHaBarSlider;
|
||||||
}
|
}
|
||||||
}
|
}
|
3
gallery/src/pages/components/ha-bar-switch.markdown
Normal file
3
gallery/src/pages/components/ha-bar-switch.markdown
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
---
|
||||||
|
title: Bar Switch
|
||||||
|
---
|
@@ -8,7 +8,7 @@ import { css, html, LitElement, TemplateResult } from "lit";
|
|||||||
import { customElement, state } from "lit/decorators";
|
import { customElement, state } from "lit/decorators";
|
||||||
import { ifDefined } from "lit/directives/if-defined";
|
import { ifDefined } from "lit/directives/if-defined";
|
||||||
import { repeat } from "lit/directives/repeat";
|
import { repeat } from "lit/directives/repeat";
|
||||||
import "../../../../src/components/ha-control-switch";
|
import "../../../../src/components/ha-bar-switch";
|
||||||
import "../../../../src/components/ha-card";
|
import "../../../../src/components/ha-card";
|
||||||
|
|
||||||
const switches: {
|
const switches: {
|
||||||
@@ -39,8 +39,8 @@ const switches: {
|
|||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
@customElement("demo-components-ha-control-switch")
|
@customElement("demo-components-ha-bar-switch")
|
||||||
export class DemoHaControlSwitch extends LitElement {
|
export class DemoHaBarSwitch extends LitElement {
|
||||||
@state() private checked = false;
|
@state() private checked = false;
|
||||||
|
|
||||||
handleValueChanged(e: any) {
|
handleValueChanged(e: any) {
|
||||||
@@ -56,7 +56,7 @@ export class DemoHaControlSwitch extends LitElement {
|
|||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
<label id=${id}>${label}</label>
|
<label id=${id}>${label}</label>
|
||||||
<pre>Config: ${JSON.stringify(config)}</pre>
|
<pre>Config: ${JSON.stringify(config)}</pre>
|
||||||
<ha-control-switch
|
<ha-bar-switch
|
||||||
.checked=${this.checked}
|
.checked=${this.checked}
|
||||||
class=${ifDefined(config.class)}
|
class=${ifDefined(config.class)}
|
||||||
@change=${this.handleValueChanged}
|
@change=${this.handleValueChanged}
|
||||||
@@ -66,7 +66,7 @@ export class DemoHaControlSwitch extends LitElement {
|
|||||||
disabled=${ifDefined(config.disabled)}
|
disabled=${ifDefined(config.disabled)}
|
||||||
reversed=${ifDefined(config.reversed)}
|
reversed=${ifDefined(config.reversed)}
|
||||||
>
|
>
|
||||||
</ha-control-switch>
|
</ha-bar-switch>
|
||||||
</div>
|
</div>
|
||||||
</ha-card>
|
</ha-card>
|
||||||
`;
|
`;
|
||||||
@@ -78,7 +78,7 @@ export class DemoHaControlSwitch extends LitElement {
|
|||||||
${repeat(switches, (sw) => {
|
${repeat(switches, (sw) => {
|
||||||
const { id, label, ...config } = sw;
|
const { id, label, ...config } = sw;
|
||||||
return html`
|
return html`
|
||||||
<ha-control-switch
|
<ha-bar-switch
|
||||||
.checked=${this.checked}
|
.checked=${this.checked}
|
||||||
vertical
|
vertical
|
||||||
class=${ifDefined(config.class)}
|
class=${ifDefined(config.class)}
|
||||||
@@ -89,7 +89,7 @@ export class DemoHaControlSwitch extends LitElement {
|
|||||||
disabled=${ifDefined(config.disabled)}
|
disabled=${ifDefined(config.disabled)}
|
||||||
reversed=${ifDefined(config.reversed)}
|
reversed=${ifDefined(config.reversed)}
|
||||||
>
|
>
|
||||||
</ha-control-switch>
|
</ha-bar-switch>
|
||||||
`;
|
`;
|
||||||
})}
|
})}
|
||||||
</div>
|
</div>
|
||||||
@@ -115,11 +115,11 @@ export class DemoHaControlSwitch extends LitElement {
|
|||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
.custom {
|
.custom {
|
||||||
--control-switch-on-color: var(--green-color);
|
--switch-bar-on-color: var(--green-color);
|
||||||
--control-switch-off-color: var(--red-color);
|
--switch-bar-off-color: var(--red-color);
|
||||||
--control-switch-thickness: 100px;
|
--switch-bar-thickness: 100px;
|
||||||
--control-switch-border-radius: 24px;
|
--switch-bar-border-radius: 24px;
|
||||||
--control-switch-padding: 6px;
|
--switch-bar-padding: 6px;
|
||||||
--mdc-icon-size: 24px;
|
--mdc-icon-size: 24px;
|
||||||
}
|
}
|
||||||
.vertical-switches {
|
.vertical-switches {
|
||||||
@@ -140,6 +140,6 @@ export class DemoHaControlSwitch extends LitElement {
|
|||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLElementTagNameMap {
|
interface HTMLElementTagNameMap {
|
||||||
"demo-components-ha-control-switch": DemoHaControlSwitch;
|
"demo-components-ha-bar-switch": DemoHaBarSwitch;
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -1,3 +0,0 @@
|
|||||||
---
|
|
||||||
title: Control Button
|
|
||||||
---
|
|
@@ -1,192 +0,0 @@
|
|||||||
import {
|
|
||||||
mdiFanSpeed1,
|
|
||||||
mdiFanSpeed2,
|
|
||||||
mdiFanSpeed3,
|
|
||||||
mdiLightbulb,
|
|
||||||
} from "@mdi/js";
|
|
||||||
import { css, html, LitElement, TemplateResult } from "lit";
|
|
||||||
import { customElement } from "lit/decorators";
|
|
||||||
import { ifDefined } from "lit/directives/if-defined";
|
|
||||||
import { repeat } from "lit/directives/repeat";
|
|
||||||
import "../../../../src/components/ha-control-button";
|
|
||||||
import "../../../../src/components/ha-card";
|
|
||||||
import "../../../../src/components/ha-svg-icon";
|
|
||||||
import "../../../../src/components/ha-control-button-group";
|
|
||||||
|
|
||||||
type Button = {
|
|
||||||
label: string;
|
|
||||||
icon?: string;
|
|
||||||
class?: string;
|
|
||||||
disabled?: boolean;
|
|
||||||
};
|
|
||||||
|
|
||||||
const buttons: Button[] = [
|
|
||||||
{
|
|
||||||
label: "Button",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Button and custom style",
|
|
||||||
class: "custom",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Disabled Button",
|
|
||||||
disabled: true,
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
type ButtonGroup = {
|
|
||||||
vertical?: boolean;
|
|
||||||
class?: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
const buttonGroups: ButtonGroup[] = [
|
|
||||||
{},
|
|
||||||
{
|
|
||||||
class: "custom-group",
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
@customElement("demo-components-ha-control-button")
|
|
||||||
export class DemoHaBarButton extends LitElement {
|
|
||||||
protected render(): TemplateResult {
|
|
||||||
return html`
|
|
||||||
<ha-card>
|
|
||||||
${repeat(
|
|
||||||
buttons,
|
|
||||||
(btn) => html`
|
|
||||||
<div class="card-content">
|
|
||||||
<pre>Config: ${JSON.stringify(btn)}</pre>
|
|
||||||
<ha-control-button
|
|
||||||
class=${ifDefined(btn.class)}
|
|
||||||
label=${ifDefined(btn.label)}
|
|
||||||
disabled=${ifDefined(btn.disabled)}
|
|
||||||
>
|
|
||||||
<ha-svg-icon .path=${btn.icon || mdiLightbulb}></ha-svg-icon>
|
|
||||||
</ha-control-button>
|
|
||||||
</div>
|
|
||||||
`
|
|
||||||
)}
|
|
||||||
</ha-card>
|
|
||||||
|
|
||||||
<ha-card>
|
|
||||||
${repeat(
|
|
||||||
buttonGroups,
|
|
||||||
(group) => html`
|
|
||||||
<div class="card-content">
|
|
||||||
<pre>Config: ${JSON.stringify(group)}</pre>
|
|
||||||
<ha-control-button-group class=${ifDefined(group.class)}>
|
|
||||||
<ha-control-button>
|
|
||||||
<ha-svg-icon
|
|
||||||
.path=${mdiFanSpeed1}
|
|
||||||
label="Speed 1"
|
|
||||||
></ha-svg-icon>
|
|
||||||
</ha-control-button>
|
|
||||||
<ha-control-button>
|
|
||||||
<ha-svg-icon
|
|
||||||
.path=${mdiFanSpeed2}
|
|
||||||
label="Speed 2"
|
|
||||||
></ha-svg-icon>
|
|
||||||
</ha-control-button>
|
|
||||||
<ha-control-button>
|
|
||||||
<ha-svg-icon
|
|
||||||
.path=${mdiFanSpeed3}
|
|
||||||
label="Speed 3"
|
|
||||||
></ha-svg-icon>
|
|
||||||
</ha-control-button>
|
|
||||||
</ha-control-button-group>
|
|
||||||
</div>
|
|
||||||
`
|
|
||||||
)}
|
|
||||||
</ha-card>
|
|
||||||
<ha-card>
|
|
||||||
<div class="card-content">
|
|
||||||
<p class="title"><b>Vertical</b></p>
|
|
||||||
<div class="vertical-buttons">
|
|
||||||
${repeat(
|
|
||||||
buttonGroups,
|
|
||||||
(group) => html`
|
|
||||||
<ha-control-button-group
|
|
||||||
vertical
|
|
||||||
class=${ifDefined(group.class)}
|
|
||||||
>
|
|
||||||
<ha-control-button>
|
|
||||||
<ha-svg-icon
|
|
||||||
.path=${mdiFanSpeed1}
|
|
||||||
label="Speed 1"
|
|
||||||
></ha-svg-icon>
|
|
||||||
</ha-control-button>
|
|
||||||
<ha-control-button>
|
|
||||||
<ha-svg-icon
|
|
||||||
.path=${mdiFanSpeed2}
|
|
||||||
label="Speed 2"
|
|
||||||
></ha-svg-icon>
|
|
||||||
</ha-control-button>
|
|
||||||
<ha-control-button>
|
|
||||||
<ha-svg-icon
|
|
||||||
.path=${mdiFanSpeed3}
|
|
||||||
label="Speed 3"
|
|
||||||
></ha-svg-icon>
|
|
||||||
</ha-control-button>
|
|
||||||
</ha-control-button-group>
|
|
||||||
`
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</ha-card>
|
|
||||||
`;
|
|
||||||
}
|
|
||||||
|
|
||||||
static get styles() {
|
|
||||||
return css`
|
|
||||||
ha-card {
|
|
||||||
max-width: 600px;
|
|
||||||
margin: 24px auto;
|
|
||||||
}
|
|
||||||
pre {
|
|
||||||
margin-top: 0;
|
|
||||||
margin-bottom: 8px;
|
|
||||||
}
|
|
||||||
p {
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
label {
|
|
||||||
font-weight: 600;
|
|
||||||
}
|
|
||||||
.custom {
|
|
||||||
--control-button-icon-color: var(--primary-color);
|
|
||||||
--control-button-background-color: var(--primary-color);
|
|
||||||
--control-button-background-opacity: 0.2;
|
|
||||||
--control-button-border-radius: 18px;
|
|
||||||
height: 100px;
|
|
||||||
width: 100px;
|
|
||||||
}
|
|
||||||
.custom-group {
|
|
||||||
--control-button-group-thickness: 100px;
|
|
||||||
--control-button-group-border-radius: 18px;
|
|
||||||
--control-button-group-spacing: 20px;
|
|
||||||
}
|
|
||||||
.custom-group ha-control-button {
|
|
||||||
--control-button-border-radius: 18px;
|
|
||||||
--mdc-icon-size: 32px;
|
|
||||||
}
|
|
||||||
.vertical-buttons {
|
|
||||||
height: 300px;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
justify-content: space-between;
|
|
||||||
}
|
|
||||||
p.title {
|
|
||||||
margin-bottom: 12px;
|
|
||||||
}
|
|
||||||
.vertical-switches > *:not(:last-child) {
|
|
||||||
margin-right: 4px;
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
declare global {
|
|
||||||
interface HTMLElementTagNameMap {
|
|
||||||
"demo-components-ha-control-button": DemoHaBarButton;
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,3 +0,0 @@
|
|||||||
---
|
|
||||||
title: Control Slider
|
|
||||||
---
|
|
@@ -1,3 +0,0 @@
|
|||||||
---
|
|
||||||
title: Control Switch
|
|
||||||
---
|
|
@@ -3,7 +3,6 @@ import { customElement } from "lit/decorators";
|
|||||||
import "../../../../src/components/ha-tip";
|
import "../../../../src/components/ha-tip";
|
||||||
import "../../../../src/components/ha-card";
|
import "../../../../src/components/ha-card";
|
||||||
import { applyThemesOnElement } from "../../../../src/common/dom/apply_themes_on_element";
|
import { applyThemesOnElement } from "../../../../src/common/dom/apply_themes_on_element";
|
||||||
import { provideHass } from "../../../../src/fake_data/provide_hass";
|
|
||||||
|
|
||||||
const tips: (string | TemplateResult)[] = [
|
const tips: (string | TemplateResult)[] = [
|
||||||
"Test tip",
|
"Test tip",
|
||||||
@@ -19,11 +18,7 @@ export class DemoHaTip extends LitElement {
|
|||||||
<div class=${mode}>
|
<div class=${mode}>
|
||||||
<ha-card header="ha-tip ${mode} demo">
|
<ha-card header="ha-tip ${mode} demo">
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
${tips.map(
|
${tips.map((tip) => html`<ha-tip>${tip}</ha-tip>`)}
|
||||||
(tip) => html`<ha-tip .hass=${provideHass(this)}
|
|
||||||
>${tip}</ha-tip
|
|
||||||
>`
|
|
||||||
)}
|
|
||||||
</div>
|
</div>
|
||||||
</ha-card>
|
</ha-card>
|
||||||
</div>
|
</div>
|
||||||
|
@@ -1,3 +0,0 @@
|
|||||||
---
|
|
||||||
title: Tile Card
|
|
||||||
---
|
|
@@ -1,173 +0,0 @@
|
|||||||
import { html, LitElement, PropertyValues, TemplateResult } from "lit";
|
|
||||||
import { customElement, query } from "lit/decorators";
|
|
||||||
import { CoverEntityFeature } from "../../../../src/data/cover";
|
|
||||||
import { LightColorMode } from "../../../../src/data/light";
|
|
||||||
import { VacuumEntityFeature } from "../../../../src/data/vacuum";
|
|
||||||
import { getEntity } from "../../../../src/fake_data/entity";
|
|
||||||
import { provideHass } from "../../../../src/fake_data/provide_hass";
|
|
||||||
import "../../components/demo-cards";
|
|
||||||
|
|
||||||
const ENTITIES = [
|
|
||||||
getEntity("switch", "tv_outlet", "on", {
|
|
||||||
friendly_name: "TV outlet",
|
|
||||||
device_class: "outlet",
|
|
||||||
}),
|
|
||||||
getEntity("light", "bed_light", "on", {
|
|
||||||
friendly_name: "Bed Light",
|
|
||||||
supported_color_modes: [LightColorMode.HS],
|
|
||||||
}),
|
|
||||||
getEntity("light", "unavailable", "unavailable", {
|
|
||||||
friendly_name: "Unavailable entity",
|
|
||||||
}),
|
|
||||||
getEntity("climate", "thermostat", "heat", {
|
|
||||||
current_temperature: 73,
|
|
||||||
min_temp: 45,
|
|
||||||
max_temp: 95,
|
|
||||||
temperature: 80,
|
|
||||||
hvac_modes: ["heat", "cool", "auto", "off"],
|
|
||||||
friendly_name: "Thermostat",
|
|
||||||
hvac_action: "heating",
|
|
||||||
}),
|
|
||||||
getEntity("person", "paulus", "home", {
|
|
||||||
friendly_name: "Paulus",
|
|
||||||
}),
|
|
||||||
getEntity("vacuum", "first_floor_vacuum", "docked", {
|
|
||||||
friendly_name: "First floor vacuum",
|
|
||||||
supported_features:
|
|
||||||
VacuumEntityFeature.START +
|
|
||||||
VacuumEntityFeature.STOP +
|
|
||||||
VacuumEntityFeature.RETURN_HOME,
|
|
||||||
}),
|
|
||||||
getEntity("cover", "kitchen_shutter", "open", {
|
|
||||||
friendly_name: "Kitchen shutter",
|
|
||||||
device_class: "shutter",
|
|
||||||
supported_features:
|
|
||||||
CoverEntityFeature.CLOSE +
|
|
||||||
CoverEntityFeature.OPEN +
|
|
||||||
CoverEntityFeature.STOP,
|
|
||||||
}),
|
|
||||||
getEntity("cover", "pergola_roof", "open", {
|
|
||||||
friendly_name: "Pergola Roof",
|
|
||||||
supported_features:
|
|
||||||
CoverEntityFeature.CLOSE_TILT +
|
|
||||||
CoverEntityFeature.OPEN_TILT +
|
|
||||||
CoverEntityFeature.STOP_TILT,
|
|
||||||
}),
|
|
||||||
];
|
|
||||||
|
|
||||||
const CONFIGS = [
|
|
||||||
{
|
|
||||||
heading: "Basic example",
|
|
||||||
config: `
|
|
||||||
- type: tile
|
|
||||||
entity: switch.tv_outlet
|
|
||||||
`,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
heading: "Vertical example",
|
|
||||||
config: `
|
|
||||||
- type: tile
|
|
||||||
entity: switch.tv_outlet
|
|
||||||
vertical: true
|
|
||||||
`,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
heading: "Custom color",
|
|
||||||
config: `
|
|
||||||
- type: tile
|
|
||||||
entity: switch.tv_outlet
|
|
||||||
color: pink
|
|
||||||
`,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
heading: "Unknown entity",
|
|
||||||
config: `
|
|
||||||
- type: tile
|
|
||||||
entity: light.unknown
|
|
||||||
`,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
heading: "Unavailable entity",
|
|
||||||
config: `
|
|
||||||
- type: tile
|
|
||||||
entity: light.unavailable
|
|
||||||
`,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
heading: "Climate",
|
|
||||||
config: `
|
|
||||||
- type: tile
|
|
||||||
entity: climate.thermostat
|
|
||||||
`,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
heading: "Person",
|
|
||||||
config: `
|
|
||||||
- type: tile
|
|
||||||
entity: person.paulus
|
|
||||||
`,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
heading: "Light brightness feature",
|
|
||||||
config: `
|
|
||||||
- type: tile
|
|
||||||
entity: light.bed_light
|
|
||||||
features:
|
|
||||||
- type: "light-brightness"
|
|
||||||
`,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
heading: "Vacuum commands feature",
|
|
||||||
config: `
|
|
||||||
- type: tile
|
|
||||||
entity: vacuum.first_floor_vacuum
|
|
||||||
features:
|
|
||||||
- type: "vacuum-commands"
|
|
||||||
commands:
|
|
||||||
- start_pause
|
|
||||||
- stop
|
|
||||||
- return_home
|
|
||||||
`,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
heading: "Cover open close feature",
|
|
||||||
config: `
|
|
||||||
- type: tile
|
|
||||||
entity: cover.kitchen_shutter
|
|
||||||
features:
|
|
||||||
- type: "cover-open-close"
|
|
||||||
`,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
heading: "Cover tilt feature",
|
|
||||||
config: `
|
|
||||||
- type: tile
|
|
||||||
entity: cover.pergola_roof
|
|
||||||
features:
|
|
||||||
- type: "cover-tilt"
|
|
||||||
`,
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
@customElement("demo-lovelace-tile-card")
|
|
||||||
class DemoTile extends LitElement {
|
|
||||||
@query("#demos") private _demoRoot!: HTMLElement;
|
|
||||||
|
|
||||||
protected render(): TemplateResult {
|
|
||||||
return html`<demo-cards id="demos" .configs=${CONFIGS}></demo-cards>`;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected firstUpdated(changedProperties: PropertyValues) {
|
|
||||||
super.firstUpdated(changedProperties);
|
|
||||||
const hass = provideHass(this._demoRoot);
|
|
||||||
hass.updateTranslations(null, "en");
|
|
||||||
hass.updateTranslations("lovelace", "en");
|
|
||||||
hass.addEntities(ENTITIES);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
declare global {
|
|
||||||
interface HTMLElementTagNameMap {
|
|
||||||
"demo-lovelace-tile-card": DemoTile;
|
|
||||||
}
|
|
||||||
}
|
|
@@ -197,7 +197,6 @@ const createEntityRegistryEntries = (
|
|||||||
platform: "updater",
|
platform: "updater",
|
||||||
has_entity_name: false,
|
has_entity_name: false,
|
||||||
unique_id: "updater",
|
unique_id: "updater",
|
||||||
options: null,
|
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
import { mdiArrowUpBoldCircle, mdiPuzzle } from "@mdi/js";
|
import { mdiArrowUpBoldCircle, mdiPuzzle } from "@mdi/js";
|
||||||
import { css, CSSResultGroup, html, LitElement, TemplateResult } from "lit";
|
import { css, CSSResultGroup, html, LitElement, TemplateResult } from "lit";
|
||||||
import { customElement, property } from "lit/decorators";
|
import { property } from "lit/decorators";
|
||||||
import memoizeOne from "memoize-one";
|
import memoizeOne from "memoize-one";
|
||||||
import { atLeastVersion } from "../../../src/common/config/version";
|
import { atLeastVersion } from "../../../src/common/config/version";
|
||||||
import { navigate } from "../../../src/common/navigate";
|
import { navigate } from "../../../src/common/navigate";
|
||||||
@@ -14,8 +14,7 @@ import "../components/hassio-card-content";
|
|||||||
import { filterAndSort } from "../components/hassio-filter-addons";
|
import { filterAndSort } from "../components/hassio-filter-addons";
|
||||||
import { hassioStyle } from "../resources/hassio-style";
|
import { hassioStyle } from "../resources/hassio-style";
|
||||||
|
|
||||||
@customElement("hassio-addon-repository")
|
class HassioAddonRepositoryEl extends LitElement {
|
||||||
export class HassioAddonRepositoryEl extends LitElement {
|
|
||||||
@property({ attribute: false }) public hass!: HomeAssistant;
|
@property({ attribute: false }) public hass!: HomeAssistant;
|
||||||
|
|
||||||
@property({ attribute: false }) public supervisor!: Supervisor;
|
@property({ attribute: false }) public supervisor!: Supervisor;
|
||||||
@@ -141,3 +140,5 @@ export class HassioAddonRepositoryEl extends LitElement {
|
|||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
customElements.define("hassio-addon-repository", HassioAddonRepositoryEl);
|
||||||
|
@@ -9,7 +9,7 @@ import {
|
|||||||
PropertyValues,
|
PropertyValues,
|
||||||
TemplateResult,
|
TemplateResult,
|
||||||
} from "lit";
|
} from "lit";
|
||||||
import { customElement, property, state } from "lit/decorators";
|
import { property, state } from "lit/decorators";
|
||||||
import memoizeOne from "memoize-one";
|
import memoizeOne from "memoize-one";
|
||||||
import { atLeastVersion } from "../../../src/common/config/version";
|
import { atLeastVersion } from "../../../src/common/config/version";
|
||||||
import { fireEvent } from "../../../src/common/dom/fire_event";
|
import { fireEvent } from "../../../src/common/dom/fire_event";
|
||||||
@@ -49,8 +49,7 @@ const sortRepos = (a: HassioAddonRepository, b: HassioAddonRepository) => {
|
|||||||
return a.name.toUpperCase() < b.name.toUpperCase() ? -1 : 1;
|
return a.name.toUpperCase() < b.name.toUpperCase() ? -1 : 1;
|
||||||
};
|
};
|
||||||
|
|
||||||
@customElement("hassio-addon-store")
|
class HassioAddonStore extends LitElement {
|
||||||
export class HassioAddonStore extends LitElement {
|
|
||||||
@property({ attribute: false }) public hass!: HomeAssistant;
|
@property({ attribute: false }) public hass!: HomeAssistant;
|
||||||
|
|
||||||
@property({ attribute: false }) public supervisor!: Supervisor;
|
@property({ attribute: false }) public supervisor!: Supervisor;
|
||||||
@@ -251,3 +250,5 @@ export class HassioAddonStore extends LitElement {
|
|||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
customElements.define("hassio-addon-store", HassioAddonStore);
|
||||||
|
@@ -17,6 +17,7 @@ import "../../../../src/components/ha-formfield";
|
|||||||
import "../../../../src/components/ha-header-bar";
|
import "../../../../src/components/ha-header-bar";
|
||||||
import "../../../../src/components/ha-icon-button";
|
import "../../../../src/components/ha-icon-button";
|
||||||
import "../../../../src/components/ha-radio";
|
import "../../../../src/components/ha-radio";
|
||||||
|
import "../../../../src/components/ha-related-items";
|
||||||
import { extractApiErrorMessage } from "../../../../src/data/hassio/common";
|
import { extractApiErrorMessage } from "../../../../src/data/hassio/common";
|
||||||
import {
|
import {
|
||||||
AccessPoints,
|
AccessPoints,
|
||||||
@@ -137,10 +138,7 @@ export class DialogHassioNetwork
|
|||||||
)}
|
)}
|
||||||
${this._interface?.type === "wireless"
|
${this._interface?.type === "wireless"
|
||||||
? html`
|
? html`
|
||||||
<ha-expansion-panel
|
<ha-expansion-panel header="Wi-Fi" outlined>
|
||||||
.header=${this.supervisor.localize("dialog.network.wifi")}
|
|
||||||
outlined
|
|
||||||
>
|
|
||||||
${this._interface?.wifi?.ssid
|
${this._interface?.wifi?.ssid
|
||||||
? html`<p>
|
? html`<p>
|
||||||
${this.supervisor.localize(
|
${this.supervisor.localize(
|
||||||
@@ -179,11 +177,7 @@ export class DialogHassioNetwork
|
|||||||
>
|
>
|
||||||
<span>${ap.ssid}</span>
|
<span>${ap.ssid}</span>
|
||||||
<span slot="secondary">
|
<span slot="secondary">
|
||||||
${ap.mac} -
|
${ap.mac} - Strength: ${ap.signal}
|
||||||
${this.supervisor.localize(
|
|
||||||
"dialog.network.signal_strength"
|
|
||||||
)}:
|
|
||||||
${ap.signal}
|
|
||||||
</span>
|
</span>
|
||||||
</mwc-list-item>
|
</mwc-list-item>
|
||||||
`
|
`
|
||||||
@@ -247,9 +241,7 @@ export class DialogHassioNetwork
|
|||||||
class="flex-auto"
|
class="flex-auto"
|
||||||
type="password"
|
type="password"
|
||||||
id="psk"
|
id="psk"
|
||||||
.label=${this.supervisor.localize(
|
label="Password"
|
||||||
"dialog.network.wifi_password"
|
|
||||||
)}
|
|
||||||
version="wifi"
|
version="wifi"
|
||||||
@value-changed=${this
|
@value-changed=${this
|
||||||
._handleInputValueChangedWifi}
|
._handleInputValueChangedWifi}
|
||||||
|
@@ -5,5 +5,5 @@ module.exports = {
|
|||||||
'printf "%s\n" "Translation files should not be added or modified here. Instead, make the necessary modifications in src/translations/en.json. Other languages are managed externally. Please see https://developers.home-assistant.io/docs/translations/ for details." ' +
|
'printf "%s\n" "Translation files should not be added or modified here. Instead, make the necessary modifications in src/translations/en.json. Other languages are managed externally. Please see https://developers.home-assistant.io/docs/translations/ for details." ' +
|
||||||
files.join(" ") +
|
files.join(" ") +
|
||||||
" >&2 && exit 1",
|
" >&2 && exit 1",
|
||||||
"yarn.lock": () => "yarn dedupe",
|
"/yarn.lock": () => "yarn dedupe",
|
||||||
};
|
};
|
||||||
|
166
package.json
166
package.json
@@ -24,26 +24,26 @@
|
|||||||
"author": "Paulus Schoutsen <Paulus@PaulusSchoutsen.nl> (http://paulusschoutsen.nl)",
|
"author": "Paulus Schoutsen <Paulus@PaulusSchoutsen.nl> (http://paulusschoutsen.nl)",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@braintree/sanitize-url": "^6.0.2",
|
"@braintree/sanitize-url": "^6.0.0",
|
||||||
"@codemirror/autocomplete": "^6.4.2",
|
"@codemirror/autocomplete": "^6.4.0",
|
||||||
"@codemirror/commands": "^6.2.1",
|
"@codemirror/commands": "^6.1.3",
|
||||||
"@codemirror/language": "^6.6.0",
|
"@codemirror/language": "^6.4.0",
|
||||||
"@codemirror/legacy-modes": "^6.3.1",
|
"@codemirror/legacy-modes": "^6.3.1",
|
||||||
"@codemirror/search": "^6.2.3",
|
"@codemirror/search": "^6.2.3",
|
||||||
"@codemirror/state": "^6.2.0",
|
"@codemirror/state": "^6.2.0",
|
||||||
"@codemirror/view": "^6.9.1",
|
"@codemirror/view": "^6.7.1",
|
||||||
"@egjs/hammerjs": "^2.0.17",
|
"@formatjs/intl-datetimeformat": "^4.2.5",
|
||||||
"@formatjs/intl-datetimeformat": "^6.5.1",
|
"@formatjs/intl-getcanonicallocales": "^2.0.5",
|
||||||
"@formatjs/intl-getcanonicallocales": "^2.1.0",
|
"@formatjs/intl-locale": "^3.0.11",
|
||||||
"@formatjs/intl-locale": "^3.1.1",
|
"@formatjs/intl-numberformat": "^7.2.5",
|
||||||
"@formatjs/intl-numberformat": "^8.3.5",
|
"@formatjs/intl-pluralrules": "^4.1.5",
|
||||||
"@formatjs/intl-pluralrules": "^5.1.10",
|
"@formatjs/intl-relativetimeformat": "^9.3.2",
|
||||||
"@formatjs/intl-relativetimeformat": "^11.1.10",
|
"@fullcalendar/common": "5.9.0",
|
||||||
"@fullcalendar/core": "^6.1.4",
|
"@fullcalendar/core": "5.9.0",
|
||||||
"@fullcalendar/daygrid": "^6.1.4",
|
"@fullcalendar/daygrid": "5.9.0",
|
||||||
"@fullcalendar/interaction": "^6.1.4",
|
"@fullcalendar/interaction": "5.9.0",
|
||||||
"@fullcalendar/list": "^6.1.4",
|
"@fullcalendar/list": "5.9.0",
|
||||||
"@fullcalendar/timegrid": "^6.1.4",
|
"@fullcalendar/timegrid": "5.9.0",
|
||||||
"@lezer/highlight": "^1.1.3",
|
"@lezer/highlight": "^1.1.3",
|
||||||
"@lit-labs/motion": "^1.0.3",
|
"@lit-labs/motion": "^1.0.3",
|
||||||
"@lit-labs/virtualizer": "^1.0.1",
|
"@lit-labs/virtualizer": "^1.0.1",
|
||||||
@@ -71,7 +71,6 @@
|
|||||||
"@material/mwc-textfield": "^0.27.0",
|
"@material/mwc-textfield": "^0.27.0",
|
||||||
"@material/mwc-top-app-bar-fixed": "^0.27.0",
|
"@material/mwc-top-app-bar-fixed": "^0.27.0",
|
||||||
"@material/top-app-bar": "=14.0.0-canary.53b3cad2f.0",
|
"@material/top-app-bar": "=14.0.0-canary.53b3cad2f.0",
|
||||||
"@material/web": "=1.0.0-pre.3",
|
|
||||||
"@mdi/js": "7.1.96",
|
"@mdi/js": "7.1.96",
|
||||||
"@mdi/svg": "7.1.96",
|
"@mdi/svg": "7.1.96",
|
||||||
"@polymer/app-layout": "^3.1.0",
|
"@polymer/app-layout": "^3.1.0",
|
||||||
@@ -89,54 +88,54 @@
|
|||||||
"@polymer/paper-tooltip": "^3.0.1",
|
"@polymer/paper-tooltip": "^3.0.1",
|
||||||
"@polymer/polymer": "3.4.1",
|
"@polymer/polymer": "3.4.1",
|
||||||
"@thomasloven/round-slider": "0.6.0",
|
"@thomasloven/round-slider": "0.6.0",
|
||||||
"@vaadin/combo-box": "^23.3.7",
|
"@vaadin/combo-box": "^23.3.5",
|
||||||
"@vaadin/vaadin-themable-mixin": "^23.3.7",
|
"@vaadin/vaadin-themable-mixin": "^23.3.5",
|
||||||
"@vibrant/color": "^3.2.1-alpha.1",
|
"@vibrant/color": "^3.2.1-alpha.1",
|
||||||
"@vibrant/core": "^3.2.1-alpha.1",
|
"@vibrant/core": "^3.2.1-alpha.1",
|
||||||
"@vibrant/quantizer-mmcq": "^3.2.1-alpha.1",
|
"@vibrant/quantizer-mmcq": "^3.2.1-alpha.1",
|
||||||
"@vue/web-component-wrapper": "^1.3.0",
|
"@vue/web-component-wrapper": "^1.3.0",
|
||||||
"@webcomponents/scoped-custom-element-registry": "^0.0.8",
|
"@webcomponents/scoped-custom-element-registry": "^0.0.5",
|
||||||
"@webcomponents/webcomponentsjs": "^2.7.0",
|
"@webcomponents/webcomponentsjs": "^2.2.10",
|
||||||
"app-datepicker": "^5.1.0",
|
"app-datepicker": "^5.1.0",
|
||||||
"chart.js": "^3.3.2",
|
"chart.js": "^3.3.2",
|
||||||
"comlink": "^4.4.1",
|
"comlink": "^4.3.1",
|
||||||
"core-js": "^3.28.0",
|
"core-js": "^3.15.2",
|
||||||
"cropperjs": "^1.5.13",
|
"cropperjs": "^1.5.13",
|
||||||
"date-fns": "^2.29.3",
|
"date-fns": "^2.29.3",
|
||||||
"date-fns-tz": "^2.0.0",
|
"date-fns-tz": "^1.3.7",
|
||||||
"deep-clone-simple": "^1.1.1",
|
"deep-clone-simple": "^1.1.1",
|
||||||
"deep-freeze": "^0.0.1",
|
"deep-freeze": "^0.0.1",
|
||||||
"fuse.js": "^6.6.2",
|
"fuse.js": "^6.6.2",
|
||||||
"google-timezones-json": "^1.0.2",
|
"google-timezones-json": "^1.0.2",
|
||||||
"hls.js": "^1.3.3",
|
"hammerjs": "^2.0.8",
|
||||||
|
"hls.js": "^1.3.1",
|
||||||
"home-assistant-js-websocket": "^8.0.1",
|
"home-assistant-js-websocket": "^8.0.1",
|
||||||
"idb-keyval": "^6.2.0",
|
"idb-keyval": "^5.1.3",
|
||||||
"intl-messageformat": "^10.3.1",
|
"intl-messageformat": "^10.2.5",
|
||||||
"js-yaml": "^4.1.0",
|
"js-yaml": "^4.1.0",
|
||||||
"leaflet": "^1.9.3",
|
"leaflet": "^1.7.1",
|
||||||
"leaflet-draw": "^1.0.4",
|
"leaflet-draw": "^1.0.4",
|
||||||
"lit": "^2.6.1",
|
"lit": "^2.6.1",
|
||||||
"marked": "^4.2.12",
|
"marked": "^4.0.12",
|
||||||
"memoize-one": "^6.0.0",
|
"memoize-one": "^6.0.0",
|
||||||
"node-vibrant": "3.2.1-alpha.1",
|
"node-vibrant": "3.2.1-alpha.1",
|
||||||
"proxy-polyfill": "^0.3.2",
|
"proxy-polyfill": "^0.3.2",
|
||||||
"punycode": "^2.3.0",
|
"punycode": "^2.3.0",
|
||||||
"qr-scanner": "^1.4.2",
|
"qr-scanner": "^1.3.0",
|
||||||
"qrcode": "^1.5.1",
|
"qrcode": "^1.5.1",
|
||||||
"regenerator-runtime": "^0.13.11",
|
"regenerator-runtime": "^0.13.11",
|
||||||
"resize-observer-polyfill": "^1.5.1",
|
"resize-observer-polyfill": "^1.5.1",
|
||||||
"roboto-fontface": "^0.10.0",
|
"roboto-fontface": "^0.10.0",
|
||||||
"rrule": "^2.7.2",
|
"rrule": "^2.7.1",
|
||||||
"sortablejs": "^1.15.0",
|
"sortablejs": "^1.14.0",
|
||||||
"superstruct": "^1.0.3",
|
"superstruct": "^1.0.3",
|
||||||
"tinykeys": "^1.4.0",
|
"tinykeys": "^1.1.3",
|
||||||
"tsparticles-engine": "^2.9.3",
|
"tsparticles": "^1.34.0",
|
||||||
"tsparticles-preset-links": "^2.9.3",
|
"unfetch": "^4.1.0",
|
||||||
"unfetch": "^5.0.0",
|
"vis-data": "^7.1.2",
|
||||||
"vis-data": "^7.1.4",
|
"vis-network": "^8.5.4",
|
||||||
"vis-network": "^9.1.2",
|
"vue": "^2.6.12",
|
||||||
"vue": "^2.7.14",
|
"vue2-daterange-picker": "^0.5.1",
|
||||||
"vue2-daterange-picker": "^0.6.8",
|
|
||||||
"weekstart": "^1.1.0",
|
"weekstart": "^1.1.0",
|
||||||
"workbox-cacheable-response": "^6.5.4",
|
"workbox-cacheable-response": "^6.5.4",
|
||||||
"workbox-core": "^6.5.4",
|
"workbox-core": "^6.5.4",
|
||||||
@@ -147,83 +146,81 @@
|
|||||||
"xss": "^1.0.14"
|
"xss": "^1.0.14"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/core": "^7.21.0",
|
"@babel/core": "^7.20.2",
|
||||||
"@babel/plugin-external-helpers": "^7.18.6",
|
"@babel/plugin-external-helpers": "^7.18.6",
|
||||||
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
||||||
"@babel/plugin-proposal-decorators": "^7.21.0",
|
"@babel/plugin-proposal-decorators": "^7.20.7",
|
||||||
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
|
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
|
||||||
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
|
"@babel/plugin-proposal-object-rest-spread": "^7.20.2",
|
||||||
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
|
"@babel/plugin-proposal-optional-chaining": "^7.18.9",
|
||||||
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
||||||
"@babel/plugin-syntax-import-meta": "^7.10.4",
|
"@babel/plugin-syntax-import-meta": "^7.10.4",
|
||||||
"@babel/plugin-syntax-top-level-await": "^7.14.5",
|
"@babel/plugin-syntax-top-level-await": "^7.14.5",
|
||||||
"@babel/preset-env": "^7.20.2",
|
"@babel/preset-env": "^7.20.2",
|
||||||
"@babel/preset-typescript": "^7.21.0",
|
"@babel/preset-typescript": "^7.18.6",
|
||||||
"@koa/cors": "^4.0.0",
|
"@koa/cors": "^3.1.0",
|
||||||
"@octokit/auth-oauth-device": "^4.0.4",
|
"@octokit/auth-oauth-device": "^4.0.2",
|
||||||
"@octokit/rest": "^19.0.7",
|
"@octokit/rest": "^19.0.7",
|
||||||
"@open-wc/dev-server-hmr": "^0.1.3",
|
"@open-wc/dev-server-hmr": "^0.0.2",
|
||||||
"@rollup/plugin-babel": "^5.2.1",
|
"@rollup/plugin-babel": "^5.2.1",
|
||||||
"@rollup/plugin-commonjs": "^11.1.0",
|
"@rollup/plugin-commonjs": "^11.1.0",
|
||||||
"@rollup/plugin-json": "^4.0.3",
|
"@rollup/plugin-json": "^4.0.3",
|
||||||
"@rollup/plugin-node-resolve": "^7.1.3",
|
"@rollup/plugin-node-resolve": "^7.1.3",
|
||||||
"@rollup/plugin-replace": "^2.3.2",
|
"@rollup/plugin-replace": "^2.3.2",
|
||||||
"@types/chromecast-caf-receiver": "5.0.12",
|
"@types/chromecast-caf-receiver": "5.0.12",
|
||||||
"@types/chromecast-caf-sender": "^1.0.5",
|
"@types/chromecast-caf-sender": "^1.0.3",
|
||||||
"@types/esprima": "^4",
|
|
||||||
"@types/glob": "^8",
|
"@types/glob": "^8",
|
||||||
|
"@types/hammerjs": "^2.0.41",
|
||||||
"@types/js-yaml": "^4",
|
"@types/js-yaml": "^4",
|
||||||
"@types/leaflet": "^1",
|
"@types/leaflet": "^1",
|
||||||
"@types/leaflet-draw": "^1",
|
"@types/leaflet-draw": "^1",
|
||||||
"@types/marked": "^4",
|
"@types/marked": "^4",
|
||||||
"@types/mocha": "^10",
|
"@types/mocha": "^8",
|
||||||
"@types/qrcode": "^1.5.0",
|
"@types/qrcode": "^1.5.0",
|
||||||
"@types/sortablejs": "^1",
|
"@types/sortablejs": "^1",
|
||||||
"@types/tar": "^6",
|
"@types/tar": "^6",
|
||||||
"@types/webspeechapi": "^0.0.29",
|
"@types/webspeechapi": "^0.0.29",
|
||||||
"@typescript-eslint/eslint-plugin": "^5.53.0",
|
"@typescript-eslint/eslint-plugin": "^5.46.1",
|
||||||
"@typescript-eslint/parser": "^5.53.0",
|
"@typescript-eslint/parser": "^5.49.0",
|
||||||
"@web/dev-server": "^0.1.35",
|
"@web/dev-server": "^0.0.24",
|
||||||
"@web/dev-server-rollup": "^0.2.11",
|
"@web/dev-server-rollup": "^0.2.11",
|
||||||
"babel-loader": "^9.1.2",
|
"babel-loader": "^9.1.0",
|
||||||
"chai": "^4.3.7",
|
"chai": "^4.3.4",
|
||||||
"del": "^7.0.0",
|
"del": "^7.0.0",
|
||||||
"eslint": "^8.34.0",
|
"eslint": "^7.32.0",
|
||||||
"eslint-config-airbnb-base": "^15.0.0",
|
"eslint-config-airbnb-base": "^14.2.1",
|
||||||
"eslint-config-airbnb-typescript": "^17.0.0",
|
"eslint-config-airbnb-typescript": "^14.0.0",
|
||||||
"eslint-config-prettier": "^8.6.0",
|
"eslint-config-prettier": "^8.6.0",
|
||||||
"eslint-import-resolver-webpack": "^0.13.2",
|
"eslint-import-resolver-webpack": "^0.13.1",
|
||||||
"eslint-plugin-disable": "^2.0.3",
|
"eslint-plugin-disable": "^2.0.1",
|
||||||
"eslint-plugin-import": "^2.27.5",
|
"eslint-plugin-import": "^2.24.2",
|
||||||
"eslint-plugin-lit": "^1.8.2",
|
"eslint-plugin-lit": "^1.6.1",
|
||||||
"eslint-plugin-lit-a11y": "^2.3.0",
|
"eslint-plugin-unused-imports": "^1.1.5",
|
||||||
"eslint-plugin-unused-imports": "^2.0.0",
|
|
||||||
"eslint-plugin-wc": "^1.4.0",
|
"eslint-plugin-wc": "^1.4.0",
|
||||||
"esprima": "^4.0.1",
|
|
||||||
"fancy-log": "^2.0.0",
|
"fancy-log": "^2.0.0",
|
||||||
"fs-extra": "^11.1.0",
|
"fs-extra": "^11.1.0",
|
||||||
"glob": "^8.1.0",
|
"glob": "^8.1.0",
|
||||||
"gulp": "^4.0.2",
|
"gulp": "^4.0.2",
|
||||||
"gulp-flatmap": "^1.0.2",
|
"gulp-flatmap": "^1.0.2",
|
||||||
"gulp-json-transform": "^0.4.8",
|
"gulp-json-transform": "^0.4.6",
|
||||||
"gulp-merge-json": "^2.1.2",
|
"gulp-merge-json": "^2.1.2",
|
||||||
"gulp-rename": "^2.0.0",
|
"gulp-rename": "^2.0.0",
|
||||||
"gulp-zopfli-green": "^6.0.1",
|
"gulp-zopfli-green": "^3.0.1",
|
||||||
"html-minifier": "^4.0.0",
|
"html-minifier": "^4.0.0",
|
||||||
"husky": "^8.0.3",
|
"husky": "^8.0.3",
|
||||||
"instant-mocha": "^1.5.0",
|
"instant-mocha": "^1.3.1",
|
||||||
"jszip": "^3.10.1",
|
"jszip": "^3.10.1",
|
||||||
"lint-staged": "^13.1.2",
|
"lint-staged": "^13.1.0",
|
||||||
"lit-analyzer": "^1.2.1",
|
"lit-analyzer": "^1.2.1",
|
||||||
"lodash.template": "^4.5.0",
|
"lodash.template": "^4.5.0",
|
||||||
"magic-string": "^0.30.0",
|
"magic-string": "^0.25.7",
|
||||||
"map-stream": "^0.0.7",
|
"map-stream": "^0.0.7",
|
||||||
"merge-stream": "^2.0.0",
|
"merge-stream": "^1.0.1",
|
||||||
"mocha": "^10.2.0",
|
"mocha": "^8.4.0",
|
||||||
"object-hash": "^3.0.0",
|
"object-hash": "^3.0.0",
|
||||||
"open": "^8.4.1",
|
"open": "^8.4.0",
|
||||||
"pinst": "^3.0.0",
|
"pinst": "^3.0.0",
|
||||||
"prettier": "^2.8.4",
|
"prettier": "^2.8.3",
|
||||||
"require-dir": "^1.2.0",
|
"require-dir": "^1.2.0",
|
||||||
"rollup": "^2.8.2",
|
"rollup": "^2.8.2",
|
||||||
"rollup-plugin-string": "^3.0.0",
|
"rollup-plugin-string": "^3.0.0",
|
||||||
@@ -231,24 +228,25 @@
|
|||||||
"rollup-plugin-visualizer": "^5.9.0",
|
"rollup-plugin-visualizer": "^5.9.0",
|
||||||
"serve": "^11.3.2",
|
"serve": "^11.3.2",
|
||||||
"sinon": "^15.0.1",
|
"sinon": "^15.0.1",
|
||||||
"source-map-url": "^0.4.1",
|
"source-map-url": "^0.4.0",
|
||||||
"systemjs": "^6.13.0",
|
"systemjs": "^6.3.2",
|
||||||
"tar": "^6.1.13",
|
"tar": "^6.1.11",
|
||||||
"terser-webpack-plugin": "^5.3.6",
|
"terser-webpack-plugin": "^5.2.4",
|
||||||
"ts-lit-plugin": "^1.2.1",
|
"ts-lit-plugin": "^1.2.1",
|
||||||
"typescript": "^4.9.5",
|
"typescript": "^4.9.4",
|
||||||
"vinyl-buffer": "^1.0.1",
|
"vinyl-buffer": "^1.0.1",
|
||||||
"vinyl-source-stream": "^2.0.0",
|
"vinyl-source-stream": "^2.0.0",
|
||||||
"webpack": "=5.72.1",
|
"webpack": "^5.55.1",
|
||||||
"webpack-cli": "^5.0.1",
|
"webpack-cli": "^5.0.1",
|
||||||
"webpack-dev-server": "^4.11.1",
|
"webpack-dev-server": "^4.11.1",
|
||||||
"webpack-manifest-plugin": "^5.0.0",
|
"webpack-manifest-plugin": "^4.0.2",
|
||||||
"webpackbar": "^5.0.2",
|
"webpackbar": "^5.0.2",
|
||||||
"workbox-build": "^6.5.4"
|
"workbox-build": "^6.5.4"
|
||||||
},
|
},
|
||||||
"_comment": "Polymer 3.2 contained a bug, fixed in https://github.com/Polymer/polymer/pull/5569, add as patch",
|
"_comment": "Polymer 3.2 contained a bug, fixed in https://github.com/Polymer/polymer/pull/5569, add as patch",
|
||||||
"resolutions": {
|
"resolutions": {
|
||||||
"@polymer/polymer": "patch:@polymer/polymer@3.4.1#./.yarn/patches/@polymer/polymer/pr-5569.patch"
|
"@polymer/polymer": "patch:@polymer/polymer@3.4.1#./.yarn/patches/@polymer/polymer/pr-5569.patch",
|
||||||
|
"@webcomponents/webcomponentsjs": "^2.2.10"
|
||||||
},
|
},
|
||||||
"main": "src/home-assistant.js",
|
"main": "src/home-assistant.js",
|
||||||
"prettier": {
|
"prettier": {
|
||||||
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "home-assistant-frontend"
|
name = "home-assistant-frontend"
|
||||||
version = "20230224.0"
|
version = "20230128.0"
|
||||||
license = {text = "Apache-2.0"}
|
license = {text = "Apache-2.0"}
|
||||||
description = "The Home Assistant frontend"
|
description = "The Home Assistant frontend"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
@@ -6,9 +6,6 @@ set -e
|
|||||||
|
|
||||||
cd "$(dirname "$0")/.."
|
cd "$(dirname "$0")/.."
|
||||||
|
|
||||||
export STATS=1
|
STATS=1 NODE_ENV=production ./node_modules/.bin/webpack --profile --json > compilation-stats.json
|
||||||
statsfile="compilation-stats.json"
|
npx webpack-bundle-analyzer compilation-stats.json hass_frontend/frontend_latest
|
||||||
|
rm compilation-stats.json
|
||||||
./node_modules/.bin/webpack-cli --profile --node-env=production --json=$statsfile
|
|
||||||
npx webpack-bundle-analyzer $statsfile hass_frontend/frontend_latest
|
|
||||||
rm -f $statsfile
|
|
||||||
|
@@ -8,7 +8,7 @@ import {
|
|||||||
PropertyValues,
|
PropertyValues,
|
||||||
TemplateResult,
|
TemplateResult,
|
||||||
} from "lit";
|
} from "lit";
|
||||||
import { customElement, property, state } from "lit/decorators";
|
import { property, state } from "lit/decorators";
|
||||||
import "../components/ha-alert";
|
import "../components/ha-alert";
|
||||||
import "../components/ha-checkbox";
|
import "../components/ha-checkbox";
|
||||||
import { computeInitialHaFormData } from "../components/ha-form/compute-initial-ha-form-data";
|
import { computeInitialHaFormData } from "../components/ha-form/compute-initial-ha-form-data";
|
||||||
@@ -25,8 +25,7 @@ import "./ha-password-manager-polyfill";
|
|||||||
|
|
||||||
type State = "loading" | "error" | "step";
|
type State = "loading" | "error" | "step";
|
||||||
|
|
||||||
@customElement("ha-auth-flow")
|
class HaAuthFlow extends litLocalizeLiteMixin(LitElement) {
|
||||||
export class HaAuthFlow extends litLocalizeLiteMixin(LitElement) {
|
|
||||||
@property({ attribute: false }) public authProvider?: AuthProvider;
|
@property({ attribute: false }) public authProvider?: AuthProvider;
|
||||||
|
|
||||||
@property() public clientId?: string;
|
@property() public clientId?: string;
|
||||||
@@ -408,6 +407,7 @@ export class HaAuthFlow extends litLocalizeLiteMixin(LitElement) {
|
|||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
customElements.define("ha-auth-flow", HaAuthFlow);
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLElementTagNameMap {
|
interface HTMLElementTagNameMap {
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
import { css, CSSResultGroup, html, LitElement, PropertyValues } from "lit";
|
import { css, CSSResultGroup, html, LitElement, PropertyValues } from "lit";
|
||||||
import { customElement, property, state } from "lit/decorators";
|
import { property, state } from "lit/decorators";
|
||||||
import punycode from "punycode";
|
import punycode from "punycode";
|
||||||
import { applyThemesOnElement } from "../common/dom/apply_themes_on_element";
|
import { applyThemesOnElement } from "../common/dom/apply_themes_on_element";
|
||||||
import { extractSearchParamsObject } from "../common/url/search-params";
|
import { extractSearchParamsObject } from "../common/url/search-params";
|
||||||
@@ -14,8 +14,7 @@ import "./ha-auth-flow";
|
|||||||
|
|
||||||
import("./ha-pick-auth-provider");
|
import("./ha-pick-auth-provider");
|
||||||
|
|
||||||
@customElement("ha-authorize")
|
class HaAuthorize extends litLocalizeLiteMixin(LitElement) {
|
||||||
export class HaAuthorize extends litLocalizeLiteMixin(LitElement) {
|
|
||||||
@property() public clientId?: string;
|
@property() public clientId?: string;
|
||||||
|
|
||||||
@property() public redirectUri?: string;
|
@property() public redirectUri?: string;
|
||||||
@@ -184,3 +183,4 @@ export class HaAuthorize extends litLocalizeLiteMixin(LitElement) {
|
|||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
customElements.define("ha-authorize", HaAuthorize);
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
import "@polymer/paper-item/paper-item";
|
import "@polymer/paper-item/paper-item";
|
||||||
import "@polymer/paper-item/paper-item-body";
|
import "@polymer/paper-item/paper-item-body";
|
||||||
import { css, html, LitElement } from "lit";
|
import { css, html, LitElement } from "lit";
|
||||||
import { customElement, property } from "lit/decorators";
|
import { property } from "lit/decorators";
|
||||||
import { fireEvent } from "../common/dom/fire_event";
|
import { fireEvent } from "../common/dom/fire_event";
|
||||||
import "../components/ha-icon-next";
|
import "../components/ha-icon-next";
|
||||||
import { AuthProvider } from "../data/auth";
|
import { AuthProvider } from "../data/auth";
|
||||||
@@ -13,8 +13,7 @@ declare global {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@customElement("ha-pick-auth-provider")
|
class HaPickAuthProvider extends litLocalizeLiteMixin(LitElement) {
|
||||||
export class HaPickAuthProvider extends litLocalizeLiteMixin(LitElement) {
|
|
||||||
@property() public authProviders: AuthProvider[] = [];
|
@property() public authProviders: AuthProvider[] = [];
|
||||||
|
|
||||||
protected render() {
|
protected render() {
|
||||||
@@ -48,3 +47,4 @@ export class HaPickAuthProvider extends litLocalizeLiteMixin(LitElement) {
|
|||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
|
customElements.define("ha-pick-auth-provider", HaPickAuthProvider);
|
||||||
|
@@ -2,7 +2,6 @@ type NonUndefined<T> = T extends undefined ? never : T;
|
|||||||
|
|
||||||
export function ensureArray(value: undefined): undefined;
|
export function ensureArray(value: undefined): undefined;
|
||||||
export function ensureArray<T>(value: T | T[]): NonUndefined<T>[];
|
export function ensureArray<T>(value: T | T[]): NonUndefined<T>[];
|
||||||
export function ensureArray<T>(value: T | readonly T[]): NonUndefined<T>[];
|
|
||||||
export function ensureArray(value) {
|
export function ensureArray(value) {
|
||||||
if (value === undefined || Array.isArray(value)) {
|
if (value === undefined || Array.isArray(value)) {
|
||||||
return value;
|
return value;
|
||||||
|
@@ -22,11 +22,3 @@ export const atLeastVersion = (
|
|||||||
Number(haPatch) >= patch)
|
Number(haPatch) >= patch)
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
export const isDevVersion = (version: string): boolean => {
|
|
||||||
if (__DEMO__) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return version.includes("dev");
|
|
||||||
};
|
|
||||||
|
@@ -10,19 +10,11 @@ export const createDurationData = (
|
|||||||
if (typeof duration !== "object") {
|
if (typeof duration !== "object") {
|
||||||
if (typeof duration === "string" || isNaN(duration)) {
|
if (typeof duration === "string" || isNaN(duration)) {
|
||||||
const parts = duration?.toString().split(":") || [];
|
const parts = duration?.toString().split(":") || [];
|
||||||
if (parts.length === 1) {
|
|
||||||
return { seconds: Number(parts[0]) };
|
|
||||||
}
|
|
||||||
if (parts.length > 3) {
|
|
||||||
return undefined;
|
|
||||||
}
|
|
||||||
const seconds = Number(parts[2]) || 0;
|
|
||||||
const seconds_whole = Math.floor(seconds);
|
|
||||||
return {
|
return {
|
||||||
hours: Number(parts[0]) || 0,
|
hours: Number(parts[0]) || 0,
|
||||||
minutes: Number(parts[1]) || 0,
|
minutes: Number(parts[1]) || 0,
|
||||||
seconds: seconds_whole,
|
seconds: Number(parts[2]) || 0,
|
||||||
milliseconds: Math.floor((seconds - seconds_whole) * 1000),
|
milliseconds: Number(parts[3]) || 0,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
return { seconds: duration };
|
return { seconds: duration };
|
||||||
|
@@ -1,12 +1,6 @@
|
|||||||
import { getWeekStartByLocale } from "weekstart";
|
import { getWeekStartByLocale } from "weekstart";
|
||||||
import { FrontendLocaleData, FirstWeekday } from "../../data/translation";
|
import { FrontendLocaleData, FirstWeekday } from "../../data/translation";
|
||||||
|
|
||||||
import { polyfillsLoaded } from "../translations/localize";
|
|
||||||
|
|
||||||
if (__BUILD__ === "latest" && polyfillsLoaded) {
|
|
||||||
await polyfillsLoaded;
|
|
||||||
}
|
|
||||||
|
|
||||||
export const weekdays = [
|
export const weekdays = [
|
||||||
"sunday",
|
"sunday",
|
||||||
"monday",
|
"monday",
|
||||||
|
@@ -11,7 +11,8 @@ export const setupLeafletMap = async (
|
|||||||
throw new Error("Cannot setup Leaflet map on disconnected element");
|
throw new Error("Cannot setup Leaflet map on disconnected element");
|
||||||
}
|
}
|
||||||
// eslint-disable-next-line
|
// eslint-disable-next-line
|
||||||
const Leaflet = (await import("leaflet")).default as LeafletModuleType;
|
const Leaflet = ((await import("leaflet")) as any)
|
||||||
|
.default as LeafletModuleType;
|
||||||
Leaflet.Icon.Default.imagePath = "/static/images/leaflet/images/";
|
Leaflet.Icon.Default.imagePath = "/static/images/leaflet/images/";
|
||||||
|
|
||||||
const map = Leaflet.map(mapElement);
|
const map = Leaflet.map(mapElement);
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
import { HassEntity } from "home-assistant-js-websocket";
|
import { HassEntity } from "home-assistant-js-websocket";
|
||||||
import { EntityRegistryDisplayEntry } from "../../data/entity_registry";
|
import { EntityRegistryEntry } from "../../data/entity_registry";
|
||||||
import { HomeAssistant } from "../../types";
|
import { HomeAssistant } from "../../types";
|
||||||
import { LocalizeFunc } from "../translations/localize";
|
import { LocalizeFunc } from "../translations/localize";
|
||||||
import { computeDomain } from "./compute_domain";
|
import { computeDomain } from "./compute_domain";
|
||||||
@@ -15,7 +15,7 @@ export const computeAttributeValueDisplay = (
|
|||||||
const attributeValue =
|
const attributeValue =
|
||||||
value !== undefined ? value : stateObj.attributes[attribute];
|
value !== undefined ? value : stateObj.attributes[attribute];
|
||||||
const domain = computeDomain(entityId);
|
const domain = computeDomain(entityId);
|
||||||
const entity = entities[entityId] as EntityRegistryDisplayEntry | undefined;
|
const entity = entities[entityId] as EntityRegistryEntry | undefined;
|
||||||
const translationKey = entity?.translation_key;
|
const translationKey = entity?.translation_key;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@@ -38,7 +38,7 @@ export const computeAttributeNameDisplay = (
|
|||||||
): string => {
|
): string => {
|
||||||
const entityId = stateObj.entity_id;
|
const entityId = stateObj.entity_id;
|
||||||
const domain = computeDomain(entityId);
|
const domain = computeDomain(entityId);
|
||||||
const entity = entities[entityId] as EntityRegistryDisplayEntry | undefined;
|
const entity = entities[entityId] as EntityRegistryEntry | undefined;
|
||||||
const translationKey = entity?.translation_key;
|
const translationKey = entity?.translation_key;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
import { HassEntity } from "home-assistant-js-websocket";
|
import { HassEntity } from "home-assistant-js-websocket";
|
||||||
import { UNAVAILABLE, UNKNOWN } from "../../data/entity";
|
import { UNAVAILABLE, UNKNOWN } from "../../data/entity";
|
||||||
import { EntityRegistryDisplayEntry } from "../../data/entity_registry";
|
import { EntityRegistryEntry } from "../../data/entity_registry";
|
||||||
import { FrontendLocaleData } from "../../data/translation";
|
import { FrontendLocaleData } from "../../data/translation";
|
||||||
import {
|
import {
|
||||||
updateIsInstallingFromAttributes,
|
updateIsInstallingFromAttributes,
|
||||||
@@ -49,8 +49,6 @@ export const computeStateDisplayFromEntityAttributes = (
|
|||||||
return localize(`state.default.${state}`);
|
return localize(`state.default.${state}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
const entity = entities[entityId] as EntityRegistryDisplayEntry | undefined;
|
|
||||||
|
|
||||||
// Entities with a `unit_of_measurement` or `state_class` are numeric values and should use `formatNumber`
|
// Entities with a `unit_of_measurement` or `state_class` are numeric values and should use `formatNumber`
|
||||||
if (isNumericFromAttributes(attributes)) {
|
if (isNumericFromAttributes(attributes)) {
|
||||||
// state is duration
|
// state is duration
|
||||||
@@ -84,7 +82,7 @@ export const computeStateDisplayFromEntityAttributes = (
|
|||||||
return `${formatNumber(
|
return `${formatNumber(
|
||||||
state,
|
state,
|
||||||
locale,
|
locale,
|
||||||
getNumberFormatOptions({ state, attributes } as HassEntity, entity)
|
getNumberFormatOptions({ state, attributes } as HassEntity)
|
||||||
)}${unit}`;
|
)}${unit}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -162,7 +160,7 @@ export const computeStateDisplayFromEntityAttributes = (
|
|||||||
return formatNumber(
|
return formatNumber(
|
||||||
state,
|
state,
|
||||||
locale,
|
locale,
|
||||||
getNumberFormatOptions({ state, attributes } as HassEntity, entity)
|
getNumberFormatOptions({ state, attributes } as HassEntity)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -201,6 +199,8 @@ export const computeStateDisplayFromEntityAttributes = (
|
|||||||
: localize("ui.card.update.up_to_date");
|
: localize("ui.card.update.up_to_date");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const entity = entities[entityId] as EntityRegistryEntry | undefined;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
(entity?.translation_key &&
|
(entity?.translation_key &&
|
||||||
localize(
|
localize(
|
||||||
|
@@ -4,15 +4,12 @@ import { domainToName } from "../../data/integration";
|
|||||||
import { getIntegrationDescriptions } from "../../data/integrations";
|
import { getIntegrationDescriptions } from "../../data/integrations";
|
||||||
import { showConfigFlowDialog } from "../../dialogs/config-flow/show-dialog-config-flow";
|
import { showConfigFlowDialog } from "../../dialogs/config-flow/show-dialog-config-flow";
|
||||||
import { showConfirmationDialog } from "../../dialogs/generic/show-dialog-box";
|
import { showConfirmationDialog } from "../../dialogs/generic/show-dialog-box";
|
||||||
import { showMatterAddDeviceDialog } from "../../panels/config/integrations/integration-panels/matter/show-dialog-add-matter-device";
|
|
||||||
import { showZWaveJSAddNodeDialog } from "../../panels/config/integrations/integration-panels/zwave_js/show-dialog-zwave_js-add-node";
|
import { showZWaveJSAddNodeDialog } from "../../panels/config/integrations/integration-panels/zwave_js/show-dialog-zwave_js-add-node";
|
||||||
import type { HomeAssistant } from "../../types";
|
import type { HomeAssistant } from "../../types";
|
||||||
import { documentationUrl } from "../../util/documentation-url";
|
import { documentationUrl } from "../../util/documentation-url";
|
||||||
import { isComponentLoaded } from "../config/is_component_loaded";
|
import { isComponentLoaded } from "../config/is_component_loaded";
|
||||||
import { navigate } from "../navigate";
|
import { navigate } from "../navigate";
|
||||||
|
|
||||||
export const PROTOCOL_INTEGRATIONS = ["zha", "zwave_js", "matter"] as const;
|
|
||||||
|
|
||||||
export const protocolIntegrationPicked = async (
|
export const protocolIntegrationPicked = async (
|
||||||
element: HTMLElement,
|
element: HTMLElement,
|
||||||
hass: HomeAssistant,
|
hass: HomeAssistant,
|
||||||
@@ -116,43 +113,5 @@ export const protocolIntegrationPicked = async (
|
|||||||
}
|
}
|
||||||
|
|
||||||
navigate("/config/zha/add");
|
navigate("/config/zha/add");
|
||||||
} else if (domain === "matter") {
|
|
||||||
const entries = await getConfigEntries(hass, {
|
|
||||||
domain,
|
|
||||||
});
|
|
||||||
if (!isComponentLoaded(hass, domain) || !entries.length) {
|
|
||||||
// If the component isn't loaded, ask them to load the integration first
|
|
||||||
showConfirmationDialog(element, {
|
|
||||||
title: hass.localize(
|
|
||||||
"ui.panel.config.integrations.config_flow.missing_zwave_zigbee_title",
|
|
||||||
{ integration: "Matter" }
|
|
||||||
),
|
|
||||||
text: hass.localize(
|
|
||||||
"ui.panel.config.integrations.config_flow.missing_matter",
|
|
||||||
{
|
|
||||||
integration: "Matter",
|
|
||||||
brand: options?.brand || options?.domain || "Matter",
|
|
||||||
supported_hardware_link: html`<a
|
|
||||||
href=${documentationUrl(hass, "/integrations/matter")}
|
|
||||||
target="_blank"
|
|
||||||
rel="noreferrer"
|
|
||||||
>${hass.localize(
|
|
||||||
"ui.panel.config.integrations.config_flow.supported_hardware"
|
|
||||||
)}</a
|
|
||||||
>`,
|
|
||||||
}
|
|
||||||
),
|
|
||||||
confirmText: hass.localize(
|
|
||||||
"ui.panel.config.integrations.config_flow.proceed"
|
|
||||||
),
|
|
||||||
confirm: () => {
|
|
||||||
showConfigFlowDialog(element, {
|
|
||||||
startFlowHandler: "matter",
|
|
||||||
});
|
|
||||||
},
|
|
||||||
});
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
showMatterAddDeviceDialog(element);
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@@ -2,7 +2,6 @@ import {
|
|||||||
HassEntity,
|
HassEntity,
|
||||||
HassEntityAttributeBase,
|
HassEntityAttributeBase,
|
||||||
} from "home-assistant-js-websocket";
|
} from "home-assistant-js-websocket";
|
||||||
import { EntityRegistryDisplayEntry } from "../../data/entity_registry";
|
|
||||||
import { FrontendLocaleData, NumberFormat } from "../../data/translation";
|
import { FrontendLocaleData, NumberFormat } from "../../data/translation";
|
||||||
import { round } from "./round";
|
import { round } from "./round";
|
||||||
|
|
||||||
@@ -91,16 +90,8 @@ export const formatNumber = (
|
|||||||
* @returns An `Intl.NumberFormatOptions` object with `maximumFractionDigits` set to 0, or `undefined`
|
* @returns An `Intl.NumberFormatOptions` object with `maximumFractionDigits` set to 0, or `undefined`
|
||||||
*/
|
*/
|
||||||
export const getNumberFormatOptions = (
|
export const getNumberFormatOptions = (
|
||||||
entityState: HassEntity,
|
entityState: HassEntity
|
||||||
entity?: EntityRegistryDisplayEntry
|
|
||||||
): Intl.NumberFormatOptions | undefined => {
|
): Intl.NumberFormatOptions | undefined => {
|
||||||
const precision = entity?.display_precision;
|
|
||||||
if (precision != null) {
|
|
||||||
return {
|
|
||||||
maximumFractionDigits: precision,
|
|
||||||
minimumFractionDigits: precision,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
if (
|
if (
|
||||||
Number.isInteger(Number(entityState.attributes?.step)) &&
|
Number.isInteger(Number(entityState.attributes?.step)) &&
|
||||||
Number.isInteger(Number(entityState.state))
|
Number.isInteger(Number(entityState.state))
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
const isTemplateRegex = /{%|{{/;
|
const isTemplateRegex = new RegExp("{%|{{");
|
||||||
|
|
||||||
export const isTemplate = (value: string): boolean =>
|
export const isTemplate = (value: string): boolean =>
|
||||||
isTemplateRegex.test(value);
|
isTemplateRegex.test(value);
|
||||||
|
@@ -1,5 +1,6 @@
|
|||||||
import { refine, string } from "superstruct";
|
import { refine, string } from "superstruct";
|
||||||
import { isCustomType } from "../../data/lovelace_custom_cards";
|
|
||||||
|
export const isCustomType = (value: string) => value.startsWith("custom:");
|
||||||
|
|
||||||
export const customType = () =>
|
export const customType = () =>
|
||||||
refine(string(), "custom element type", isCustomType);
|
refine(string(), "custom element type", isCustomType);
|
||||||
|
@@ -65,21 +65,19 @@ export interface FormatsType {
|
|||||||
|
|
||||||
const loadedPolyfillLocale = new Set();
|
const loadedPolyfillLocale = new Set();
|
||||||
|
|
||||||
const locale = getLocalLanguage();
|
|
||||||
|
|
||||||
const polyfills: Promise<any>[] = [];
|
const polyfills: Promise<any>[] = [];
|
||||||
if (__BUILD__ === "latest") {
|
if (__BUILD__ === "latest") {
|
||||||
if (shouldPolyfillLocale()) {
|
if (shouldPolyfillLocale()) {
|
||||||
await import("@formatjs/intl-locale/polyfill");
|
polyfills.push(import("@formatjs/intl-locale/polyfill"));
|
||||||
}
|
}
|
||||||
if (shouldPolyfillPluralRules(locale)) {
|
if (shouldPolyfillPluralRules()) {
|
||||||
polyfills.push(import("@formatjs/intl-pluralrules/polyfill"));
|
polyfills.push(import("@formatjs/intl-pluralrules/polyfill"));
|
||||||
polyfills.push(import("@formatjs/intl-pluralrules/locale-data/en"));
|
polyfills.push(import("@formatjs/intl-pluralrules/locale-data/en"));
|
||||||
}
|
}
|
||||||
if (shouldPolyfillRelativeTime(locale)) {
|
if (shouldPolyfillRelativeTime()) {
|
||||||
polyfills.push(import("@formatjs/intl-relativetimeformat/polyfill"));
|
polyfills.push(import("@formatjs/intl-relativetimeformat/polyfill"));
|
||||||
}
|
}
|
||||||
if (shouldPolyfillDateTime(locale)) {
|
if (shouldPolyfillDateTime()) {
|
||||||
polyfills.push(import("@formatjs/intl-datetimeformat/polyfill"));
|
polyfills.push(import("@formatjs/intl-datetimeformat/polyfill"));
|
||||||
polyfills.push(import("@formatjs/intl-datetimeformat/add-all-tz"));
|
polyfills.push(import("@formatjs/intl-datetimeformat/add-all-tz"));
|
||||||
}
|
}
|
||||||
@@ -90,7 +88,7 @@ export const polyfillsLoaded =
|
|||||||
? undefined
|
? undefined
|
||||||
: Promise.all(polyfills).then(() =>
|
: Promise.all(polyfills).then(() =>
|
||||||
// Load the default language
|
// Load the default language
|
||||||
loadPolyfillLocales(locale)
|
loadPolyfillLocales(getLocalLanguage())
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -216,7 +214,7 @@ export const loadPolyfillLocales = async (language: string) => {
|
|||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
Intl.DateTimeFormat.__addLocaleData(await result.json());
|
Intl.DateTimeFormat.__addLocaleData(await result.json());
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (_e) {
|
||||||
// Ignore
|
// Ignore
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@@ -19,7 +19,6 @@ const SECS_PER_HOUR = SECS_PER_MIN * 60;
|
|||||||
// Adapted from https://github.com/formatjs/formatjs/blob/186cef62f980ec66252ee232f438a42d0b51b9f9/packages/intl-utils/src/diff.ts
|
// Adapted from https://github.com/formatjs/formatjs/blob/186cef62f980ec66252ee232f438a42d0b51b9f9/packages/intl-utils/src/diff.ts
|
||||||
export function selectUnit(
|
export function selectUnit(
|
||||||
from: Date | number,
|
from: Date | number,
|
||||||
// eslint-disable-next-line @typescript-eslint/default-param-last
|
|
||||||
to: Date | number = Date.now(),
|
to: Date | number = Date.now(),
|
||||||
locale: FrontendLocaleData,
|
locale: FrontendLocaleData,
|
||||||
thresholds: Partial<Thresholds> = {}
|
thresholds: Partial<Thresholds> = {}
|
||||||
|
@@ -1,10 +1,9 @@
|
|||||||
import { css, CSSResultGroup, html, LitElement } from "lit";
|
import { css, CSSResultGroup, html, LitElement } from "lit";
|
||||||
import { customElement, property, query } from "lit/decorators";
|
import { property, query } from "lit/decorators";
|
||||||
import { fireEvent } from "../../common/dom/fire_event";
|
import { fireEvent } from "../../common/dom/fire_event";
|
||||||
import { HomeAssistant } from "../../types";
|
import { HomeAssistant } from "../../types";
|
||||||
import "./ha-progress-button";
|
import "./ha-progress-button";
|
||||||
|
|
||||||
@customElement("ha-call-api-button")
|
|
||||||
class HaCallApiButton extends LitElement {
|
class HaCallApiButton extends LitElement {
|
||||||
@property({ attribute: false }) public hass!: HomeAssistant;
|
@property({ attribute: false }) public hass!: HomeAssistant;
|
||||||
|
|
||||||
@@ -70,6 +69,8 @@ class HaCallApiButton extends LitElement {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
customElements.define("ha-call-api-button", HaCallApiButton);
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLElementTagNameMap {
|
interface HTMLElementTagNameMap {
|
||||||
"ha-call-api-button": HaCallApiButton;
|
"ha-call-api-button": HaCallApiButton;
|
||||||
|
@@ -233,11 +233,7 @@ export default class HaChartBase extends LitElement {
|
|||||||
{
|
{
|
||||||
id: "afterRenderHook",
|
id: "afterRenderHook",
|
||||||
afterRender: (chart) => {
|
afterRender: (chart) => {
|
||||||
const change = chart.height - (this._chartHeight ?? 0);
|
this._chartHeight = chart.height;
|
||||||
if (!this._chartHeight || change > 0 || change < -12) {
|
|
||||||
// hysteresis to prevent infinite render loops
|
|
||||||
this._chartHeight = chart.height;
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
legend: {
|
legend: {
|
||||||
...this.options?.plugins?.legend,
|
...this.options?.plugins?.legend,
|
||||||
|
@@ -22,7 +22,7 @@ class StateHistoryChartLine extends LitElement {
|
|||||||
|
|
||||||
@property({ attribute: false }) public data: LineChartEntity[] = [];
|
@property({ attribute: false }) public data: LineChartEntity[] = [];
|
||||||
|
|
||||||
@property() public names?: Record<string, string>;
|
@property() public names: boolean | Record<string, string> = false;
|
||||||
|
|
||||||
@property() public unit?: string;
|
@property() public unit?: string;
|
||||||
|
|
||||||
|
@@ -19,7 +19,7 @@ export class StateHistoryChartTimeline extends LitElement {
|
|||||||
|
|
||||||
@property() public narrow!: boolean;
|
@property() public narrow!: boolean;
|
||||||
|
|
||||||
@property() public names?: Record<string, string>;
|
@property() public names: boolean | Record<string, string> = false;
|
||||||
|
|
||||||
@property() public unit?: string;
|
@property() public unit?: string;
|
||||||
|
|
||||||
@@ -64,8 +64,6 @@ export class StateHistoryChartTimeline extends LitElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (
|
if (
|
||||||
changedProps.has("startTime") ||
|
|
||||||
changedProps.has("endTime") ||
|
|
||||||
changedProps.has("data") ||
|
changedProps.has("data") ||
|
||||||
this._chartTime <
|
this._chartTime <
|
||||||
new Date(this.endTime.getTime() - MIN_TIME_BETWEEN_UPDATES)
|
new Date(this.endTime.getTime() - MIN_TIME_BETWEEN_UPDATES)
|
||||||
|
@@ -38,14 +38,14 @@ declare global {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@customElement("state-history-charts")
|
@customElement("state-history-charts")
|
||||||
export class StateHistoryCharts extends LitElement {
|
class StateHistoryCharts extends LitElement {
|
||||||
@property({ attribute: false }) public hass!: HomeAssistant;
|
@property({ attribute: false }) public hass!: HomeAssistant;
|
||||||
|
|
||||||
@property({ attribute: false }) public historyData!: HistoryResult;
|
@property({ attribute: false }) public historyData!: HistoryResult;
|
||||||
|
|
||||||
@property() public narrow!: boolean;
|
@property() public narrow!: boolean;
|
||||||
|
|
||||||
@property() public names?: Record<string, string>;
|
@property({ type: Boolean }) public names = false;
|
||||||
|
|
||||||
@property({ type: Boolean, attribute: "virtualize", reflect: true })
|
@property({ type: Boolean, attribute: "virtualize", reflect: true })
|
||||||
public virtualize = false;
|
public virtualize = false;
|
||||||
@@ -71,6 +71,7 @@ export class StateHistoryCharts extends LitElement {
|
|||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
@restoreScroll(".container") private _savedScrollPos?: number;
|
@restoreScroll(".container") private _savedScrollPos?: number;
|
||||||
|
|
||||||
|
@eventOptions({ passive: true })
|
||||||
protected render(): TemplateResult {
|
protected render(): TemplateResult {
|
||||||
if (!isComponentLoaded(this.hass, "history")) {
|
if (!isComponentLoaded(this.hass, "history")) {
|
||||||
return html`<div class="info">
|
return html`<div class="info">
|
||||||
|
@@ -59,14 +59,14 @@ export const statTypeMap: Record<ExtendedStatisticType, StatisticType> = {
|
|||||||
class StatisticsChart extends LitElement {
|
class StatisticsChart extends LitElement {
|
||||||
@property({ attribute: false }) public hass!: HomeAssistant;
|
@property({ attribute: false }) public hass!: HomeAssistant;
|
||||||
|
|
||||||
@property({ attribute: false }) public statisticsData?: Statistics;
|
@property({ attribute: false }) public statisticsData!: Statistics;
|
||||||
|
|
||||||
@property({ attribute: false }) public metadata?: Record<
|
@property({ attribute: false }) public metadata?: Record<
|
||||||
string,
|
string,
|
||||||
StatisticsMetaData
|
StatisticsMetaData
|
||||||
>;
|
>;
|
||||||
|
|
||||||
@property() public names?: Record<string, string>;
|
@property() public names: boolean | Record<string, string> = false;
|
||||||
|
|
||||||
@property() public unit?: string;
|
@property() public unit?: string;
|
||||||
|
|
||||||
@@ -99,11 +99,7 @@ class StatisticsChart extends LitElement {
|
|||||||
if (!this.hasUpdated || changedProps.has("unit")) {
|
if (!this.hasUpdated || changedProps.has("unit")) {
|
||||||
this._createOptions();
|
this._createOptions();
|
||||||
}
|
}
|
||||||
if (
|
if (changedProps.has("statisticsData") || changedProps.has("statTypes")) {
|
||||||
changedProps.has("statisticsData") ||
|
|
||||||
changedProps.has("statTypes") ||
|
|
||||||
changedProps.has("hideLegend")
|
|
||||||
) {
|
|
||||||
this._generateData();
|
this._generateData();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,4 +1,3 @@
|
|||||||
import "@lit-labs/virtualizer";
|
|
||||||
import { mdiArrowDown, mdiArrowUp } from "@mdi/js";
|
import { mdiArrowDown, mdiArrowUp } from "@mdi/js";
|
||||||
import deepClone from "deep-clone-simple";
|
import deepClone from "deep-clone-simple";
|
||||||
import {
|
import {
|
||||||
@@ -22,15 +21,16 @@ import { styleMap } from "lit/directives/style-map";
|
|||||||
import memoizeOne from "memoize-one";
|
import memoizeOne from "memoize-one";
|
||||||
import { restoreScroll } from "../../common/decorators/restore-scroll";
|
import { restoreScroll } from "../../common/decorators/restore-scroll";
|
||||||
import { fireEvent } from "../../common/dom/fire_event";
|
import { fireEvent } from "../../common/dom/fire_event";
|
||||||
|
import "../search-input";
|
||||||
import { debounce } from "../../common/util/debounce";
|
import { debounce } from "../../common/util/debounce";
|
||||||
import { nextRender } from "../../common/util/render-status";
|
import { nextRender } from "../../common/util/render-status";
|
||||||
import { haStyleScrollbar } from "../../resources/styles";
|
import { haStyleScrollbar } from "../../resources/styles";
|
||||||
import { HomeAssistant } from "../../types";
|
|
||||||
import "../ha-checkbox";
|
import "../ha-checkbox";
|
||||||
import type { HaCheckbox } from "../ha-checkbox";
|
import type { HaCheckbox } from "../ha-checkbox";
|
||||||
import "../ha-svg-icon";
|
import "../ha-svg-icon";
|
||||||
import "../search-input";
|
|
||||||
import { filterData, sortData } from "./sort-filter";
|
import { filterData, sortData } from "./sort-filter";
|
||||||
|
import { HomeAssistant } from "../../types";
|
||||||
|
import "@lit-labs/virtualizer";
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
// for fire event
|
// for fire event
|
||||||
@@ -461,9 +461,7 @@ export class HaDataTable extends LitElement {
|
|||||||
const elapsed = curTime - startTime;
|
const elapsed = curTime - startTime;
|
||||||
|
|
||||||
if (elapsed < 100) {
|
if (elapsed < 100) {
|
||||||
await new Promise((resolve) => {
|
await new Promise((resolve) => setTimeout(resolve, 100 - elapsed));
|
||||||
setTimeout(resolve, 100 - elapsed);
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
if (this.curRequest !== curRequest) {
|
if (this.curRequest !== curRequest) {
|
||||||
return;
|
return;
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
import "@material/mwc-list/mwc-list-item";
|
import "@material/mwc-list/mwc-list-item";
|
||||||
import { HassEntity, UnsubscribeFunc } from "home-assistant-js-websocket";
|
import { UnsubscribeFunc } from "home-assistant-js-websocket";
|
||||||
import { html, LitElement, PropertyValues, TemplateResult } from "lit";
|
import { html, LitElement, PropertyValues, TemplateResult } from "lit";
|
||||||
import { ComboBoxLitRenderer } from "@vaadin/combo-box/lit";
|
import { ComboBoxLitRenderer } from "@vaadin/combo-box/lit";
|
||||||
import { customElement, property, query, state } from "lit/decorators";
|
import { customElement, property, query, state } from "lit/decorators";
|
||||||
@@ -37,8 +37,6 @@ export type HaDevicePickerDeviceFilterFunc = (
|
|||||||
device: DeviceRegistryEntry
|
device: DeviceRegistryEntry
|
||||||
) => boolean;
|
) => boolean;
|
||||||
|
|
||||||
export type HaDevicePickerEntityFilterFunc = (entity: HassEntity) => boolean;
|
|
||||||
|
|
||||||
const rowRenderer: ComboBoxLitRenderer<Device> = (item) => html`<mwc-list-item
|
const rowRenderer: ComboBoxLitRenderer<Device> = (item) => html`<mwc-list-item
|
||||||
.twoline=${!!item.area}
|
.twoline=${!!item.area}
|
||||||
>
|
>
|
||||||
@@ -96,8 +94,6 @@ export class HaDevicePicker extends SubscribeMixin(LitElement) {
|
|||||||
|
|
||||||
@property() public deviceFilter?: HaDevicePickerDeviceFilterFunc;
|
@property() public deviceFilter?: HaDevicePickerDeviceFilterFunc;
|
||||||
|
|
||||||
@property() public entityFilter?: HaDevicePickerEntityFilterFunc;
|
|
||||||
|
|
||||||
@property({ type: Boolean }) public disabled?: boolean;
|
@property({ type: Boolean }) public disabled?: boolean;
|
||||||
|
|
||||||
@property({ type: Boolean }) public required?: boolean;
|
@property({ type: Boolean }) public required?: boolean;
|
||||||
@@ -117,7 +113,6 @@ export class HaDevicePicker extends SubscribeMixin(LitElement) {
|
|||||||
excludeDomains: this["excludeDomains"],
|
excludeDomains: this["excludeDomains"],
|
||||||
includeDeviceClasses: this["includeDeviceClasses"],
|
includeDeviceClasses: this["includeDeviceClasses"],
|
||||||
deviceFilter: this["deviceFilter"],
|
deviceFilter: this["deviceFilter"],
|
||||||
entityFilter: this["entityFilter"],
|
|
||||||
excludeDevices: this["excludeDevices"]
|
excludeDevices: this["excludeDevices"]
|
||||||
): Device[] => {
|
): Device[] => {
|
||||||
if (!devices.length) {
|
if (!devices.length) {
|
||||||
@@ -132,12 +127,7 @@ export class HaDevicePicker extends SubscribeMixin(LitElement) {
|
|||||||
|
|
||||||
const deviceEntityLookup: DeviceEntityLookup = {};
|
const deviceEntityLookup: DeviceEntityLookup = {};
|
||||||
|
|
||||||
if (
|
if (includeDomains || excludeDomains || includeDeviceClasses) {
|
||||||
includeDomains ||
|
|
||||||
excludeDomains ||
|
|
||||||
includeDeviceClasses ||
|
|
||||||
entityFilter
|
|
||||||
) {
|
|
||||||
for (const entity of entities) {
|
for (const entity of entities) {
|
||||||
if (!entity.device_id) {
|
if (!entity.device_id) {
|
||||||
continue;
|
continue;
|
||||||
@@ -208,22 +198,6 @@ export class HaDevicePicker extends SubscribeMixin(LitElement) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
if (entityFilter) {
|
|
||||||
inputDevices = inputDevices.filter((device) => {
|
|
||||||
const devEntities = deviceEntityLookup[device.id];
|
|
||||||
if (!devEntities || !devEntities.length) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return devEntities.some((entity) => {
|
|
||||||
const stateObj = this.hass.states[entity.entity_id];
|
|
||||||
if (!stateObj) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return entityFilter(stateObj);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
if (deviceFilter) {
|
if (deviceFilter) {
|
||||||
inputDevices = inputDevices.filter(
|
inputDevices = inputDevices.filter(
|
||||||
(device) =>
|
(device) =>
|
||||||
@@ -300,7 +274,6 @@ export class HaDevicePicker extends SubscribeMixin(LitElement) {
|
|||||||
this.excludeDomains,
|
this.excludeDomains,
|
||||||
this.includeDeviceClasses,
|
this.includeDeviceClasses,
|
||||||
this.deviceFilter,
|
this.deviceFilter,
|
||||||
this.entityFilter,
|
|
||||||
this.excludeDevices
|
this.excludeDevices
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@@ -4,10 +4,7 @@ import { fireEvent } from "../../common/dom/fire_event";
|
|||||||
import { PolymerChangedEvent } from "../../polymer-types";
|
import { PolymerChangedEvent } from "../../polymer-types";
|
||||||
import { HomeAssistant } from "../../types";
|
import { HomeAssistant } from "../../types";
|
||||||
import "./ha-device-picker";
|
import "./ha-device-picker";
|
||||||
import type {
|
import type { HaDevicePickerDeviceFilterFunc } from "./ha-device-picker";
|
||||||
HaDevicePickerDeviceFilterFunc,
|
|
||||||
HaDevicePickerEntityFilterFunc,
|
|
||||||
} from "./ha-device-picker";
|
|
||||||
|
|
||||||
@customElement("ha-devices-picker")
|
@customElement("ha-devices-picker")
|
||||||
class HaDevicesPicker extends LitElement {
|
class HaDevicesPicker extends LitElement {
|
||||||
@@ -47,8 +44,6 @@ class HaDevicesPicker extends LitElement {
|
|||||||
|
|
||||||
@property() public deviceFilter?: HaDevicePickerDeviceFilterFunc;
|
@property() public deviceFilter?: HaDevicePickerDeviceFilterFunc;
|
||||||
|
|
||||||
@property() public entityFilter?: HaDevicePickerEntityFilterFunc;
|
|
||||||
|
|
||||||
protected render(): TemplateResult {
|
protected render(): TemplateResult {
|
||||||
if (!this.hass) {
|
if (!this.hass) {
|
||||||
return html``;
|
return html``;
|
||||||
@@ -64,7 +59,6 @@ class HaDevicesPicker extends LitElement {
|
|||||||
.curValue=${entityId}
|
.curValue=${entityId}
|
||||||
.hass=${this.hass}
|
.hass=${this.hass}
|
||||||
.deviceFilter=${this.deviceFilter}
|
.deviceFilter=${this.deviceFilter}
|
||||||
.entityFilter=${this.entityFilter}
|
|
||||||
.includeDomains=${this.includeDomains}
|
.includeDomains=${this.includeDomains}
|
||||||
.excludeDomains=${this.excludeDomains}
|
.excludeDomains=${this.excludeDomains}
|
||||||
.includeDeviceClasses=${this.includeDeviceClasses}
|
.includeDeviceClasses=${this.includeDeviceClasses}
|
||||||
@@ -82,10 +76,8 @@ class HaDevicesPicker extends LitElement {
|
|||||||
.hass=${this.hass}
|
.hass=${this.hass}
|
||||||
.helper=${this.helper}
|
.helper=${this.helper}
|
||||||
.deviceFilter=${this.deviceFilter}
|
.deviceFilter=${this.deviceFilter}
|
||||||
.entityFilter=${this.entityFilter}
|
|
||||||
.includeDomains=${this.includeDomains}
|
.includeDomains=${this.includeDomains}
|
||||||
.excludeDomains=${this.excludeDomains}
|
.excludeDomains=${this.excludeDomains}
|
||||||
.excludeDevices=${currentDevices}
|
|
||||||
.includeDeviceClasses=${this.includeDeviceClasses}
|
.includeDeviceClasses=${this.includeDeviceClasses}
|
||||||
.label=${this.pickDeviceLabel}
|
.label=${this.pickDeviceLabel}
|
||||||
.disabled=${this.disabled}
|
.disabled=${this.disabled}
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
import "../ha-list-item";
|
import "@material/mwc-list/mwc-list-item";
|
||||||
import { HassEntity } from "home-assistant-js-websocket";
|
import { HassEntity } from "home-assistant-js-websocket";
|
||||||
import { html, LitElement, PropertyValues, TemplateResult } from "lit";
|
import { html, LitElement, PropertyValues, TemplateResult } from "lit";
|
||||||
import { ComboBoxLitRenderer } from "@vaadin/combo-box/lit";
|
import { ComboBoxLitRenderer } from "@vaadin/combo-box/lit";
|
||||||
@@ -24,13 +24,13 @@ export type HaEntityPickerEntityFilterFunc = (entity: HassEntity) => boolean;
|
|||||||
|
|
||||||
// eslint-disable-next-line lit/prefer-static-styles
|
// eslint-disable-next-line lit/prefer-static-styles
|
||||||
const rowRenderer: ComboBoxLitRenderer<HassEntityWithCachedName> = (item) =>
|
const rowRenderer: ComboBoxLitRenderer<HassEntityWithCachedName> = (item) =>
|
||||||
html`<ha-list-item graphic="avatar" .twoline=${!!item.entity_id}>
|
html`<mwc-list-item graphic="avatar" .twoline=${!!item.entity_id}>
|
||||||
${item.state
|
${item.state
|
||||||
? html`<state-badge slot="graphic" .stateObj=${item}></state-badge>`
|
? html`<state-badge slot="graphic" .stateObj=${item}></state-badge>`
|
||||||
: ""}
|
: ""}
|
||||||
<span>${item.friendly_name}</span>
|
<span>${item.friendly_name}</span>
|
||||||
<span slot="secondary">${item.entity_id}</span>
|
<span slot="secondary">${item.entity_id}</span>
|
||||||
</ha-list-item>`;
|
</mwc-list-item>`;
|
||||||
|
|
||||||
@customElement("ha-entity-picker")
|
@customElement("ha-entity-picker")
|
||||||
export class HaEntityPicker extends LitElement {
|
export class HaEntityPicker extends LitElement {
|
||||||
|
@@ -22,7 +22,7 @@ import {
|
|||||||
isNumericState,
|
isNumericState,
|
||||||
} from "../../common/number/format_number";
|
} from "../../common/number/format_number";
|
||||||
import { isUnavailableState, UNAVAILABLE, UNKNOWN } from "../../data/entity";
|
import { isUnavailableState, UNAVAILABLE, UNKNOWN } from "../../data/entity";
|
||||||
import { EntityRegistryDisplayEntry } from "../../data/entity_registry";
|
import { EntityRegistryEntry } from "../../data/entity_registry";
|
||||||
import { timerTimeRemaining } from "../../data/timer";
|
import { timerTimeRemaining } from "../../data/timer";
|
||||||
import { HomeAssistant } from "../../types";
|
import { HomeAssistant } from "../../types";
|
||||||
import "../ha-label-badge";
|
import "../ha-label-badge";
|
||||||
@@ -160,7 +160,7 @@ export class HaStateLabelBadge extends LitElement {
|
|||||||
private _computeValue(
|
private _computeValue(
|
||||||
domain: string,
|
domain: string,
|
||||||
entityState: HassEntity,
|
entityState: HassEntity,
|
||||||
entry?: EntityRegistryDisplayEntry
|
entry?: EntityRegistryEntry
|
||||||
) {
|
) {
|
||||||
switch (domain) {
|
switch (domain) {
|
||||||
case "alarm_control_panel":
|
case "alarm_control_panel":
|
||||||
@@ -186,7 +186,7 @@ export class HaStateLabelBadge extends LitElement {
|
|||||||
? formatNumber(
|
? formatNumber(
|
||||||
entityState.state,
|
entityState.state,
|
||||||
this.hass!.locale,
|
this.hass!.locale,
|
||||||
getNumberFormatOptions(entityState, entry)
|
getNumberFormatOptions(entityState)
|
||||||
)
|
)
|
||||||
: computeStateDisplay(
|
: computeStateDisplay(
|
||||||
this.hass!.localize,
|
this.hass!.localize,
|
||||||
@@ -200,7 +200,7 @@ export class HaStateLabelBadge extends LitElement {
|
|||||||
private _computeShowIcon(
|
private _computeShowIcon(
|
||||||
domain: string,
|
domain: string,
|
||||||
entityState: HassEntity,
|
entityState: HassEntity,
|
||||||
entry?: EntityRegistryDisplayEntry
|
entry?: EntityRegistryEntry
|
||||||
): boolean {
|
): boolean {
|
||||||
if (entityState.state === UNAVAILABLE) {
|
if (entityState.state === UNAVAILABLE) {
|
||||||
return false;
|
return false;
|
||||||
|
@@ -133,7 +133,7 @@ export class StateBadge extends LitElement {
|
|||||||
}
|
}
|
||||||
if (stateObj.attributes.hvac_action) {
|
if (stateObj.attributes.hvac_action) {
|
||||||
const hvacAction = stateObj.attributes.hvac_action;
|
const hvacAction = stateObj.attributes.hvac_action;
|
||||||
if (hvacAction in HVAC_ACTION_TO_MODE) {
|
if (["heating", "cooling", "drying", "fan"].includes(hvacAction)) {
|
||||||
iconStyle.color = stateColorCss(
|
iconStyle.color = stateColorCss(
|
||||||
stateObj,
|
stateObj,
|
||||||
HVAC_ACTION_TO_MODE[hvacAction]
|
HVAC_ACTION_TO_MODE[hvacAction]
|
||||||
|
@@ -37,10 +37,13 @@ class HaAlert extends LitElement {
|
|||||||
|
|
||||||
@property({ type: Boolean }) public dismissable = false;
|
@property({ type: Boolean }) public dismissable = false;
|
||||||
|
|
||||||
|
@property({ type: Boolean }) public rtl = false;
|
||||||
|
|
||||||
public render() {
|
public render() {
|
||||||
return html`
|
return html`
|
||||||
<div
|
<div
|
||||||
class="issue-type ${classMap({
|
class="issue-type ${classMap({
|
||||||
|
rtl: this.rtl,
|
||||||
[this.alertType]: true,
|
[this.alertType]: true,
|
||||||
})}"
|
})}"
|
||||||
role="alert"
|
role="alert"
|
||||||
@@ -81,6 +84,9 @@ class HaAlert extends LitElement {
|
|||||||
padding: 8px;
|
padding: 8px;
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
.issue-type.rtl {
|
||||||
|
flex-direction: row-reverse;
|
||||||
|
}
|
||||||
.issue-type::after {
|
.issue-type::after {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
@@ -98,12 +104,15 @@ class HaAlert extends LitElement {
|
|||||||
.icon.no-title {
|
.icon.no-title {
|
||||||
align-self: center;
|
align-self: center;
|
||||||
}
|
}
|
||||||
|
.issue-type.rtl > .content {
|
||||||
|
flex-direction: row-reverse;
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
.content {
|
.content {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
text-align: var(--float-start);
|
|
||||||
}
|
}
|
||||||
.action {
|
.action {
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
@@ -115,9 +124,10 @@ class HaAlert extends LitElement {
|
|||||||
word-break: break-word;
|
word-break: break-word;
|
||||||
margin-left: 8px;
|
margin-left: 8px;
|
||||||
margin-right: 0;
|
margin-right: 0;
|
||||||
margin-inline-start: 8px;
|
}
|
||||||
margin-inline-end: 0;
|
.issue-type.rtl > .content > .main-content {
|
||||||
direction: var(--direction);
|
margin-left: 0;
|
||||||
|
margin-right: 8px;
|
||||||
}
|
}
|
||||||
.title {
|
.title {
|
||||||
margin-top: 2px;
|
margin-top: 2px;
|
||||||
|
@@ -1,6 +1,4 @@
|
|||||||
import "@material/mwc-list/mwc-list-item";
|
|
||||||
import { ComboBoxLitRenderer } from "@vaadin/combo-box/lit";
|
import { ComboBoxLitRenderer } from "@vaadin/combo-box/lit";
|
||||||
import { HassEntity } from "home-assistant-js-websocket";
|
|
||||||
import { html, LitElement, PropertyValues, TemplateResult } from "lit";
|
import { html, LitElement, PropertyValues, TemplateResult } from "lit";
|
||||||
import { customElement, property, query, state } from "lit/decorators";
|
import { customElement, property, query, state } from "lit/decorators";
|
||||||
import { classMap } from "lit/directives/class-map";
|
import { classMap } from "lit/directives/class-map";
|
||||||
@@ -12,11 +10,10 @@ import {
|
|||||||
createAreaRegistryEntry,
|
createAreaRegistryEntry,
|
||||||
} from "../data/area_registry";
|
} from "../data/area_registry";
|
||||||
import {
|
import {
|
||||||
DeviceEntityDisplayLookup,
|
DeviceEntityLookup,
|
||||||
DeviceRegistryEntry,
|
DeviceRegistryEntry,
|
||||||
getDeviceEntityDisplayLookup,
|
|
||||||
} from "../data/device_registry";
|
} from "../data/device_registry";
|
||||||
import { EntityRegistryDisplayEntry } from "../data/entity_registry";
|
import { EntityRegistryEntry } from "../data/entity_registry";
|
||||||
import {
|
import {
|
||||||
showAlertDialog,
|
showAlertDialog,
|
||||||
showPromptDialog,
|
showPromptDialog,
|
||||||
@@ -86,7 +83,7 @@ export class HaAreaPicker extends LitElement {
|
|||||||
|
|
||||||
@property() public deviceFilter?: HaDevicePickerDeviceFilterFunc;
|
@property() public deviceFilter?: HaDevicePickerDeviceFilterFunc;
|
||||||
|
|
||||||
@property() public entityFilter?: (entity: HassEntity) => boolean;
|
@property() public entityFilter?: (entity: EntityRegistryEntry) => boolean;
|
||||||
|
|
||||||
@property({ type: Boolean }) public disabled?: boolean;
|
@property({ type: Boolean }) public disabled?: boolean;
|
||||||
|
|
||||||
@@ -114,7 +111,7 @@ export class HaAreaPicker extends LitElement {
|
|||||||
(
|
(
|
||||||
areas: AreaRegistryEntry[],
|
areas: AreaRegistryEntry[],
|
||||||
devices: DeviceRegistryEntry[],
|
devices: DeviceRegistryEntry[],
|
||||||
entities: EntityRegistryDisplayEntry[],
|
entities: EntityRegistryEntry[],
|
||||||
includeDomains: this["includeDomains"],
|
includeDomains: this["includeDomains"],
|
||||||
excludeDomains: this["excludeDomains"],
|
excludeDomains: this["excludeDomains"],
|
||||||
includeDeviceClasses: this["includeDeviceClasses"],
|
includeDeviceClasses: this["includeDeviceClasses"],
|
||||||
@@ -134,107 +131,96 @@ export class HaAreaPicker extends LitElement {
|
|||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
let deviceEntityLookup: DeviceEntityDisplayLookup = {};
|
const deviceEntityLookup: DeviceEntityLookup = {};
|
||||||
let inputDevices: DeviceRegistryEntry[] | undefined;
|
let inputDevices: DeviceRegistryEntry[] | undefined;
|
||||||
let inputEntities: EntityRegistryDisplayEntry[] | undefined;
|
let inputEntities: EntityRegistryEntry[] | undefined;
|
||||||
|
|
||||||
if (
|
if (includeDomains || excludeDomains || includeDeviceClasses) {
|
||||||
includeDomains ||
|
for (const entity of entities) {
|
||||||
excludeDomains ||
|
if (!entity.device_id) {
|
||||||
includeDeviceClasses ||
|
continue;
|
||||||
deviceFilter ||
|
}
|
||||||
entityFilter
|
if (!(entity.device_id in deviceEntityLookup)) {
|
||||||
) {
|
deviceEntityLookup[entity.device_id] = [];
|
||||||
deviceEntityLookup = getDeviceEntityDisplayLookup(entities);
|
}
|
||||||
|
deviceEntityLookup[entity.device_id].push(entity);
|
||||||
|
}
|
||||||
inputDevices = devices;
|
inputDevices = devices;
|
||||||
inputEntities = entities.filter((entity) => entity.area_id);
|
inputEntities = entities.filter((entity) => entity.area_id);
|
||||||
|
} else {
|
||||||
|
if (deviceFilter) {
|
||||||
|
inputDevices = devices;
|
||||||
|
}
|
||||||
|
if (entityFilter) {
|
||||||
|
inputEntities = entities.filter((entity) => entity.area_id);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (includeDomains) {
|
if (includeDomains) {
|
||||||
inputDevices = inputDevices!.filter((device) => {
|
inputDevices = inputDevices!.filter((device) => {
|
||||||
const devEntities = deviceEntityLookup[device.id];
|
const devEntities = deviceEntityLookup[device.id];
|
||||||
if (!devEntities || !devEntities.length) {
|
if (!devEntities || !devEntities.length) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return deviceEntityLookup[device.id].some((entity) =>
|
return deviceEntityLookup[device.id].some((entity) =>
|
||||||
includeDomains.includes(computeDomain(entity.entity_id))
|
|
||||||
);
|
|
||||||
});
|
|
||||||
inputEntities = inputEntities!.filter((entity) =>
|
|
||||||
includeDomains.includes(computeDomain(entity.entity_id))
|
includeDomains.includes(computeDomain(entity.entity_id))
|
||||||
);
|
);
|
||||||
}
|
});
|
||||||
|
inputEntities = inputEntities!.filter((entity) =>
|
||||||
|
includeDomains.includes(computeDomain(entity.entity_id))
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
if (excludeDomains) {
|
if (excludeDomains) {
|
||||||
inputDevices = inputDevices!.filter((device) => {
|
inputDevices = inputDevices!.filter((device) => {
|
||||||
const devEntities = deviceEntityLookup[device.id];
|
const devEntities = deviceEntityLookup[device.id];
|
||||||
if (!devEntities || !devEntities.length) {
|
if (!devEntities || !devEntities.length) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return entities.every(
|
return entities.every(
|
||||||
(entity) =>
|
|
||||||
!excludeDomains.includes(computeDomain(entity.entity_id))
|
|
||||||
);
|
|
||||||
});
|
|
||||||
inputEntities = inputEntities!.filter(
|
|
||||||
(entity) =>
|
(entity) =>
|
||||||
!excludeDomains.includes(computeDomain(entity.entity_id))
|
!excludeDomains.includes(computeDomain(entity.entity_id))
|
||||||
);
|
);
|
||||||
}
|
});
|
||||||
|
inputEntities = inputEntities!.filter(
|
||||||
|
(entity) => !excludeDomains.includes(computeDomain(entity.entity_id))
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
if (includeDeviceClasses) {
|
if (includeDeviceClasses) {
|
||||||
inputDevices = inputDevices!.filter((device) => {
|
inputDevices = inputDevices!.filter((device) => {
|
||||||
const devEntities = deviceEntityLookup[device.id];
|
const devEntities = deviceEntityLookup[device.id];
|
||||||
if (!devEntities || !devEntities.length) {
|
if (!devEntities || !devEntities.length) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return deviceEntityLookup[device.id].some((entity) => {
|
||||||
|
const stateObj = this.hass.states[entity.entity_id];
|
||||||
|
if (!stateObj) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return deviceEntityLookup[device.id].some((entity) => {
|
|
||||||
const stateObj = this.hass.states[entity.entity_id];
|
|
||||||
if (!stateObj) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return (
|
|
||||||
stateObj.attributes.device_class &&
|
|
||||||
includeDeviceClasses.includes(stateObj.attributes.device_class)
|
|
||||||
);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
inputEntities = inputEntities!.filter((entity) => {
|
|
||||||
const stateObj = this.hass.states[entity.entity_id];
|
|
||||||
return (
|
return (
|
||||||
stateObj.attributes.device_class &&
|
stateObj.attributes.device_class &&
|
||||||
includeDeviceClasses.includes(stateObj.attributes.device_class)
|
includeDeviceClasses.includes(stateObj.attributes.device_class)
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
}
|
});
|
||||||
|
inputEntities = inputEntities!.filter((entity) => {
|
||||||
if (deviceFilter) {
|
const stateObj = this.hass.states[entity.entity_id];
|
||||||
inputDevices = inputDevices!.filter((device) =>
|
return (
|
||||||
deviceFilter!(device)
|
stateObj.attributes.device_class &&
|
||||||
|
includeDeviceClasses.includes(stateObj.attributes.device_class)
|
||||||
);
|
);
|
||||||
}
|
});
|
||||||
|
}
|
||||||
|
|
||||||
if (entityFilter) {
|
if (deviceFilter) {
|
||||||
inputDevices = inputDevices!.filter((device) => {
|
inputDevices = inputDevices!.filter((device) => deviceFilter!(device));
|
||||||
const devEntities = deviceEntityLookup[device.id];
|
}
|
||||||
if (!devEntities || !devEntities.length) {
|
|
||||||
return false;
|
if (entityFilter) {
|
||||||
}
|
inputEntities = inputEntities!.filter((entity) =>
|
||||||
return deviceEntityLookup[device.id].some((entity) => {
|
entityFilter!(entity)
|
||||||
const stateObj = this.hass.states[entity.entity_id];
|
);
|
||||||
if (!stateObj) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return entityFilter(stateObj);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
inputEntities = inputEntities!.filter((entity) => {
|
|
||||||
const stateObj = this.hass.states[entity.entity_id];
|
|
||||||
if (!stateObj) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return entityFilter!(stateObj);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
let outputAreas = areas;
|
let outputAreas = areas;
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
import { HassEntity } from "home-assistant-js-websocket";
|
|
||||||
import { css, html, LitElement, TemplateResult } from "lit";
|
import { css, html, LitElement, TemplateResult } from "lit";
|
||||||
import { customElement, property } from "lit/decorators";
|
import { customElement, property } from "lit/decorators";
|
||||||
import { fireEvent } from "../common/dom/fire_event";
|
import { fireEvent } from "../common/dom/fire_event";
|
||||||
|
import type { EntityRegistryEntry } from "../data/entity_registry";
|
||||||
import { SubscribeMixin } from "../mixins/subscribe-mixin";
|
import { SubscribeMixin } from "../mixins/subscribe-mixin";
|
||||||
import type { HomeAssistant } from "../types";
|
import type { HomeAssistant } from "../types";
|
||||||
import type { HaDevicePickerDeviceFilterFunc } from "./device/ha-device-picker";
|
import type { HaDevicePickerDeviceFilterFunc } from "./device/ha-device-picker";
|
||||||
@@ -48,7 +48,7 @@ export class HaAreasPicker extends SubscribeMixin(LitElement) {
|
|||||||
|
|
||||||
@property() public deviceFilter?: HaDevicePickerDeviceFilterFunc;
|
@property() public deviceFilter?: HaDevicePickerDeviceFilterFunc;
|
||||||
|
|
||||||
@property() public entityFilter?: (entity: HassEntity) => boolean;
|
@property() public entityFilter?: (entity: EntityRegistryEntry) => boolean;
|
||||||
|
|
||||||
@property({ attribute: "picked-area-label" })
|
@property({ attribute: "picked-area-label" })
|
||||||
public pickedAreaLabel?: string;
|
public pickedAreaLabel?: string;
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
import { DIRECTION_ALL, Manager, Pan, Tap } from "@egjs/hammerjs";
|
import "hammerjs";
|
||||||
import {
|
import {
|
||||||
css,
|
css,
|
||||||
CSSResultGroup,
|
CSSResultGroup,
|
||||||
@@ -42,9 +42,9 @@ const getPercentageFromEvent = (e: HammerInput, vertical: boolean) => {
|
|||||||
return Math.max(Math.min(1, (x - offset) / total), 0);
|
return Math.max(Math.min(1, (x - offset) / total), 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
@customElement("ha-control-slider")
|
@customElement("ha-bar-slider")
|
||||||
export class HaControlSlider extends LitElement {
|
export class HaBarSlider extends LitElement {
|
||||||
@property({ type: Boolean, reflect: true })
|
@property({ type: Boolean })
|
||||||
public disabled = false;
|
public disabled = false;
|
||||||
|
|
||||||
@property()
|
@property()
|
||||||
@@ -131,18 +131,18 @@ export class HaControlSlider extends LitElement {
|
|||||||
|
|
||||||
setupListeners() {
|
setupListeners() {
|
||||||
if (this.slider && !this._mc) {
|
if (this.slider && !this._mc) {
|
||||||
this._mc = new Manager(this.slider, {
|
this._mc = new Hammer.Manager(this.slider, {
|
||||||
touchAction: this.vertical ? "pan-x" : "pan-y",
|
touchAction: this.vertical ? "pan-x" : "pan-y",
|
||||||
});
|
});
|
||||||
this._mc.add(
|
this._mc.add(
|
||||||
new Pan({
|
new Hammer.Pan({
|
||||||
threshold: 10,
|
threshold: 10,
|
||||||
direction: DIRECTION_ALL,
|
direction: Hammer.DIRECTION_ALL,
|
||||||
enable: true,
|
enable: true,
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
|
||||||
this._mc.add(new Tap({ event: "singletap" }));
|
this._mc.add(new Hammer.Tap({ event: "singletap" }));
|
||||||
|
|
||||||
let savedValue;
|
let savedValue;
|
||||||
this._mc.on("panstart", () => {
|
this._mc.on("panstart", () => {
|
||||||
@@ -245,16 +245,14 @@ export class HaControlSlider extends LitElement {
|
|||||||
>
|
>
|
||||||
<div class="slider-track-background"></div>
|
<div class="slider-track-background"></div>
|
||||||
${this.mode === "cursor"
|
${this.mode === "cursor"
|
||||||
? this.value != null
|
? html`
|
||||||
? html`
|
<div
|
||||||
<div
|
class=${classMap({
|
||||||
class=${classMap({
|
"slider-track-cursor": true,
|
||||||
"slider-track-cursor": true,
|
vertical: this.vertical,
|
||||||
vertical: this.vertical,
|
})}
|
||||||
})}
|
></div>
|
||||||
></div>
|
`
|
||||||
`
|
|
||||||
: null
|
|
||||||
: html`
|
: html`
|
||||||
<div
|
<div
|
||||||
class=${classMap({
|
class=${classMap({
|
||||||
@@ -273,29 +271,28 @@ export class HaControlSlider extends LitElement {
|
|||||||
return css`
|
return css`
|
||||||
:host {
|
:host {
|
||||||
display: block;
|
display: block;
|
||||||
--control-slider-color: var(--primary-color);
|
--slider-bar-color: var(--primary-color);
|
||||||
--control-slider-background: var(--disabled-color);
|
--slider-bar-background: var(--disabled-color);
|
||||||
--control-slider-background-opacity: 0.2;
|
--slider-bar-background-opacity: 0.2;
|
||||||
--control-slider-thickness: 40px;
|
--slider-bar-thickness: 40px;
|
||||||
--control-slider-border-radius: 10px;
|
--slider-bar-border-radius: 10px;
|
||||||
height: var(--control-slider-thickness);
|
height: var(--slider-bar-thickness);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border-radius: var(--control-slider-border-radius);
|
border-radius: var(--slider-bar-border-radius);
|
||||||
outline: none;
|
outline: none;
|
||||||
transition: box-shadow 180ms ease-in-out;
|
|
||||||
}
|
}
|
||||||
:host(:focus-visible) {
|
:host(:focus-visible) {
|
||||||
box-shadow: 0 0 0 2px var(--control-slider-color);
|
box-shadow: 0 0 0 2px var(--slider-bar-color);
|
||||||
}
|
}
|
||||||
:host([vertical]) {
|
:host([vertical]) {
|
||||||
width: var(--control-slider-thickness);
|
width: var(--slider-bar-thickness);
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
.slider {
|
.slider {
|
||||||
position: relative;
|
position: relative;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border-radius: var(--control-slider-border-radius);
|
border-radius: var(--slider-bar-border-radius);
|
||||||
transform: translateZ(0);
|
transform: translateZ(0);
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
@@ -309,20 +306,19 @@ export class HaControlSlider extends LitElement {
|
|||||||
left: 0;
|
left: 0;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
background: var(--control-slider-background);
|
background: var(--slider-bar-background);
|
||||||
opacity: var(--control-slider-background-opacity);
|
opacity: var(--slider-bar-background-opacity);
|
||||||
}
|
}
|
||||||
.slider .slider-track-bar {
|
.slider .slider-track-bar {
|
||||||
--border-radius: var(--control-slider-border-radius);
|
--border-radius: var(--slider-bar-border-radius);
|
||||||
--handle-size: 4px;
|
--handle-size: 4px;
|
||||||
--handle-margin: calc(var(--control-slider-thickness) / 8);
|
--handle-margin: calc(var(--slider-bar-thickness) / 8);
|
||||||
--slider-size: 100%;
|
--slider-size: 100%;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
background-color: var(--control-slider-color);
|
background-color: var(--slider-bar-color);
|
||||||
transition: transform 180ms ease-in-out,
|
transition: transform 180ms ease-in-out;
|
||||||
background-color 180ms ease-in-out;
|
|
||||||
}
|
}
|
||||||
.slider .slider-track-bar.show-handle {
|
.slider .slider-track-bar.show-handle {
|
||||||
--slider-size: calc(
|
--slider-size: calc(
|
||||||
@@ -416,7 +412,7 @@ export class HaControlSlider extends LitElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.slider .slider-track-cursor {
|
.slider .slider-track-cursor {
|
||||||
--cursor-size: calc(var(--control-slider-thickness) / 4);
|
--cursor-size: calc(var(--slider-bar-thickness) / 4);
|
||||||
--handle-size: 4px;
|
--handle-size: 4px;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
background-color: white;
|
background-color: white;
|
||||||
@@ -449,15 +445,12 @@ export class HaControlSlider extends LitElement {
|
|||||||
:host([pressed]) .slider-track-cursor {
|
:host([pressed]) .slider-track-cursor {
|
||||||
transition: none;
|
transition: none;
|
||||||
}
|
}
|
||||||
:host(:disabled) .slider {
|
|
||||||
cursor: not-allowed;
|
|
||||||
}
|
|
||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLElementTagNameMap {
|
interface HTMLElementTagNameMap {
|
||||||
"ha-control-slider": HaControlSlider;
|
"ha-bar-slider": HaBarSlider;
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -1,10 +1,3 @@
|
|||||||
import {
|
|
||||||
DIRECTION_HORIZONTAL,
|
|
||||||
DIRECTION_VERTICAL,
|
|
||||||
Manager,
|
|
||||||
Swipe,
|
|
||||||
Tap,
|
|
||||||
} from "@egjs/hammerjs";
|
|
||||||
import {
|
import {
|
||||||
css,
|
css,
|
||||||
CSSResultGroup,
|
CSSResultGroup,
|
||||||
@@ -13,13 +6,13 @@ import {
|
|||||||
PropertyValues,
|
PropertyValues,
|
||||||
TemplateResult,
|
TemplateResult,
|
||||||
} from "lit";
|
} from "lit";
|
||||||
import { customElement, property, query } from "lit/decorators";
|
import { customElement, property } from "lit/decorators";
|
||||||
import { fireEvent } from "../common/dom/fire_event";
|
import { fireEvent } from "../common/dom/fire_event";
|
||||||
import "./ha-svg-icon";
|
import "./ha-svg-icon";
|
||||||
|
|
||||||
@customElement("ha-control-switch")
|
@customElement("ha-bar-switch")
|
||||||
export class HaControlSwitch extends LitElement {
|
export class HaBarSwitch extends LitElement {
|
||||||
@property({ type: Boolean, reflect: true })
|
@property({ type: Boolean, attribute: "disabled" })
|
||||||
public disabled = false;
|
public disabled = false;
|
||||||
|
|
||||||
@property({ type: Boolean })
|
@property({ type: Boolean })
|
||||||
@@ -37,11 +30,8 @@ export class HaControlSwitch extends LitElement {
|
|||||||
// SVG icon path (if you need a non SVG icon instead, use the provided off icon slot to pass an <ha-icon slot="icon-off"> in)
|
// SVG icon path (if you need a non SVG icon instead, use the provided off icon slot to pass an <ha-icon slot="icon-off"> in)
|
||||||
@property({ type: String }) pathOff?: string;
|
@property({ type: String }) pathOff?: string;
|
||||||
|
|
||||||
private _mc?: HammerManager;
|
|
||||||
|
|
||||||
protected firstUpdated(changedProperties: PropertyValues): void {
|
protected firstUpdated(changedProperties: PropertyValues): void {
|
||||||
super.firstUpdated(changedProperties);
|
super.firstUpdated(changedProperties);
|
||||||
this.setupListeners();
|
|
||||||
this.setAttribute("role", "switch");
|
this.setAttribute("role", "switch");
|
||||||
if (!this.hasAttribute("tabindex")) {
|
if (!this.hasAttribute("tabindex")) {
|
||||||
this.setAttribute("tabindex", "0");
|
this.setAttribute("tabindex", "0");
|
||||||
@@ -50,7 +40,7 @@ export class HaControlSwitch extends LitElement {
|
|||||||
|
|
||||||
protected updated(changedProps: PropertyValues) {
|
protected updated(changedProps: PropertyValues) {
|
||||||
super.updated(changedProps);
|
super.updated(changedProps);
|
||||||
if (changedProps.has("checked")) {
|
if (changedProps.has("value")) {
|
||||||
this.setAttribute("aria-checked", this.checked ? "true" : "false");
|
this.setAttribute("aria-checked", this.checked ? "true" : "false");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -63,70 +53,14 @@ export class HaControlSwitch extends LitElement {
|
|||||||
|
|
||||||
connectedCallback(): void {
|
connectedCallback(): void {
|
||||||
super.connectedCallback();
|
super.connectedCallback();
|
||||||
this.setupListeners();
|
this.addEventListener("keydown", this._keydown);
|
||||||
|
this.addEventListener("click", this._toggle);
|
||||||
}
|
}
|
||||||
|
|
||||||
disconnectedCallback(): void {
|
disconnectedCallback(): void {
|
||||||
super.disconnectedCallback();
|
super.disconnectedCallback();
|
||||||
this.destroyListeners();
|
|
||||||
}
|
|
||||||
|
|
||||||
@query("#switch")
|
|
||||||
private switch!: HTMLDivElement;
|
|
||||||
|
|
||||||
setupListeners() {
|
|
||||||
if (this.switch && !this._mc) {
|
|
||||||
this._mc = new Manager(this.switch, {
|
|
||||||
touchAction: this.vertical ? "pan-x" : "pan-y",
|
|
||||||
});
|
|
||||||
this._mc.add(
|
|
||||||
new Swipe({
|
|
||||||
direction: this.vertical ? DIRECTION_VERTICAL : DIRECTION_HORIZONTAL,
|
|
||||||
})
|
|
||||||
);
|
|
||||||
|
|
||||||
this._mc.add(new Tap({ event: "singletap" }));
|
|
||||||
|
|
||||||
if (this.vertical) {
|
|
||||||
this._mc.on("swipeup", () => {
|
|
||||||
if (this.disabled) return;
|
|
||||||
this.checked = !!this.reversed;
|
|
||||||
fireEvent(this, "change");
|
|
||||||
});
|
|
||||||
|
|
||||||
this._mc.on("swipedown", () => {
|
|
||||||
if (this.disabled) return;
|
|
||||||
this.checked = !this.reversed;
|
|
||||||
fireEvent(this, "change");
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
this._mc.on("swiperight", () => {
|
|
||||||
if (this.disabled) return;
|
|
||||||
this.checked = !this.reversed;
|
|
||||||
fireEvent(this, "change");
|
|
||||||
});
|
|
||||||
|
|
||||||
this._mc.on("swipeleft", () => {
|
|
||||||
if (this.disabled) return;
|
|
||||||
this.checked = !!this.reversed;
|
|
||||||
fireEvent(this, "change");
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
this._mc.on("singletap", () => {
|
|
||||||
if (this.disabled) return;
|
|
||||||
this._toggle();
|
|
||||||
});
|
|
||||||
this.addEventListener("keydown", this._keydown);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
destroyListeners() {
|
|
||||||
if (this._mc) {
|
|
||||||
this._mc.destroy();
|
|
||||||
this._mc = undefined;
|
|
||||||
}
|
|
||||||
this.removeEventListener("keydown", this._keydown);
|
this.removeEventListener("keydown", this._keydown);
|
||||||
|
this.removeEventListener("click", this._toggle);
|
||||||
}
|
}
|
||||||
|
|
||||||
private _keydown(ev: any) {
|
private _keydown(ev: any) {
|
||||||
@@ -139,7 +73,7 @@ export class HaControlSwitch extends LitElement {
|
|||||||
|
|
||||||
protected render(): TemplateResult {
|
protected render(): TemplateResult {
|
||||||
return html`
|
return html`
|
||||||
<div id="switch" class="switch">
|
<div class="switch">
|
||||||
<div class="background"></div>
|
<div class="background"></div>
|
||||||
<div class="button" aria-hidden="true">
|
<div class="button" aria-hidden="true">
|
||||||
${this.checked
|
${this.checked
|
||||||
@@ -158,37 +92,35 @@ export class HaControlSwitch extends LitElement {
|
|||||||
return css`
|
return css`
|
||||||
:host {
|
:host {
|
||||||
display: block;
|
display: block;
|
||||||
--control-switch-on-color: var(--primary-color);
|
--switch-bar-on-color: var(--primary-color);
|
||||||
--control-switch-off-color: var(--disabled-color);
|
--switch-bar-off-color: var(--disabled-color);
|
||||||
--control-switch-background-opacity: 0.2;
|
--switch-bar-background-opacity: 0.2;
|
||||||
--control-switch-thickness: 40px;
|
--switch-bar-thickness: 40px;
|
||||||
--control-switch-border-radius: 12px;
|
--switch-bar-border-radius: 12px;
|
||||||
--control-switch-padding: 4px;
|
--switch-bar-padding: 4px;
|
||||||
--mdc-icon-size: 20px;
|
--mdc-icon-size: 20px;
|
||||||
height: var(--control-switch-thickness);
|
height: var(--switch-bar-thickness);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
border-radius: var(--control-switch-border-radius);
|
border-radius: var(--switch-bar-border-radius);
|
||||||
outline: none;
|
outline: none;
|
||||||
transition: box-shadow 180ms ease-in-out;
|
|
||||||
-webkit-tap-highlight-color: transparent;
|
|
||||||
}
|
}
|
||||||
:host(:focus-visible) {
|
:host(:focus-visible) {
|
||||||
box-shadow: 0 0 0 2px var(--control-switch-off-color);
|
box-shadow: 0 0 0 2px var(--switch-bar-off-color);
|
||||||
}
|
}
|
||||||
:host([checked]:focus-visible) {
|
:host([checked]:focus-visible) {
|
||||||
box-shadow: 0 0 0 2px var(--control-switch-on-color);
|
box-shadow: 0 0 0 2px var(--switch-bar-on-color);
|
||||||
}
|
}
|
||||||
.switch {
|
.switch {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
position: relative;
|
position: relative;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border-radius: var(--control-switch-border-radius);
|
border-radius: var(--switch-bar-border-radius);
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
padding: var(--control-switch-padding);
|
padding: var(--switch-bar-padding);
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
.switch .background {
|
.switch .background {
|
||||||
@@ -197,31 +129,31 @@ export class HaControlSwitch extends LitElement {
|
|||||||
left: 0;
|
left: 0;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
background-color: var(--control-switch-off-color);
|
background-color: var(--switch-bar-off-color);
|
||||||
transition: background-color 180ms ease-in-out;
|
transition: background-color 180ms ease-in-out;
|
||||||
opacity: var(--control-switch-background-opacity);
|
opacity: var(--switch-bar-background-opacity);
|
||||||
}
|
}
|
||||||
.switch .button {
|
.switch .button {
|
||||||
width: 50%;
|
width: 50%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background: lightgrey;
|
background: lightgrey;
|
||||||
border-radius: calc(
|
border-radius: calc(
|
||||||
var(--control-switch-border-radius) - var(--control-switch-padding)
|
var(--switch-bar-border-radius) - var(--switch-bar-padding)
|
||||||
);
|
);
|
||||||
transition: transform 180ms ease-in-out,
|
transition: transform 180ms ease-in-out,
|
||||||
background-color 180ms ease-in-out;
|
background-color 180ms ease-in-out;
|
||||||
background-color: var(--control-switch-off-color);
|
background-color: var(--switch-bar-off-color);
|
||||||
color: white;
|
color: white;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
:host([checked]) .switch .background {
|
:host([checked]) .switch .background {
|
||||||
background-color: var(--control-switch-on-color);
|
background-color: var(--switch-bar-on-color);
|
||||||
}
|
}
|
||||||
:host([checked]) .switch .button {
|
:host([checked]) .switch .button {
|
||||||
transform: translateX(100%);
|
transform: translateX(100%);
|
||||||
background-color: var(--control-switch-on-color);
|
background-color: var(--switch-bar-on-color);
|
||||||
}
|
}
|
||||||
:host([reversed]) .switch {
|
:host([reversed]) .switch {
|
||||||
flex-direction: row-reverse;
|
flex-direction: row-reverse;
|
||||||
@@ -230,7 +162,7 @@ export class HaControlSwitch extends LitElement {
|
|||||||
transform: translateX(-100%);
|
transform: translateX(-100%);
|
||||||
}
|
}
|
||||||
:host([vertical]) {
|
:host([vertical]) {
|
||||||
width: var(--control-switch-thickness);
|
width: var(--switch-bar-thickness);
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
:host([vertical][checked]) .switch .button {
|
:host([vertical][checked]) .switch .button {
|
||||||
@@ -256,6 +188,6 @@ export class HaControlSwitch extends LitElement {
|
|||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLElementTagNameMap {
|
interface HTMLElementTagNameMap {
|
||||||
"ha-control-switch": HaControlSwitch;
|
"ha-bar-switch": HaBarSwitch;
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -41,9 +41,9 @@ class HaBluePrintPicker extends LitElement {
|
|||||||
return [];
|
return [];
|
||||||
}
|
}
|
||||||
const result = Object.entries(blueprints)
|
const result = Object.entries(blueprints)
|
||||||
.filter((entry): entry is [string, Blueprint] => !("error" in entry[1]))
|
.filter(([_path, blueprint]) => !("error" in blueprint))
|
||||||
.map(([path, blueprint]) => ({
|
.map(([path, blueprint]) => ({
|
||||||
...blueprint.metadata,
|
...(blueprint as Blueprint).metadata,
|
||||||
path,
|
path,
|
||||||
}));
|
}));
|
||||||
return result.sort((a, b) =>
|
return result.sort((a, b) =>
|
||||||
|
@@ -1,24 +0,0 @@
|
|||||||
import { Button } from "@material/mwc-button";
|
|
||||||
import { css } from "lit";
|
|
||||||
import { customElement } from "lit/decorators";
|
|
||||||
import { styles } from "@material/mwc-button/styles.css";
|
|
||||||
|
|
||||||
@customElement("ha-button")
|
|
||||||
export class HaButton extends Button {
|
|
||||||
static override styles = [
|
|
||||||
styles,
|
|
||||||
css`
|
|
||||||
::slotted([slot="icon"]) {
|
|
||||||
margin-inline-start: 0px;
|
|
||||||
margin-inline-end: 8px;
|
|
||||||
direction: var(--direction);
|
|
||||||
}
|
|
||||||
`,
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
declare global {
|
|
||||||
interface HTMLElementTagNameMap {
|
|
||||||
"ha-button": HaButton;
|
|
||||||
}
|
|
||||||
}
|
|
@@ -13,15 +13,6 @@ export class HaCheckListItem extends CheckListItemBase {
|
|||||||
:host {
|
:host {
|
||||||
--mdc-theme-secondary: var(--primary-color);
|
--mdc-theme-secondary: var(--primary-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
:host([graphic="avatar"]) .mdc-deprecated-list-item__graphic,
|
|
||||||
:host([graphic="medium"]) .mdc-deprecated-list-item__graphic,
|
|
||||||
:host([graphic="large"]) .mdc-deprecated-list-item__graphic,
|
|
||||||
:host([graphic="control"]) .mdc-deprecated-list-item__graphic {
|
|
||||||
margin-inline-end: var(--mdc-list-item-graphic-margin, 16px);
|
|
||||||
margin-inline-start: 0px;
|
|
||||||
direction: var(--direction);
|
|
||||||
}
|
|
||||||
`,
|
`,
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
@@ -17,8 +17,11 @@ export class HaClickableListItem extends HaListItem {
|
|||||||
const href = this.href || "";
|
const href = this.href || "";
|
||||||
|
|
||||||
return html`${this.disableHref
|
return html`${this.disableHref
|
||||||
? html`<a>${r}</a>`
|
? html`<a aria-role="option">${r}</a>`
|
||||||
: html`<a target=${this.openNewTab ? "_blank" : ""} href=${href}
|
: html`<a
|
||||||
|
aria-role="option"
|
||||||
|
target=${this.openNewTab ? "_blank" : ""}
|
||||||
|
href=${href}
|
||||||
>${r}</a
|
>${r}</a
|
||||||
>`}`;
|
>`}`;
|
||||||
}
|
}
|
||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
import "@material/mwc-list/mwc-list-item";
|
||||||
import { mdiClose, mdiMenuDown, mdiMenuUp } from "@mdi/js";
|
import { mdiClose, mdiMenuDown, mdiMenuUp } from "@mdi/js";
|
||||||
import { ComboBoxLitRenderer, comboBoxRenderer } from "@vaadin/combo-box/lit";
|
import { ComboBoxLitRenderer, comboBoxRenderer } from "@vaadin/combo-box/lit";
|
||||||
import "@vaadin/combo-box/theme/material/vaadin-combo-box-light";
|
import "@vaadin/combo-box/theme/material/vaadin-combo-box-light";
|
||||||
@@ -14,15 +15,15 @@ import { customElement, property, query } from "lit/decorators";
|
|||||||
import { ifDefined } from "lit/directives/if-defined";
|
import { ifDefined } from "lit/directives/if-defined";
|
||||||
import { fireEvent } from "../common/dom/fire_event";
|
import { fireEvent } from "../common/dom/fire_event";
|
||||||
import { HomeAssistant } from "../types";
|
import { HomeAssistant } from "../types";
|
||||||
import "./ha-list-item";
|
|
||||||
import "./ha-icon-button";
|
import "./ha-icon-button";
|
||||||
|
import "./ha-textfield";
|
||||||
import type { HaTextField } from "./ha-textfield";
|
import type { HaTextField } from "./ha-textfield";
|
||||||
|
|
||||||
registerStyles(
|
registerStyles(
|
||||||
"vaadin-combo-box-item",
|
"vaadin-combo-box-item",
|
||||||
css`
|
css`
|
||||||
:host {
|
:host {
|
||||||
padding: 0 !important;
|
padding: 0;
|
||||||
}
|
}
|
||||||
:host([focused]:not([disabled])) {
|
:host([focused]:not([disabled])) {
|
||||||
background-color: rgba(var(--rgb-primary-text-color, 0, 0, 0), 0.12);
|
background-color: rgba(var(--rgb-primary-text-color, 0, 0, 0), 0.12);
|
||||||
@@ -210,9 +211,9 @@ export class HaComboBox extends LitElement {
|
|||||||
private _defaultRowRenderer: ComboBoxLitRenderer<
|
private _defaultRowRenderer: ComboBoxLitRenderer<
|
||||||
string | Record<string, any>
|
string | Record<string, any>
|
||||||
> = (item) =>
|
> = (item) =>
|
||||||
html`<ha-list-item>
|
html`<mwc-list-item>
|
||||||
${this.itemLabelPath ? item[this.itemLabelPath] : item}
|
${this.itemLabelPath ? item[this.itemLabelPath] : item}
|
||||||
</ha-list-item>`;
|
</mwc-list-item>`;
|
||||||
|
|
||||||
private _clearValue(ev: Event) {
|
private _clearValue(ev: Event) {
|
||||||
ev.stopPropagation();
|
ev.stopPropagation();
|
||||||
|
@@ -1,63 +0,0 @@
|
|||||||
import { css, CSSResultGroup, html, LitElement, TemplateResult } from "lit";
|
|
||||||
import { customElement, property } from "lit/decorators";
|
|
||||||
|
|
||||||
@customElement("ha-control-button-group")
|
|
||||||
export class HaControlButtonGroup extends LitElement {
|
|
||||||
@property({ type: Boolean, reflect: true })
|
|
||||||
public vertical = false;
|
|
||||||
|
|
||||||
protected render(): TemplateResult {
|
|
||||||
return html`
|
|
||||||
<div class="container">
|
|
||||||
<slot></slot>
|
|
||||||
</div>
|
|
||||||
`;
|
|
||||||
}
|
|
||||||
|
|
||||||
static get styles(): CSSResultGroup {
|
|
||||||
return css`
|
|
||||||
:host {
|
|
||||||
--control-button-group-spacing: 12px;
|
|
||||||
--control-button-group-thickness: 40px;
|
|
||||||
height: var(--control-button-group-thickness);
|
|
||||||
width: auto;
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
.container {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
::slotted(*) {
|
|
||||||
flex: 1;
|
|
||||||
height: 100%;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
::slotted(*:not(:last-child)) {
|
|
||||||
margin-right: var(--control-button-group-spacing);
|
|
||||||
margin-inline-end: var(--control-button-group-spacing);
|
|
||||||
margin-inline-start: initial;
|
|
||||||
direction: var(--direction);
|
|
||||||
}
|
|
||||||
:host([vertical]) {
|
|
||||||
width: var(--control-button-group-thickness);
|
|
||||||
height: auto;
|
|
||||||
}
|
|
||||||
:host([vertical]) .container {
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
:host([vertical]) ::slotted(ha-control-button:not(:last-child)) {
|
|
||||||
margin-right: initial;
|
|
||||||
margin-inline-end: initial;
|
|
||||||
margin-bottom: var(--control-button-group-spacing);
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
declare global {
|
|
||||||
interface HTMLElementTagNameMap {
|
|
||||||
"ha-control-button-group": HaControlButtonGroup;
|
|
||||||
}
|
|
||||||
}
|
|
@@ -24,7 +24,7 @@ export class HaDialogDatePicker extends LitElement {
|
|||||||
@state() private _value?: string;
|
@state() private _value?: string;
|
||||||
|
|
||||||
public async showDialog(params: datePickerDialogParams): Promise<void> {
|
public async showDialog(params: datePickerDialogParams): Promise<void> {
|
||||||
// app-datepicker has a bug, that it removes its handlers when disconnected, but doesn't add them back when reconnected.
|
// app-datpicker has a bug, that it removes its handlers when disconnected, but doesnt add them back when reconnected.
|
||||||
// So we need to wait for the next render to make sure the element is removed and re-created so the handlers are added.
|
// So we need to wait for the next render to make sure the element is removed and re-created so the handlers are added.
|
||||||
await nextRender();
|
await nextRender();
|
||||||
this._params = params;
|
this._params = params;
|
||||||
|
@@ -40,32 +40,13 @@ export class HaDialog extends DialogBase {
|
|||||||
this.suppressDefaultPressSelector,
|
this.suppressDefaultPressSelector,
|
||||||
SUPPRESS_DEFAULT_PRESS_SELECTOR,
|
SUPPRESS_DEFAULT_PRESS_SELECTOR,
|
||||||
].join(", ");
|
].join(", ");
|
||||||
this._updateScrolledAttribute();
|
|
||||||
this.contentElement?.addEventListener("scroll", this._onScroll);
|
|
||||||
}
|
|
||||||
|
|
||||||
disconnectedCallback(): void {
|
|
||||||
super.disconnectedCallback();
|
|
||||||
this.contentElement.removeEventListener("scroll", this._onScroll);
|
|
||||||
}
|
|
||||||
|
|
||||||
private _onScroll = () => {
|
|
||||||
this._updateScrolledAttribute();
|
|
||||||
};
|
|
||||||
|
|
||||||
private _updateScrolledAttribute() {
|
|
||||||
if (!this.contentElement) return;
|
|
||||||
this.toggleAttribute("scrolled", this.contentElement.scrollTop !== 0);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static override styles = [
|
static override styles = [
|
||||||
styles,
|
styles,
|
||||||
css`
|
css`
|
||||||
.mdc-dialog {
|
.mdc-dialog {
|
||||||
--mdc-dialog-scroll-divider-color: var(
|
--mdc-dialog-scroll-divider-color: var(--divider-color);
|
||||||
--dialog-scroll-divider-color,
|
|
||||||
var(--divider-color)
|
|
||||||
);
|
|
||||||
z-index: var(--dialog-z-index, 7);
|
z-index: var(--dialog-z-index, 7);
|
||||||
-webkit-backdrop-filter: var(--dialog-backdrop-filter, none);
|
-webkit-backdrop-filter: var(--dialog-backdrop-filter, none);
|
||||||
backdrop-filter: var(--dialog-backdrop-filter, none);
|
backdrop-filter: var(--dialog-backdrop-filter, none);
|
||||||
|
@@ -75,6 +75,7 @@ export class HaFileUpload extends LitElement {
|
|||||||
${this.icon
|
${this.icon
|
||||||
? html`<span
|
? html`<span
|
||||||
class="mdc-text-field__icon mdc-text-field__icon--leading"
|
class="mdc-text-field__icon mdc-text-field__icon--leading"
|
||||||
|
tabindex="-1"
|
||||||
>
|
>
|
||||||
<ha-icon-button
|
<ha-icon-button
|
||||||
@click=${this._openFilePicker}
|
@click=${this._openFilePicker}
|
||||||
@@ -94,6 +95,7 @@ export class HaFileUpload extends LitElement {
|
|||||||
${this.value
|
${this.value
|
||||||
? html`<span
|
? html`<span
|
||||||
class="mdc-text-field__icon mdc-text-field__icon--trailing"
|
class="mdc-text-field__icon mdc-text-field__icon--trailing"
|
||||||
|
tabindex="1"
|
||||||
>
|
>
|
||||||
<ha-icon-button
|
<ha-icon-button
|
||||||
slot="suffix"
|
slot="suffix"
|
||||||
|
@@ -1,33 +1,22 @@
|
|||||||
import {
|
import { css, CSSResultGroup, html, LitElement, TemplateResult } from "lit";
|
||||||
css,
|
|
||||||
CSSResultGroup,
|
|
||||||
html,
|
|
||||||
LitElement,
|
|
||||||
PropertyValues,
|
|
||||||
TemplateResult,
|
|
||||||
} from "lit";
|
|
||||||
import { customElement, property } from "lit/decorators";
|
import { customElement, property } from "lit/decorators";
|
||||||
import { dynamicElement } from "../../common/dom/dynamic-element-directive";
|
import { dynamicElement } from "../../common/dom/dynamic-element-directive";
|
||||||
import { fireEvent } from "../../common/dom/fire_event";
|
import { fireEvent } from "../../common/dom/fire_event";
|
||||||
import { HomeAssistant } from "../../types";
|
import { HomeAssistant } from "../../types";
|
||||||
import "../ha-alert";
|
import "../ha-alert";
|
||||||
import "../ha-selector/ha-selector";
|
import "../ha-selector/ha-selector";
|
||||||
|
import "./ha-form-boolean";
|
||||||
|
import "./ha-form-constant";
|
||||||
|
import "./ha-form-float";
|
||||||
|
import "./ha-form-grid";
|
||||||
|
import "./ha-form-expandable";
|
||||||
|
import "./ha-form-integer";
|
||||||
|
import "./ha-form-multi_select";
|
||||||
|
import "./ha-form-positive_time_period_dict";
|
||||||
|
import "./ha-form-select";
|
||||||
|
import "./ha-form-string";
|
||||||
import { HaFormDataContainer, HaFormElement, HaFormSchema } from "./types";
|
import { HaFormDataContainer, HaFormElement, HaFormSchema } from "./types";
|
||||||
|
|
||||||
const LOAD_ELEMENTS = {
|
|
||||||
boolean: () => import("./ha-form-boolean"),
|
|
||||||
constant: () => import("./ha-form-constant"),
|
|
||||||
float: () => import("./ha-form-float"),
|
|
||||||
grid: () => import("./ha-form-grid"),
|
|
||||||
expandable: () => import("./ha-form-expandable"),
|
|
||||||
integer: () => import("./ha-form-integer"),
|
|
||||||
multi_select: () => import("./ha-form-multi_select"),
|
|
||||||
positive_time_period_dict: () =>
|
|
||||||
import("./ha-form-positive_time_period_dict"),
|
|
||||||
select: () => import("./ha-form-select"),
|
|
||||||
string: () => import("./ha-form-string"),
|
|
||||||
};
|
|
||||||
|
|
||||||
const getValue = (obj, item) =>
|
const getValue = (obj, item) =>
|
||||||
obj ? (!item.name ? obj : obj[item.name]) : null;
|
obj ? (!item.name ? obj : obj[item.name]) : null;
|
||||||
|
|
||||||
@@ -69,17 +58,6 @@ export class HaForm extends LitElement implements HaFormElement {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
protected willUpdate(changedProps: PropertyValues) {
|
|
||||||
if (changedProps.has("schema") && this.schema) {
|
|
||||||
this.schema.forEach((item) => {
|
|
||||||
if ("selector" in item) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
LOAD_ELEMENTS[item.type]?.();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
protected render(): TemplateResult {
|
protected render(): TemplateResult {
|
||||||
return html`
|
return html`
|
||||||
<div class="root" part="root">
|
<div class="root" part="root">
|
||||||
|
@@ -26,9 +26,6 @@ export class Gauge extends LitElement {
|
|||||||
|
|
||||||
@property({ type: Number }) public value = 0;
|
@property({ type: Number }) public value = 0;
|
||||||
|
|
||||||
@property({ attribute: false })
|
|
||||||
public formatOptions?: Intl.NumberFormatOptions;
|
|
||||||
|
|
||||||
@property({ type: String }) public valueText?: string;
|
@property({ type: String }) public valueText?: string;
|
||||||
|
|
||||||
@property() public locale!: FrontendLocaleData;
|
@property() public locale!: FrontendLocaleData;
|
||||||
@@ -135,8 +132,7 @@ export class Gauge extends LitElement {
|
|||||||
${
|
${
|
||||||
this._segment_label
|
this._segment_label
|
||||||
? this._segment_label
|
? this._segment_label
|
||||||
: this.valueText ||
|
: this.valueText || formatNumber(this.value, this.locale)
|
||||||
formatNumber(this.value, this.locale, this.formatOptions)
|
|
||||||
}${
|
}${
|
||||||
this._segment_label
|
this._segment_label
|
||||||
? ""
|
? ""
|
||||||
|
@@ -36,12 +36,6 @@ export class HaHeaderBar extends LitElement {
|
|||||||
position: static;
|
position: static;
|
||||||
color: var(--mdc-theme-on-primary, #fff);
|
color: var(--mdc-theme-on-primary, #fff);
|
||||||
}
|
}
|
||||||
.mdc-top-app-bar__section.mdc-top-app-bar__section--align-start {
|
|
||||||
flex: 1;
|
|
||||||
}
|
|
||||||
.mdc-top-app-bar__section.mdc-top-app-bar__section--align-end {
|
|
||||||
flex: none;
|
|
||||||
}
|
|
||||||
`,
|
`,
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
@@ -1,8 +1,6 @@
|
|||||||
import { mdiChevronLeft, mdiChevronRight } from "@mdi/js";
|
import { mdiChevronLeft, mdiChevronRight } from "@mdi/js";
|
||||||
import { customElement } from "lit/decorators";
|
|
||||||
import { HaSvgIcon } from "./ha-svg-icon";
|
import { HaSvgIcon } from "./ha-svg-icon";
|
||||||
|
|
||||||
@customElement("ha-icon-next")
|
|
||||||
export class HaIconNext extends HaSvgIcon {
|
export class HaIconNext extends HaSvgIcon {
|
||||||
public connectedCallback() {
|
public connectedCallback() {
|
||||||
super.connectedCallback();
|
super.connectedCallback();
|
||||||
@@ -22,3 +20,5 @@ declare global {
|
|||||||
"ha-icon-next": HaIconNext;
|
"ha-icon-next": HaIconNext;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
customElements.define("ha-icon-next", HaIconNext);
|
||||||
|
@@ -1,8 +1,6 @@
|
|||||||
import { mdiChevronLeft, mdiChevronRight } from "@mdi/js";
|
import { mdiChevronLeft, mdiChevronRight } from "@mdi/js";
|
||||||
import { customElement } from "lit/decorators";
|
|
||||||
import { HaSvgIcon } from "./ha-svg-icon";
|
import { HaSvgIcon } from "./ha-svg-icon";
|
||||||
|
|
||||||
@customElement("ha-icon-prev")
|
|
||||||
export class HaIconPrev extends HaSvgIcon {
|
export class HaIconPrev extends HaSvgIcon {
|
||||||
public connectedCallback() {
|
public connectedCallback() {
|
||||||
super.connectedCallback();
|
super.connectedCallback();
|
||||||
@@ -22,3 +20,5 @@ declare global {
|
|||||||
"ha-icon-prev": HaIconPrev;
|
"ha-icon-prev": HaIconPrev;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
customElements.define("ha-icon-prev", HaIconPrev);
|
||||||
|
@@ -6,10 +6,9 @@ import {
|
|||||||
PropertyValues,
|
PropertyValues,
|
||||||
TemplateResult,
|
TemplateResult,
|
||||||
} from "lit";
|
} from "lit";
|
||||||
import { customElement, property } from "lit/decorators";
|
import { property } from "lit/decorators";
|
||||||
import { classMap } from "lit/directives/class-map";
|
import { classMap } from "lit/directives/class-map";
|
||||||
|
|
||||||
@customElement("ha-label-badge")
|
|
||||||
class HaLabelBadge extends LitElement {
|
class HaLabelBadge extends LitElement {
|
||||||
@property() public label?: string;
|
@property() public label?: string;
|
||||||
|
|
||||||
@@ -133,3 +132,5 @@ declare global {
|
|||||||
"ha-label-badge": HaLabelBadge;
|
"ha-label-badge": HaLabelBadge;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
customElements.define("ha-label-badge", HaLabelBadge);
|
||||||
|
@@ -282,9 +282,7 @@ export class HaRelatedItems extends SubscribeMixin(LitElement) {
|
|||||||
|
|
||||||
private async _navigateAwayClose() {
|
private async _navigateAwayClose() {
|
||||||
// allow new page to open before closing dialog
|
// allow new page to open before closing dialog
|
||||||
await new Promise((resolve) => {
|
await new Promise((resolve) => setTimeout(resolve, 0));
|
||||||
setTimeout(resolve, 0);
|
|
||||||
});
|
|
||||||
fireEvent(this, "close-dialog");
|
fireEvent(this, "close-dialog");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -1,10 +1,13 @@
|
|||||||
import { HassEntity } from "home-assistant-js-websocket";
|
import { HassEntity, UnsubscribeFunc } from "home-assistant-js-websocket";
|
||||||
import { html, LitElement, PropertyValues, TemplateResult } from "lit";
|
import { html, LitElement, PropertyValues, TemplateResult } from "lit";
|
||||||
import { customElement, property, state } from "lit/decorators";
|
import { customElement, property, state } from "lit/decorators";
|
||||||
import memoizeOne from "memoize-one";
|
import memoizeOne from "memoize-one";
|
||||||
import { ensureArray } from "../../common/array/ensure-array";
|
|
||||||
import type { DeviceRegistryEntry } from "../../data/device_registry";
|
import type { DeviceRegistryEntry } from "../../data/device_registry";
|
||||||
import { getDeviceIntegrationLookup } from "../../data/device_registry";
|
import { getDeviceIntegrationLookup } from "../../data/device_registry";
|
||||||
|
import {
|
||||||
|
EntityRegistryEntry,
|
||||||
|
subscribeEntityRegistry,
|
||||||
|
} from "../../data/entity_registry";
|
||||||
import {
|
import {
|
||||||
EntitySources,
|
EntitySources,
|
||||||
fetchEntitySourcesWithCache,
|
fetchEntitySourcesWithCache,
|
||||||
@@ -14,12 +17,13 @@ import {
|
|||||||
filterSelectorDevices,
|
filterSelectorDevices,
|
||||||
filterSelectorEntities,
|
filterSelectorEntities,
|
||||||
} from "../../data/selector";
|
} from "../../data/selector";
|
||||||
|
import { SubscribeMixin } from "../../mixins/subscribe-mixin";
|
||||||
import { HomeAssistant } from "../../types";
|
import { HomeAssistant } from "../../types";
|
||||||
import "../ha-area-picker";
|
import "../ha-area-picker";
|
||||||
import "../ha-areas-picker";
|
import "../ha-areas-picker";
|
||||||
|
|
||||||
@customElement("ha-selector-area")
|
@customElement("ha-selector-area")
|
||||||
export class HaAreaSelector extends LitElement {
|
export class HaAreaSelector extends SubscribeMixin(LitElement) {
|
||||||
@property() public hass!: HomeAssistant;
|
@property() public hass!: HomeAssistant;
|
||||||
|
|
||||||
@property() public selector!: AreaSelector;
|
@property() public selector!: AreaSelector;
|
||||||
@@ -36,23 +40,23 @@ export class HaAreaSelector extends LitElement {
|
|||||||
|
|
||||||
@state() private _entitySources?: EntitySources;
|
@state() private _entitySources?: EntitySources;
|
||||||
|
|
||||||
|
@state() private _entities?: EntityRegistryEntry[];
|
||||||
|
|
||||||
private _deviceIntegrationLookup = memoizeOne(getDeviceIntegrationLookup);
|
private _deviceIntegrationLookup = memoizeOne(getDeviceIntegrationLookup);
|
||||||
|
|
||||||
private _hasIntegration(selector: AreaSelector) {
|
public hassSubscribe(): UnsubscribeFunc[] {
|
||||||
return (
|
return [
|
||||||
(selector.area?.entity &&
|
subscribeEntityRegistry(this.hass.connection!, (entities) => {
|
||||||
ensureArray(selector.area.entity).some(
|
this._entities = entities.filter((entity) => entity.device_id !== null);
|
||||||
(filter) => filter.integration
|
}),
|
||||||
)) ||
|
];
|
||||||
(selector.area?.device &&
|
|
||||||
ensureArray(selector.area.device).some((device) => device.integration))
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected updated(changedProperties: PropertyValues): void {
|
protected updated(changedProperties: PropertyValues): void {
|
||||||
if (
|
if (
|
||||||
changedProperties.has("selector") &&
|
changedProperties.has("selector") &&
|
||||||
this._hasIntegration(this.selector) &&
|
(this.selector.area?.device?.integration ||
|
||||||
|
this.selector.area?.entity?.integration) &&
|
||||||
!this._entitySources
|
!this._entitySources
|
||||||
) {
|
) {
|
||||||
fetchEntitySourcesWithCache(this.hass).then((sources) => {
|
fetchEntitySourcesWithCache(this.hass).then((sources) => {
|
||||||
@@ -62,7 +66,11 @@ export class HaAreaSelector extends LitElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
protected render(): TemplateResult {
|
protected render(): TemplateResult {
|
||||||
if (this._hasIntegration(this.selector) && !this._entitySources) {
|
if (
|
||||||
|
(this.selector.area?.device?.integration ||
|
||||||
|
this.selector.area?.entity?.integration) &&
|
||||||
|
!this._entitySources
|
||||||
|
) {
|
||||||
return html``;
|
return html``;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -102,8 +110,10 @@ export class HaAreaSelector extends LitElement {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
return ensureArray(this.selector.area.entity).some((filter) =>
|
return filterSelectorEntities(
|
||||||
filterSelectorEntities(filter, entity, this._entitySources)
|
this.selector.area.entity,
|
||||||
|
entity,
|
||||||
|
this._entitySources
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -112,15 +122,15 @@ export class HaAreaSelector extends LitElement {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
const deviceIntegrations = this._entitySources
|
const deviceIntegrations =
|
||||||
? this._deviceIntegrationLookup(
|
this._entitySources && this._entities
|
||||||
this._entitySources,
|
? this._deviceIntegrationLookup(this._entitySources, this._entities)
|
||||||
Object.values(this.hass.entities)
|
: undefined;
|
||||||
)
|
|
||||||
: undefined;
|
|
||||||
|
|
||||||
return ensureArray(this.selector.area.device).some((filter) =>
|
return filterSelectorDevices(
|
||||||
filterSelectorDevices(filter, device, deviceIntegrations)
|
this.selector.area.device,
|
||||||
|
device,
|
||||||
|
deviceIntegrations
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@@ -2,11 +2,12 @@ import { html, LitElement, PropertyValues } from "lit";
|
|||||||
import { customElement, property } from "lit/decorators";
|
import { customElement, property } from "lit/decorators";
|
||||||
import { fireEvent } from "../../common/dom/fire_event";
|
import { fireEvent } from "../../common/dom/fire_event";
|
||||||
import { AttributeSelector } from "../../data/selector";
|
import { AttributeSelector } from "../../data/selector";
|
||||||
|
import { SubscribeMixin } from "../../mixins/subscribe-mixin";
|
||||||
import { HomeAssistant } from "../../types";
|
import { HomeAssistant } from "../../types";
|
||||||
import "../entity/ha-entity-attribute-picker";
|
import "../entity/ha-entity-attribute-picker";
|
||||||
|
|
||||||
@customElement("ha-selector-attribute")
|
@customElement("ha-selector-attribute")
|
||||||
export class HaSelectorAttribute extends LitElement {
|
export class HaSelectorAttribute extends SubscribeMixin(LitElement) {
|
||||||
@property({ attribute: false }) public hass!: HomeAssistant;
|
@property({ attribute: false }) public hass!: HomeAssistant;
|
||||||
|
|
||||||
@property({ attribute: false }) public selector!: AttributeSelector;
|
@property({ attribute: false }) public selector!: AttributeSelector;
|
||||||
|
@@ -1,31 +1,34 @@
|
|||||||
import { HassEntity } from "home-assistant-js-websocket";
|
import { UnsubscribeFunc } from "home-assistant-js-websocket";
|
||||||
import { html, LitElement } from "lit";
|
import { html, LitElement } from "lit";
|
||||||
import { customElement, property, state } from "lit/decorators";
|
import { customElement, property, state } from "lit/decorators";
|
||||||
import memoizeOne from "memoize-one";
|
import memoizeOne from "memoize-one";
|
||||||
import { ensureArray } from "../../common/array/ensure-array";
|
|
||||||
import type { DeviceRegistryEntry } from "../../data/device_registry";
|
import type { DeviceRegistryEntry } from "../../data/device_registry";
|
||||||
import { getDeviceIntegrationLookup } from "../../data/device_registry";
|
import { getDeviceIntegrationLookup } from "../../data/device_registry";
|
||||||
|
import {
|
||||||
|
EntityRegistryEntry,
|
||||||
|
subscribeEntityRegistry,
|
||||||
|
} from "../../data/entity_registry";
|
||||||
import {
|
import {
|
||||||
EntitySources,
|
EntitySources,
|
||||||
fetchEntitySourcesWithCache,
|
fetchEntitySourcesWithCache,
|
||||||
} from "../../data/entity_sources";
|
} from "../../data/entity_sources";
|
||||||
import type { DeviceSelector } from "../../data/selector";
|
import type { DeviceSelector } from "../../data/selector";
|
||||||
import {
|
import { filterSelectorDevices } from "../../data/selector";
|
||||||
filterSelectorDevices,
|
import { SubscribeMixin } from "../../mixins/subscribe-mixin";
|
||||||
filterSelectorEntities,
|
|
||||||
} from "../../data/selector";
|
|
||||||
import type { HomeAssistant } from "../../types";
|
import type { HomeAssistant } from "../../types";
|
||||||
import "../device/ha-device-picker";
|
import "../device/ha-device-picker";
|
||||||
import "../device/ha-devices-picker";
|
import "../device/ha-devices-picker";
|
||||||
|
|
||||||
@customElement("ha-selector-device")
|
@customElement("ha-selector-device")
|
||||||
export class HaDeviceSelector extends LitElement {
|
export class HaDeviceSelector extends SubscribeMixin(LitElement) {
|
||||||
@property() public hass!: HomeAssistant;
|
@property() public hass!: HomeAssistant;
|
||||||
|
|
||||||
@property() public selector!: DeviceSelector;
|
@property() public selector!: DeviceSelector;
|
||||||
|
|
||||||
@state() private _entitySources?: EntitySources;
|
@state() private _entitySources?: EntitySources;
|
||||||
|
|
||||||
|
@state() private _entities?: EntityRegistryEntry[];
|
||||||
|
|
||||||
@property() public value?: any;
|
@property() public value?: any;
|
||||||
|
|
||||||
@property() public label?: string;
|
@property() public label?: string;
|
||||||
@@ -38,24 +41,19 @@ export class HaDeviceSelector extends LitElement {
|
|||||||
|
|
||||||
private _deviceIntegrationLookup = memoizeOne(getDeviceIntegrationLookup);
|
private _deviceIntegrationLookup = memoizeOne(getDeviceIntegrationLookup);
|
||||||
|
|
||||||
private _hasIntegration(selector: DeviceSelector) {
|
public hassSubscribe(): UnsubscribeFunc[] {
|
||||||
return (
|
return [
|
||||||
(selector.device?.filter &&
|
subscribeEntityRegistry(this.hass.connection!, (entities) => {
|
||||||
ensureArray(selector.device.filter).some(
|
this._entities = entities.filter((entity) => entity.device_id !== null);
|
||||||
(filter) => filter.integration
|
}),
|
||||||
)) ||
|
];
|
||||||
(selector.device?.entity &&
|
|
||||||
ensureArray(selector.device.entity).some(
|
|
||||||
(device) => device.integration
|
|
||||||
))
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected updated(changedProperties): void {
|
protected updated(changedProperties): void {
|
||||||
super.updated(changedProperties);
|
super.updated(changedProperties);
|
||||||
if (
|
if (
|
||||||
changedProperties.has("selector") &&
|
changedProperties.has("selector") &&
|
||||||
this._hasIntegration(this.selector) &&
|
this.selector.device?.integration &&
|
||||||
!this._entitySources
|
!this._entitySources
|
||||||
) {
|
) {
|
||||||
fetchEntitySourcesWithCache(this.hass).then((sources) => {
|
fetchEntitySourcesWithCache(this.hass).then((sources) => {
|
||||||
@@ -65,7 +63,7 @@ export class HaDeviceSelector extends LitElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
protected render() {
|
protected render() {
|
||||||
if (this._hasIntegration(this.selector) && !this._entitySources) {
|
if (this.selector.device?.integration && !this._entitySources) {
|
||||||
return html``;
|
return html``;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -77,7 +75,12 @@ export class HaDeviceSelector extends LitElement {
|
|||||||
.label=${this.label}
|
.label=${this.label}
|
||||||
.helper=${this.helper}
|
.helper=${this.helper}
|
||||||
.deviceFilter=${this._filterDevices}
|
.deviceFilter=${this._filterDevices}
|
||||||
.entityFilter=${this._filterEntities}
|
.includeDeviceClasses=${this.selector.device?.entity?.device_class
|
||||||
|
? [this.selector.device.entity.device_class]
|
||||||
|
: undefined}
|
||||||
|
.includeDomains=${this.selector.device?.entity?.domain
|
||||||
|
? [this.selector.device.entity.domain]
|
||||||
|
: undefined}
|
||||||
.disabled=${this.disabled}
|
.disabled=${this.disabled}
|
||||||
.required=${this.required}
|
.required=${this.required}
|
||||||
allow-custom-entity
|
allow-custom-entity
|
||||||
@@ -92,7 +95,12 @@ export class HaDeviceSelector extends LitElement {
|
|||||||
.value=${this.value}
|
.value=${this.value}
|
||||||
.helper=${this.helper}
|
.helper=${this.helper}
|
||||||
.deviceFilter=${this._filterDevices}
|
.deviceFilter=${this._filterDevices}
|
||||||
.entityFilter=${this._filterEntities}
|
.includeDeviceClasses=${this.selector.device.entity?.device_class
|
||||||
|
? [this.selector.device.entity.device_class]
|
||||||
|
: undefined}
|
||||||
|
.includeDomains=${this.selector.device.entity?.domain
|
||||||
|
? [this.selector.device.entity.domain]
|
||||||
|
: undefined}
|
||||||
.disabled=${this.disabled}
|
.disabled=${this.disabled}
|
||||||
.required=${this.required}
|
.required=${this.required}
|
||||||
></ha-devices-picker>
|
></ha-devices-picker>
|
||||||
@@ -100,27 +108,18 @@ export class HaDeviceSelector extends LitElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private _filterDevices = (device: DeviceRegistryEntry): boolean => {
|
private _filterDevices = (device: DeviceRegistryEntry): boolean => {
|
||||||
if (!this.selector.device?.filter) {
|
const deviceIntegrations =
|
||||||
|
this._entitySources && this._entities
|
||||||
|
? this._deviceIntegrationLookup(this._entitySources, this._entities)
|
||||||
|
: undefined;
|
||||||
|
|
||||||
|
if (!this.selector.device) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
const deviceIntegrations = this._entitySources
|
return filterSelectorDevices(
|
||||||
? this._deviceIntegrationLookup(
|
this.selector.device,
|
||||||
this._entitySources,
|
device,
|
||||||
Object.values(this.hass.entities)
|
deviceIntegrations
|
||||||
)
|
|
||||||
: undefined;
|
|
||||||
|
|
||||||
return ensureArray(this.selector.device.filter).some((filter) =>
|
|
||||||
filterSelectorDevices(filter, device, deviceIntegrations)
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
private _filterEntities = (entity: HassEntity): boolean => {
|
|
||||||
if (!this.selector.device?.entity) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
return ensureArray(this.selector.device.entity).some((filter) =>
|
|
||||||
filterSelectorEntities(filter, entity, this._entitySources)
|
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@@ -1,7 +1,6 @@
|
|||||||
import { HassEntity } from "home-assistant-js-websocket";
|
import { HassEntity } from "home-assistant-js-websocket";
|
||||||
import { html, LitElement, PropertyValues } from "lit";
|
import { html, LitElement, PropertyValues } from "lit";
|
||||||
import { customElement, property, state } from "lit/decorators";
|
import { customElement, property, state } from "lit/decorators";
|
||||||
import { ensureArray } from "../../common/array/ensure-array";
|
|
||||||
import {
|
import {
|
||||||
EntitySources,
|
EntitySources,
|
||||||
fetchEntitySourcesWithCache,
|
fetchEntitySourcesWithCache,
|
||||||
@@ -30,18 +29,7 @@ export class HaEntitySelector extends LitElement {
|
|||||||
|
|
||||||
@property({ type: Boolean }) public required = true;
|
@property({ type: Boolean }) public required = true;
|
||||||
|
|
||||||
private _hasIntegration(selector: EntitySelector) {
|
|
||||||
return (
|
|
||||||
selector.entity?.filter &&
|
|
||||||
ensureArray(selector.entity.filter).some((filter) => filter.integration)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
protected render() {
|
protected render() {
|
||||||
if (this._hasIntegration(this.selector) && !this._entitySources) {
|
|
||||||
return html``;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!this.selector.entity?.multiple) {
|
if (!this.selector.entity?.multiple) {
|
||||||
return html`<ha-entity-picker
|
return html`<ha-entity-picker
|
||||||
.hass=${this.hass}
|
.hass=${this.hass}
|
||||||
@@ -76,7 +64,7 @@ export class HaEntitySelector extends LitElement {
|
|||||||
super.updated(changedProps);
|
super.updated(changedProps);
|
||||||
if (
|
if (
|
||||||
changedProps.has("selector") &&
|
changedProps.has("selector") &&
|
||||||
this._hasIntegration(this.selector) &&
|
this.selector.entity?.integration &&
|
||||||
!this._entitySources
|
!this._entitySources
|
||||||
) {
|
) {
|
||||||
fetchEntitySourcesWithCache(this.hass).then((sources) => {
|
fetchEntitySourcesWithCache(this.hass).then((sources) => {
|
||||||
@@ -86,11 +74,13 @@ export class HaEntitySelector extends LitElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private _filterEntities = (entity: HassEntity): boolean => {
|
private _filterEntities = (entity: HassEntity): boolean => {
|
||||||
if (!this.selector?.entity?.filter) {
|
if (!this.selector?.entity) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return ensureArray(this.selector.entity.filter).some((filter) =>
|
return filterSelectorEntities(
|
||||||
filterSelectorEntities(filter, entity, this._entitySources)
|
this.selector.entity,
|
||||||
|
entity,
|
||||||
|
this._entitySources
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@@ -1,8 +1,6 @@
|
|||||||
import { html, LitElement } from "lit";
|
import { html, LitElement } from "lit";
|
||||||
import { customElement, property } from "lit/decorators";
|
import { customElement, property } from "lit/decorators";
|
||||||
import { fireEvent } from "../../common/dom/fire_event";
|
import { fireEvent } from "../../common/dom/fire_event";
|
||||||
import { computeDomain } from "../../common/entity/compute_domain";
|
|
||||||
import { domainIcon } from "../../common/entity/domain_icon";
|
|
||||||
import { IconSelector } from "../../data/selector";
|
import { IconSelector } from "../../data/selector";
|
||||||
import { HomeAssistant } from "../../types";
|
import { HomeAssistant } from "../../types";
|
||||||
import "../ha-icon-picker";
|
import "../ha-icon-picker";
|
||||||
@@ -23,22 +21,7 @@ export class HaIconSelector extends LitElement {
|
|||||||
|
|
||||||
@property({ type: Boolean }) public required = true;
|
@property({ type: Boolean }) public required = true;
|
||||||
|
|
||||||
@property() public context?: {
|
|
||||||
icon_entity?: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
protected render() {
|
protected render() {
|
||||||
const iconEntity = this.context?.icon_entity;
|
|
||||||
|
|
||||||
const stateObj = iconEntity ? this.hass.states[iconEntity] : undefined;
|
|
||||||
|
|
||||||
const placeholder =
|
|
||||||
this.selector.icon?.placeholder || stateObj?.attributes.icon;
|
|
||||||
const fallbackPath =
|
|
||||||
!placeholder && stateObj
|
|
||||||
? domainIcon(computeDomain(iconEntity!), stateObj)
|
|
||||||
: undefined;
|
|
||||||
|
|
||||||
return html`
|
return html`
|
||||||
<ha-icon-picker
|
<ha-icon-picker
|
||||||
.hass=${this.hass}
|
.hass=${this.hass}
|
||||||
@@ -47,8 +30,8 @@ export class HaIconSelector extends LitElement {
|
|||||||
.required=${this.required}
|
.required=${this.required}
|
||||||
.disabled=${this.disabled}
|
.disabled=${this.disabled}
|
||||||
.helper=${this.helper}
|
.helper=${this.helper}
|
||||||
.fallbackPath=${this.selector.icon?.fallbackPath ?? fallbackPath}
|
.fallbackPath=${this.selector.icon?.fallbackPath}
|
||||||
.placeholder=${this.selector.icon?.placeholder ?? placeholder}
|
.placeholder=${this.selector.icon?.placeholder}
|
||||||
@value-changed=${this._valueChanged}
|
@value-changed=${this._valueChanged}
|
||||||
></ha-icon-picker>
|
></ha-icon-picker>
|
||||||
`;
|
`;
|
||||||
|
@@ -8,7 +8,7 @@ import { getSignedPath } from "../../data/auth";
|
|||||||
import {
|
import {
|
||||||
MediaClassBrowserSettings,
|
MediaClassBrowserSettings,
|
||||||
MediaPickedEvent,
|
MediaPickedEvent,
|
||||||
MediaPlayerEntityFeature,
|
SUPPORT_BROWSE_MEDIA,
|
||||||
} from "../../data/media-player";
|
} from "../../data/media-player";
|
||||||
import type { MediaSelector, MediaSelectorValue } from "../../data/selector";
|
import type { MediaSelector, MediaSelectorValue } from "../../data/selector";
|
||||||
import type { HomeAssistant } from "../../types";
|
import type { HomeAssistant } from "../../types";
|
||||||
@@ -80,8 +80,7 @@ export class HaMediaSelector extends LitElement {
|
|||||||
|
|
||||||
const supportsBrowse =
|
const supportsBrowse =
|
||||||
!this.value?.entity_id ||
|
!this.value?.entity_id ||
|
||||||
(stateObj &&
|
(stateObj && supportsFeature(stateObj, SUPPORT_BROWSE_MEDIA));
|
||||||
supportsFeature(stateObj, MediaPlayerEntityFeature.BROWSE_MEDIA));
|
|
||||||
|
|
||||||
return html`<ha-entity-picker
|
return html`<ha-entity-picker
|
||||||
.hass=${this.hass}
|
.hass=${this.hass}
|
||||||
|
@@ -14,6 +14,7 @@ import {
|
|||||||
DeviceRegistryEntry,
|
DeviceRegistryEntry,
|
||||||
getDeviceIntegrationLookup,
|
getDeviceIntegrationLookup,
|
||||||
} from "../../data/device_registry";
|
} from "../../data/device_registry";
|
||||||
|
import { EntityRegistryEntry } from "../../data/entity_registry";
|
||||||
import {
|
import {
|
||||||
EntitySources,
|
EntitySources,
|
||||||
fetchEntitySourcesWithCache,
|
fetchEntitySourcesWithCache,
|
||||||
@@ -44,24 +45,12 @@ export class HaTargetSelector extends LitElement {
|
|||||||
|
|
||||||
private _deviceIntegrationLookup = memoizeOne(getDeviceIntegrationLookup);
|
private _deviceIntegrationLookup = memoizeOne(getDeviceIntegrationLookup);
|
||||||
|
|
||||||
private _hasIntegration(selector: TargetSelector) {
|
|
||||||
return (
|
|
||||||
(selector.target?.entity &&
|
|
||||||
ensureArray(selector.target.entity).some(
|
|
||||||
(filter) => filter.integration
|
|
||||||
)) ||
|
|
||||||
(selector.target?.device &&
|
|
||||||
ensureArray(selector.target.device).some(
|
|
||||||
(device) => device.integration
|
|
||||||
))
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
protected updated(changedProperties: PropertyValues): void {
|
protected updated(changedProperties: PropertyValues): void {
|
||||||
super.updated(changedProperties);
|
super.updated(changedProperties);
|
||||||
if (
|
if (
|
||||||
changedProperties.has("selector") &&
|
changedProperties.has("selector") &&
|
||||||
this._hasIntegration(this.selector) &&
|
(this.selector.target?.device?.integration ||
|
||||||
|
this.selector.target?.entity?.integration) &&
|
||||||
!this._entitySources
|
!this._entitySources
|
||||||
) {
|
) {
|
||||||
fetchEntitySourcesWithCache(this.hass).then((sources) => {
|
fetchEntitySourcesWithCache(this.hass).then((sources) => {
|
||||||
@@ -71,7 +60,11 @@ export class HaTargetSelector extends LitElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
protected render(): TemplateResult {
|
protected render(): TemplateResult {
|
||||||
if (this._hasIntegration(this.selector) && !this._entitySources) {
|
if (
|
||||||
|
(this.selector.target?.device?.integration ||
|
||||||
|
this.selector.target?.entity?.integration) &&
|
||||||
|
!this._entitySources
|
||||||
|
) {
|
||||||
return html``;
|
return html``;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -80,21 +73,39 @@ export class HaTargetSelector extends LitElement {
|
|||||||
.value=${this.value}
|
.value=${this.value}
|
||||||
.helper=${this.helper}
|
.helper=${this.helper}
|
||||||
.deviceFilter=${this._filterDevices}
|
.deviceFilter=${this._filterDevices}
|
||||||
.entityFilter=${this._filterEntities}
|
.entityFilter=${this._filterStates}
|
||||||
|
.entityRegFilter=${this._filterRegEntities}
|
||||||
|
.includeDeviceClasses=${this.selector.target?.entity?.device_class
|
||||||
|
? [this.selector.target?.entity.device_class]
|
||||||
|
: undefined}
|
||||||
|
.includeDomains=${this.selector.target?.entity?.domain
|
||||||
|
? ensureArray(this.selector.target.entity.domain as string | string[])
|
||||||
|
: undefined}
|
||||||
.disabled=${this.disabled}
|
.disabled=${this.disabled}
|
||||||
></ha-target-picker>`;
|
></ha-target-picker>`;
|
||||||
}
|
}
|
||||||
|
|
||||||
private _filterEntities = (entity: HassEntity): boolean => {
|
private _filterStates = (entity: HassEntity): boolean => {
|
||||||
if (!this.selector.target?.entity) {
|
if (!this.selector.target?.entity) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
return ensureArray(this.selector.target.entity).some((filter) =>
|
return filterSelectorEntities(
|
||||||
filterSelectorEntities(filter, entity, this._entitySources)
|
this.selector.target.entity,
|
||||||
|
entity,
|
||||||
|
this._entitySources
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
private _filterRegEntities = (entity: EntityRegistryEntry): boolean => {
|
||||||
|
if (this.selector.target?.entity?.integration) {
|
||||||
|
if (entity.platform !== this.selector.target.entity.integration) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
};
|
||||||
|
|
||||||
private _filterDevices = (device: DeviceRegistryEntry): boolean => {
|
private _filterDevices = (device: DeviceRegistryEntry): boolean => {
|
||||||
if (!this.selector.target?.device) {
|
if (!this.selector.target?.device) {
|
||||||
return true;
|
return true;
|
||||||
@@ -107,8 +118,10 @@ export class HaTargetSelector extends LitElement {
|
|||||||
)
|
)
|
||||||
: undefined;
|
: undefined;
|
||||||
|
|
||||||
return ensureArray(this.selector.target.device).some((filter) =>
|
return filterSelectorDevices(
|
||||||
filterSelectorDevices(filter, device, deviceIntegrations)
|
this.selector.target.device,
|
||||||
|
device,
|
||||||
|
deviceIntegrations
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@@ -1,12 +1,7 @@
|
|||||||
import { html, LitElement, PropertyValues } from "lit";
|
import { html, LitElement, PropertyValues } from "lit";
|
||||||
import { customElement, property } from "lit/decorators";
|
import { customElement, property } from "lit/decorators";
|
||||||
import memoizeOne from "memoize-one";
|
|
||||||
import { dynamicElement } from "../../common/dom/dynamic-element-directive";
|
import { dynamicElement } from "../../common/dom/dynamic-element-directive";
|
||||||
import {
|
import type { Selector } from "../../data/selector";
|
||||||
Selector,
|
|
||||||
handleLegacyEntitySelector,
|
|
||||||
handleLegacyDeviceSelector,
|
|
||||||
} from "../../data/selector";
|
|
||||||
import type { HomeAssistant } from "../../types";
|
import type { HomeAssistant } from "../../types";
|
||||||
|
|
||||||
const LOAD_ELEMENTS = {
|
const LOAD_ELEMENTS = {
|
||||||
@@ -80,22 +75,12 @@ export class HaSelector extends LitElement {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private _handleLegacySelector = memoizeOne((selector: Selector) => {
|
|
||||||
if ("entity" in selector) {
|
|
||||||
return handleLegacyEntitySelector(selector);
|
|
||||||
}
|
|
||||||
if ("device" in selector) {
|
|
||||||
return handleLegacyDeviceSelector(selector);
|
|
||||||
}
|
|
||||||
return selector;
|
|
||||||
});
|
|
||||||
|
|
||||||
protected render() {
|
protected render() {
|
||||||
return html`
|
return html`
|
||||||
${dynamicElement(`ha-selector-${this._type}`, {
|
${dynamicElement(`ha-selector-${this._type}`, {
|
||||||
hass: this.hass,
|
hass: this.hass,
|
||||||
name: this.name,
|
name: this.name,
|
||||||
selector: this._handleLegacySelector(this.selector),
|
selector: this.selector,
|
||||||
value: this.value,
|
value: this.value,
|
||||||
label: this.label,
|
label: this.label,
|
||||||
placeholder: this.placeholder,
|
placeholder: this.placeholder,
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
import { html, LitElement } from "lit";
|
import { html, LitElement } from "lit";
|
||||||
import { ComboBoxLitRenderer } from "@vaadin/combo-box/lit";
|
import { ComboBoxLitRenderer } from "@vaadin/combo-box/lit";
|
||||||
import { customElement, property, state } from "lit/decorators";
|
import { property, state } from "lit/decorators";
|
||||||
import memoizeOne from "memoize-one";
|
import memoizeOne from "memoize-one";
|
||||||
import { fireEvent } from "../common/dom/fire_event";
|
import { fireEvent } from "../common/dom/fire_event";
|
||||||
import { LocalizeFunc } from "../common/translations/localize";
|
import { LocalizeFunc } from "../common/translations/localize";
|
||||||
@@ -17,7 +17,6 @@ const rowRenderer: ComboBoxLitRenderer<{ service: string; name: string }> = (
|
|||||||
>
|
>
|
||||||
</mwc-list-item>`;
|
</mwc-list-item>`;
|
||||||
|
|
||||||
@customElement("ha-service-picker")
|
|
||||||
class HaServicePicker extends LitElement {
|
class HaServicePicker extends LitElement {
|
||||||
@property({ attribute: false }) public hass!: HomeAssistant;
|
@property({ attribute: false }) public hass!: HomeAssistant;
|
||||||
|
|
||||||
@@ -114,6 +113,8 @@ class HaServicePicker extends LitElement {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
customElements.define("ha-service-picker", HaServicePicker);
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLElementTagNameMap {
|
interface HTMLElementTagNameMap {
|
||||||
"ha-service-picker": HaServicePicker;
|
"ha-service-picker": HaServicePicker;
|
||||||
|
@@ -1,7 +1,6 @@
|
|||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
import chipStyles from "@material/chips/dist/mdc.chips.min.css";
|
import chipStyles from "@material/chips/dist/mdc.chips.min.css";
|
||||||
import "@material/mwc-button/mwc-button";
|
import "@material/mwc-button/mwc-button";
|
||||||
import "@material/mwc-menu/mwc-menu-surface";
|
|
||||||
import {
|
import {
|
||||||
mdiClose,
|
mdiClose,
|
||||||
mdiDevices,
|
mdiDevices,
|
||||||
@@ -10,22 +9,32 @@ import {
|
|||||||
mdiUnfoldMoreVertical,
|
mdiUnfoldMoreVertical,
|
||||||
} from "@mdi/js";
|
} from "@mdi/js";
|
||||||
import "@polymer/paper-tooltip/paper-tooltip";
|
import "@polymer/paper-tooltip/paper-tooltip";
|
||||||
import { ComboBoxLightOpenedChangedEvent } from "@vaadin/combo-box/vaadin-combo-box-light";
|
import {
|
||||||
import { HassEntity, HassServiceTarget } from "home-assistant-js-websocket";
|
HassEntity,
|
||||||
|
HassServiceTarget,
|
||||||
|
UnsubscribeFunc,
|
||||||
|
} from "home-assistant-js-websocket";
|
||||||
import { css, CSSResultGroup, html, LitElement, unsafeCSS } from "lit";
|
import { css, CSSResultGroup, html, LitElement, unsafeCSS } from "lit";
|
||||||
import { customElement, property, query, state } from "lit/decorators";
|
import { customElement, property, query, state } from "lit/decorators";
|
||||||
import { classMap } from "lit/directives/class-map";
|
import { classMap } from "lit/directives/class-map";
|
||||||
import { ensureArray } from "../common/array/ensure-array";
|
|
||||||
import { fireEvent } from "../common/dom/fire_event";
|
import { fireEvent } from "../common/dom/fire_event";
|
||||||
import { stopPropagation } from "../common/dom/stop_propagation";
|
import { ensureArray } from "../common/array/ensure-array";
|
||||||
import { computeDomain } from "../common/entity/compute_domain";
|
import { computeDomain } from "../common/entity/compute_domain";
|
||||||
import { computeStateName } from "../common/entity/compute_state_name";
|
import { computeStateName } from "../common/entity/compute_state_name";
|
||||||
import { isValidEntityId } from "../common/entity/valid_entity_id";
|
import {
|
||||||
|
AreaRegistryEntry,
|
||||||
|
subscribeAreaRegistry,
|
||||||
|
} from "../data/area_registry";
|
||||||
import {
|
import {
|
||||||
computeDeviceName,
|
computeDeviceName,
|
||||||
DeviceRegistryEntry,
|
DeviceRegistryEntry,
|
||||||
|
subscribeDeviceRegistry,
|
||||||
} from "../data/device_registry";
|
} from "../data/device_registry";
|
||||||
import { EntityRegistryDisplayEntry } from "../data/entity_registry";
|
import {
|
||||||
|
EntityRegistryEntry,
|
||||||
|
subscribeEntityRegistry,
|
||||||
|
} from "../data/entity_registry";
|
||||||
|
import { SubscribeMixin } from "../mixins/subscribe-mixin";
|
||||||
import { HomeAssistant } from "../types";
|
import { HomeAssistant } from "../types";
|
||||||
import "./device/ha-device-picker";
|
import "./device/ha-device-picker";
|
||||||
import type { HaDevicePickerDeviceFilterFunc } from "./device/ha-device-picker";
|
import type { HaDevicePickerDeviceFilterFunc } from "./device/ha-device-picker";
|
||||||
@@ -37,7 +46,7 @@ import "./ha-input-helper-text";
|
|||||||
import "./ha-svg-icon";
|
import "./ha-svg-icon";
|
||||||
|
|
||||||
@customElement("ha-target-picker")
|
@customElement("ha-target-picker")
|
||||||
export class HaTargetPicker extends LitElement {
|
export class HaTargetPicker extends SubscribeMixin(LitElement) {
|
||||||
@property({ attribute: false }) public hass!: HomeAssistant;
|
@property({ attribute: false }) public hass!: HomeAssistant;
|
||||||
|
|
||||||
@property({ attribute: false }) public value?: HassServiceTarget;
|
@property({ attribute: false }) public value?: HassServiceTarget;
|
||||||
@@ -64,25 +73,67 @@ export class HaTargetPicker extends LitElement {
|
|||||||
|
|
||||||
@property() public deviceFilter?: HaDevicePickerDeviceFilterFunc;
|
@property() public deviceFilter?: HaDevicePickerDeviceFilterFunc;
|
||||||
|
|
||||||
|
@property() public entityRegFilter?: (entity: EntityRegistryEntry) => boolean;
|
||||||
|
|
||||||
@property() public entityFilter?: HaEntityPickerEntityFilterFunc;
|
@property() public entityFilter?: HaEntityPickerEntityFilterFunc;
|
||||||
|
|
||||||
@property({ type: Boolean, reflect: true }) public disabled = false;
|
@property({ type: Boolean, reflect: true }) public disabled = false;
|
||||||
|
|
||||||
@property({ type: Boolean }) public addOnTop = false;
|
@property({ type: Boolean }) public horizontal = false;
|
||||||
|
|
||||||
|
@state() private _areas?: { [areaId: string]: AreaRegistryEntry };
|
||||||
|
|
||||||
|
@state() private _devices?: {
|
||||||
|
[deviceId: string]: DeviceRegistryEntry;
|
||||||
|
};
|
||||||
|
|
||||||
|
@state() private _entities?: EntityRegistryEntry[];
|
||||||
|
|
||||||
@state() private _addMode?: "area_id" | "entity_id" | "device_id";
|
@state() private _addMode?: "area_id" | "entity_id" | "device_id";
|
||||||
|
|
||||||
@query("#input") private _inputElement?;
|
@query("#input") private _inputElement?;
|
||||||
|
|
||||||
@query(".add-container", true) private _addContainer?: HTMLDivElement;
|
public hassSubscribe(): UnsubscribeFunc[] {
|
||||||
|
return [
|
||||||
private _opened = false;
|
subscribeAreaRegistry(this.hass.connection!, (areas) => {
|
||||||
|
const areaLookup: { [areaId: string]: AreaRegistryEntry } = {};
|
||||||
|
for (const area of areas) {
|
||||||
|
areaLookup[area.area_id] = area;
|
||||||
|
}
|
||||||
|
this._areas = areaLookup;
|
||||||
|
}),
|
||||||
|
subscribeDeviceRegistry(this.hass.connection!, (devices) => {
|
||||||
|
const deviceLookup: { [deviceId: string]: DeviceRegistryEntry } = {};
|
||||||
|
for (const device of devices) {
|
||||||
|
deviceLookup[device.id] = device;
|
||||||
|
}
|
||||||
|
this._devices = deviceLookup;
|
||||||
|
}),
|
||||||
|
subscribeEntityRegistry(this.hass.connection!, (entities) => {
|
||||||
|
this._entities = entities;
|
||||||
|
}),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
protected render() {
|
protected render() {
|
||||||
if (this.addOnTop) {
|
if (!this._areas || !this._devices || !this._entities) {
|
||||||
return html` ${this._renderChips()} ${this._renderItems()} `;
|
return html``;
|
||||||
}
|
}
|
||||||
return html` ${this._renderItems()} ${this._renderChips()} `;
|
return html`
|
||||||
|
${this.horizontal
|
||||||
|
? html`
|
||||||
|
<div class="horizontal-container">
|
||||||
|
${this._renderChips()} ${this._renderPicker()}
|
||||||
|
</div>
|
||||||
|
${this._renderItems()}
|
||||||
|
`
|
||||||
|
: html`
|
||||||
|
<div>
|
||||||
|
${this._renderItems()} ${this._renderPicker()}
|
||||||
|
${this._renderChips()}
|
||||||
|
</div>
|
||||||
|
`}
|
||||||
|
`;
|
||||||
}
|
}
|
||||||
|
|
||||||
private _renderItems() {
|
private _renderItems() {
|
||||||
@@ -90,7 +141,7 @@ export class HaTargetPicker extends LitElement {
|
|||||||
<div class="mdc-chip-set items">
|
<div class="mdc-chip-set items">
|
||||||
${this.value?.area_id
|
${this.value?.area_id
|
||||||
? ensureArray(this.value.area_id).map((area_id) => {
|
? ensureArray(this.value.area_id).map((area_id) => {
|
||||||
const area = this.hass.areas![area_id];
|
const area = this._areas![area_id];
|
||||||
return this._renderChip(
|
return this._renderChip(
|
||||||
"area_id",
|
"area_id",
|
||||||
area_id,
|
area_id,
|
||||||
@@ -102,7 +153,7 @@ export class HaTargetPicker extends LitElement {
|
|||||||
: ""}
|
: ""}
|
||||||
${this.value?.device_id
|
${this.value?.device_id
|
||||||
? ensureArray(this.value.device_id).map((device_id) => {
|
? ensureArray(this.value.device_id).map((device_id) => {
|
||||||
const device = this.hass.devices![device_id];
|
const device = this._devices![device_id];
|
||||||
return this._renderChip(
|
return this._renderChip(
|
||||||
"device_id",
|
"device_id",
|
||||||
device_id,
|
device_id,
|
||||||
@@ -129,7 +180,7 @@ export class HaTargetPicker extends LitElement {
|
|||||||
|
|
||||||
private _renderChips() {
|
private _renderChips() {
|
||||||
return html`
|
return html`
|
||||||
<div class="mdc-chip-set add-container">
|
<div class="mdc-chip-set">
|
||||||
<div
|
<div
|
||||||
class="mdc-chip area_id add"
|
class="mdc-chip area_id add"
|
||||||
.type=${"area_id"}
|
.type=${"area_id"}
|
||||||
@@ -190,7 +241,6 @@ export class HaTargetPicker extends LitElement {
|
|||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
${this._renderPicker()}
|
|
||||||
</div>
|
</div>
|
||||||
${this.helper
|
${this.helper
|
||||||
? html`<ha-input-helper-text>${this.helper}</ha-input-helper-text>`
|
? html`<ha-input-helper-text>${this.helper}</ha-input-helper-text>`
|
||||||
@@ -198,8 +248,11 @@ export class HaTargetPicker extends LitElement {
|
|||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
|
|
||||||
private _showPicker(ev) {
|
private async _showPicker(ev) {
|
||||||
this._addMode = ev.currentTarget.type;
|
this._addMode = ev.currentTarget.type;
|
||||||
|
await this.updateComplete;
|
||||||
|
await this._inputElement?.focus();
|
||||||
|
await this._inputElement?.open();
|
||||||
}
|
}
|
||||||
|
|
||||||
private _renderChip(
|
private _renderChip(
|
||||||
@@ -234,7 +287,7 @@ export class HaTargetPicker extends LitElement {
|
|||||||
</span>
|
</span>
|
||||||
${type === "entity_id"
|
${type === "entity_id"
|
||||||
? ""
|
? ""
|
||||||
: html`<span role="gridcell">
|
: html` <span role="gridcell">
|
||||||
<ha-icon-button
|
<ha-icon-button
|
||||||
class="expand-btn mdc-chip__icon mdc-chip__icon--trailing"
|
class="expand-btn mdc-chip__icon mdc-chip__icon--trailing"
|
||||||
tabindex="-1"
|
tabindex="-1"
|
||||||
@@ -277,72 +330,60 @@ export class HaTargetPicker extends LitElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private _renderPicker() {
|
private _renderPicker() {
|
||||||
if (!this._addMode) {
|
switch (this._addMode) {
|
||||||
return html``;
|
case "area_id":
|
||||||
|
return html`
|
||||||
|
<ha-area-picker
|
||||||
|
.hass=${this.hass}
|
||||||
|
id="input"
|
||||||
|
.type=${"area_id"}
|
||||||
|
.label=${this.hass.localize(
|
||||||
|
"ui.components.target-picker.add_area_id"
|
||||||
|
)}
|
||||||
|
no-add
|
||||||
|
.deviceFilter=${this.deviceFilter}
|
||||||
|
.entityFilter=${this.entityRegFilter}
|
||||||
|
.includeDeviceClasses=${this.includeDeviceClasses}
|
||||||
|
.includeDomains=${this.includeDomains}
|
||||||
|
.excludeAreas=${ensureArray(this.value?.area_id)}
|
||||||
|
@value-changed=${this._targetPicked}
|
||||||
|
></ha-area-picker>
|
||||||
|
`;
|
||||||
|
case "device_id":
|
||||||
|
return html`
|
||||||
|
<ha-device-picker
|
||||||
|
.hass=${this.hass}
|
||||||
|
id="input"
|
||||||
|
.type=${"device_id"}
|
||||||
|
.label=${this.hass.localize(
|
||||||
|
"ui.components.target-picker.add_device_id"
|
||||||
|
)}
|
||||||
|
.deviceFilter=${this.deviceFilter}
|
||||||
|
.includeDeviceClasses=${this.includeDeviceClasses}
|
||||||
|
.includeDomains=${this.includeDomains}
|
||||||
|
.excludeDevices=${ensureArray(this.value?.device_id)}
|
||||||
|
@value-changed=${this._targetPicked}
|
||||||
|
></ha-device-picker>
|
||||||
|
`;
|
||||||
|
case "entity_id":
|
||||||
|
return html`
|
||||||
|
<ha-entity-picker
|
||||||
|
.hass=${this.hass}
|
||||||
|
id="input"
|
||||||
|
.type=${"entity_id"}
|
||||||
|
.label=${this.hass.localize(
|
||||||
|
"ui.components.target-picker.add_entity_id"
|
||||||
|
)}
|
||||||
|
.entityFilter=${this.entityFilter}
|
||||||
|
.includeDeviceClasses=${this.includeDeviceClasses}
|
||||||
|
.includeDomains=${this.includeDomains}
|
||||||
|
.excludeEntities=${ensureArray(this.value?.entity_id)}
|
||||||
|
@value-changed=${this._targetPicked}
|
||||||
|
allow-custom-entity
|
||||||
|
></ha-entity-picker>
|
||||||
|
`;
|
||||||
}
|
}
|
||||||
return html`<mwc-menu-surface
|
return html``;
|
||||||
open
|
|
||||||
.anchor=${this._addContainer}
|
|
||||||
.corner=${"BOTTOM_START"}
|
|
||||||
@closed=${this._onClosed}
|
|
||||||
@opened=${this._onOpened}
|
|
||||||
@opened-changed=${this._openedChanged}
|
|
||||||
@input=${stopPropagation}
|
|
||||||
>${this._addMode === "area_id"
|
|
||||||
? html`
|
|
||||||
<ha-area-picker
|
|
||||||
.hass=${this.hass}
|
|
||||||
id="input"
|
|
||||||
.type=${"area_id"}
|
|
||||||
.label=${this.hass.localize(
|
|
||||||
"ui.components.target-picker.add_area_id"
|
|
||||||
)}
|
|
||||||
no-add
|
|
||||||
.deviceFilter=${this.deviceFilter}
|
|
||||||
.entityFilter=${this.entityFilter}
|
|
||||||
.includeDeviceClasses=${this.includeDeviceClasses}
|
|
||||||
.includeDomains=${this.includeDomains}
|
|
||||||
.excludeAreas=${ensureArray(this.value?.area_id)}
|
|
||||||
@value-changed=${this._targetPicked}
|
|
||||||
@click=${this._preventDefault}
|
|
||||||
></ha-area-picker>
|
|
||||||
`
|
|
||||||
: this._addMode === "device_id"
|
|
||||||
? html`
|
|
||||||
<ha-device-picker
|
|
||||||
.hass=${this.hass}
|
|
||||||
id="input"
|
|
||||||
.type=${"device_id"}
|
|
||||||
.label=${this.hass.localize(
|
|
||||||
"ui.components.target-picker.add_device_id"
|
|
||||||
)}
|
|
||||||
.deviceFilter=${this.deviceFilter}
|
|
||||||
.entityFilter=${this.entityFilter}
|
|
||||||
.includeDeviceClasses=${this.includeDeviceClasses}
|
|
||||||
.includeDomains=${this.includeDomains}
|
|
||||||
.excludeDevices=${ensureArray(this.value?.device_id)}
|
|
||||||
@value-changed=${this._targetPicked}
|
|
||||||
@click=${this._preventDefault}
|
|
||||||
></ha-device-picker>
|
|
||||||
`
|
|
||||||
: html`
|
|
||||||
<ha-entity-picker
|
|
||||||
.hass=${this.hass}
|
|
||||||
id="input"
|
|
||||||
.type=${"entity_id"}
|
|
||||||
.label=${this.hass.localize(
|
|
||||||
"ui.components.target-picker.add_entity_id"
|
|
||||||
)}
|
|
||||||
.entityFilter=${this.entityFilter}
|
|
||||||
.includeDeviceClasses=${this.includeDeviceClasses}
|
|
||||||
.includeDomains=${this.includeDomains}
|
|
||||||
.excludeEntities=${ensureArray(this.value?.entity_id)}
|
|
||||||
@value-changed=${this._targetPicked}
|
|
||||||
@click=${this._preventDefault}
|
|
||||||
allow-custom-entity
|
|
||||||
></ha-entity-picker>
|
|
||||||
`}</mwc-menu-surface
|
|
||||||
>`;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private _targetPicked(ev) {
|
private _targetPicked(ev) {
|
||||||
@@ -352,12 +393,8 @@ export class HaTargetPicker extends LitElement {
|
|||||||
}
|
}
|
||||||
const value = ev.detail.value;
|
const value = ev.detail.value;
|
||||||
const target = ev.currentTarget;
|
const target = ev.currentTarget;
|
||||||
|
|
||||||
if (target.type === "entity_id" && !isValidEntityId(value)) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
target.value = "";
|
target.value = "";
|
||||||
|
this._addMode = undefined;
|
||||||
if (
|
if (
|
||||||
this.value &&
|
this.value &&
|
||||||
this.value[target.type] &&
|
this.value[target.type] &&
|
||||||
@@ -382,7 +419,7 @@ export class HaTargetPicker extends LitElement {
|
|||||||
const newDevices: string[] = [];
|
const newDevices: string[] = [];
|
||||||
const newEntities: string[] = [];
|
const newEntities: string[] = [];
|
||||||
if (target.type === "area_id") {
|
if (target.type === "area_id") {
|
||||||
Object.values(this.hass.devices).forEach((device) => {
|
Object.values(this._devices!).forEach((device) => {
|
||||||
if (
|
if (
|
||||||
device.area_id === target.id &&
|
device.area_id === target.id &&
|
||||||
!this.value!.device_id?.includes(device.id) &&
|
!this.value!.device_id?.includes(device.id) &&
|
||||||
@@ -391,7 +428,7 @@ export class HaTargetPicker extends LitElement {
|
|||||||
newDevices.push(device.id);
|
newDevices.push(device.id);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
Object.values(this.hass.entities).forEach((entity) => {
|
this._entities!.forEach((entity) => {
|
||||||
if (
|
if (
|
||||||
entity.area_id === target.id &&
|
entity.area_id === target.id &&
|
||||||
!this.value!.entity_id?.includes(entity.entity_id) &&
|
!this.value!.entity_id?.includes(entity.entity_id) &&
|
||||||
@@ -401,7 +438,7 @@ export class HaTargetPicker extends LitElement {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
} else if (target.type === "device_id") {
|
} else if (target.type === "device_id") {
|
||||||
Object.values(this.hass.entities).forEach((entity) => {
|
this._entities!.forEach((entity) => {
|
||||||
if (
|
if (
|
||||||
entity.device_id === target.id &&
|
entity.device_id === target.id &&
|
||||||
!this.value!.entity_id?.includes(entity.entity_id) &&
|
!this.value!.entity_id?.includes(entity.entity_id) &&
|
||||||
@@ -464,36 +501,10 @@ export class HaTargetPicker extends LitElement {
|
|||||||
return undefined;
|
return undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
private _onClosed(ev) {
|
|
||||||
ev.stopPropagation();
|
|
||||||
ev.target.open = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
private async _onOpened() {
|
|
||||||
if (!this._addMode) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
await this._inputElement?.focus();
|
|
||||||
await this._inputElement?.open();
|
|
||||||
this._opened = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
private _openedChanged(ev: ComboBoxLightOpenedChangedEvent) {
|
|
||||||
if (this._opened && !ev.detail.value) {
|
|
||||||
this._opened = false;
|
|
||||||
this._addMode = undefined;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private _preventDefault(ev: Event) {
|
|
||||||
ev.preventDefault();
|
|
||||||
}
|
|
||||||
|
|
||||||
private _deviceMeetsFilter(device: DeviceRegistryEntry): boolean {
|
private _deviceMeetsFilter(device: DeviceRegistryEntry): boolean {
|
||||||
const devEntities = Object.values(this.hass.entities).filter(
|
const devEntities = this._entities?.filter(
|
||||||
(entity) => entity.device_id === device.id
|
(entity) => entity.device_id === device.id
|
||||||
);
|
);
|
||||||
|
|
||||||
if (this.includeDomains) {
|
if (this.includeDomains) {
|
||||||
if (!devEntities || !devEntities.length) {
|
if (!devEntities || !devEntities.length) {
|
||||||
return false;
|
return false;
|
||||||
@@ -530,32 +541,15 @@ export class HaTargetPicker extends LitElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (this.deviceFilter) {
|
if (this.deviceFilter) {
|
||||||
if (!this.deviceFilter(device)) {
|
return this.deviceFilter(device);
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (this.entityFilter) {
|
|
||||||
if (
|
|
||||||
!devEntities.some((entity) => {
|
|
||||||
const stateObj = this.hass.states[entity.entity_id];
|
|
||||||
if (!stateObj) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return this.entityFilter!(stateObj);
|
|
||||||
})
|
|
||||||
) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
private _entityRegMeetsFilter(entity: EntityRegistryDisplayEntry): boolean {
|
private _entityRegMeetsFilter(entity: EntityRegistryEntry): boolean {
|
||||||
if (entity.entity_category) {
|
if (entity.entity_category) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (
|
if (
|
||||||
this.includeDomains &&
|
this.includeDomains &&
|
||||||
!this.includeDomains.includes(computeDomain(entity.entity_id))
|
!this.includeDomains.includes(computeDomain(entity.entity_id))
|
||||||
@@ -574,15 +568,8 @@ export class HaTargetPicker extends LitElement {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (this.entityRegFilter) {
|
||||||
if (this.entityFilter) {
|
return this.entityRegFilter(entity);
|
||||||
const stateObj = this.hass.states[entity.entity_id];
|
|
||||||
if (!stateObj) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (!this.entityFilter!(stateObj)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@@ -590,6 +577,12 @@ export class HaTargetPicker extends LitElement {
|
|||||||
static get styles(): CSSResultGroup {
|
static get styles(): CSSResultGroup {
|
||||||
return css`
|
return css`
|
||||||
${unsafeCSS(chipStyles)}
|
${unsafeCSS(chipStyles)}
|
||||||
|
.horizontal-container {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
min-height: 56px;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
.mdc-chip {
|
.mdc-chip {
|
||||||
color: var(--primary-text-color);
|
color: var(--primary-text-color);
|
||||||
}
|
}
|
||||||
@@ -602,10 +595,6 @@ export class HaTargetPicker extends LitElement {
|
|||||||
.mdc-chip.add {
|
.mdc-chip.add {
|
||||||
color: rgba(0, 0, 0, 0.87);
|
color: rgba(0, 0, 0, 0.87);
|
||||||
}
|
}
|
||||||
.add-container {
|
|
||||||
position: relative;
|
|
||||||
display: inline-flex;
|
|
||||||
}
|
|
||||||
.mdc-chip:not(.add) {
|
.mdc-chip:not(.add) {
|
||||||
cursor: default;
|
cursor: default;
|
||||||
}
|
}
|
||||||
@@ -677,15 +666,6 @@ export class HaTargetPicker extends LitElement {
|
|||||||
opacity: var(--light-disabled-opacity);
|
opacity: var(--light-disabled-opacity);
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
mwc-menu-surface {
|
|
||||||
--mdc-menu-min-width: 100%;
|
|
||||||
}
|
|
||||||
ha-entity-picker,
|
|
||||||
ha-device-picker,
|
|
||||||
ha-area-picker {
|
|
||||||
display: block;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -8,12 +8,6 @@ import { customElement, property } from "lit/decorators";
|
|||||||
export class HaTextArea extends TextAreaBase {
|
export class HaTextArea extends TextAreaBase {
|
||||||
@property({ type: Boolean, reflect: true }) autogrow = false;
|
@property({ type: Boolean, reflect: true }) autogrow = false;
|
||||||
|
|
||||||
firstUpdated() {
|
|
||||||
super.firstUpdated();
|
|
||||||
|
|
||||||
this.setAttribute("dir", document.dir);
|
|
||||||
}
|
|
||||||
|
|
||||||
updated(changedProperties: PropertyValues) {
|
updated(changedProperties: PropertyValues) {
|
||||||
super.updated(changedProperties);
|
super.updated(changedProperties);
|
||||||
if (this.autogrow && changedProperties.has("value")) {
|
if (this.autogrow && changedProperties.has("value")) {
|
||||||
@@ -53,10 +47,6 @@ export class HaTextArea extends TextAreaBase {
|
|||||||
margin-top: 16px;
|
margin-top: 16px;
|
||||||
margin-bottom: 16px;
|
margin-bottom: 16px;
|
||||||
}
|
}
|
||||||
:host([dir="rtl"]) .mdc-floating-label {
|
|
||||||
right: 16px;
|
|
||||||
left: initial;
|
|
||||||
}
|
|
||||||
`,
|
`,
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
@@ -1,24 +1,15 @@
|
|||||||
import { mdiLightbulbOutline } from "@mdi/js";
|
import { mdiLightbulbOutline } from "@mdi/js";
|
||||||
import { css, html, LitElement, TemplateResult } from "lit";
|
import { css, html, LitElement } from "lit";
|
||||||
import { property, customElement } from "lit/decorators";
|
import { customElement } from "lit/decorators";
|
||||||
import { HomeAssistant } from "../types";
|
|
||||||
|
|
||||||
import "./ha-svg-icon";
|
import "./ha-svg-icon";
|
||||||
|
|
||||||
@customElement("ha-tip")
|
@customElement("ha-tip")
|
||||||
class HaTip extends LitElement {
|
class HaTip extends LitElement {
|
||||||
@property({ attribute: false }) public hass!: HomeAssistant;
|
public render() {
|
||||||
|
|
||||||
public render(): TemplateResult {
|
|
||||||
if (!this.hass) {
|
|
||||||
return html``;
|
|
||||||
}
|
|
||||||
|
|
||||||
return html`
|
return html`
|
||||||
<ha-svg-icon .path=${mdiLightbulbOutline}></ha-svg-icon>
|
<ha-svg-icon .path=${mdiLightbulbOutline}></ha-svg-icon>
|
||||||
<span class="prefix"
|
<span class="prefix">Tip!</span>
|
||||||
>${this.hass.localize("ui.panel.config.tips.tip")}</span
|
|
||||||
>
|
|
||||||
<span class="text"><slot></slot></span>
|
<span class="text"><slot></slot></span>
|
||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
@@ -30,10 +21,7 @@ class HaTip extends LitElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.text {
|
.text {
|
||||||
direction: var(--direction);
|
|
||||||
margin-left: 2px;
|
margin-left: 2px;
|
||||||
margin-inline-start: 2px;
|
|
||||||
margin-inline-end: initial;
|
|
||||||
color: var(--secondary-text-color);
|
color: var(--secondary-text-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -1,13 +1,11 @@
|
|||||||
import "@polymer/paper-toast/paper-toast";
|
import "@polymer/paper-toast/paper-toast";
|
||||||
import type { PaperToastElement } from "@polymer/paper-toast/paper-toast";
|
import type { PaperToastElement } from "@polymer/paper-toast/paper-toast";
|
||||||
import { customElement } from "lit/decorators";
|
|
||||||
import type { Constructor } from "../types";
|
import type { Constructor } from "../types";
|
||||||
|
|
||||||
const PaperToast = customElements.get(
|
const PaperToast = customElements.get(
|
||||||
"paper-toast"
|
"paper-toast"
|
||||||
) as Constructor<PaperToastElement>;
|
) as Constructor<PaperToastElement>;
|
||||||
|
|
||||||
@customElement("ha-toast")
|
|
||||||
export class HaToast extends PaperToast {
|
export class HaToast extends PaperToast {
|
||||||
private _resizeListener?: (obj: { matches: boolean }) => unknown;
|
private _resizeListener?: (obj: { matches: boolean }) => unknown;
|
||||||
|
|
||||||
@@ -36,3 +34,5 @@ declare global {
|
|||||||
"ha-toast": HaToast;
|
"ha-toast": HaToast;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
customElements.define("ha-toast", HaToast);
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user