aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/home-assistant
diff options
context:
space:
mode:
authorLibravatar André Oliveira <37463445+SpecialAro@users.noreply.github.com>2022-06-07 17:01:37 +0100
committerLibravatar GitHub <noreply@github.com>2022-06-07 16:01:37 +0000
commit54f3affd80401051db8464d6bed8ad4ed1e66fd1 (patch)
treed166ec91c97ec1220787c857f6e3c5004d13889b /recipes/home-assistant
parentAdd home assistant recipe (#47) (diff)
downloadferdium-recipes-54f3affd80401051db8464d6bed8ad4ed1e66fd1.tar.gz
ferdium-recipes-54f3affd80401051db8464d6bed8ad4ed1e66fd1.tar.zst
ferdium-recipes-54f3affd80401051db8464d6bed8ad4ed1e66fd1.zip
Add webview.js to some services that were generated without it. (#42)
This had blocked users from manually generating a `service.css` which is what the documentation recommends as self-help to override styling. Co-authored-by: Vijay A <vraravam@users.noreply.github.com>
Diffstat (limited to 'recipes/home-assistant')
-rw-r--r--recipes/home-assistant/package.json2
-rw-r--r--recipes/home-assistant/webview.js20
2 files changed, 11 insertions, 11 deletions
diff --git a/recipes/home-assistant/package.json b/recipes/home-assistant/package.json
index 60e06e0..0a8ad6a 100644
--- a/recipes/home-assistant/package.json
+++ b/recipes/home-assistant/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "home-assistant", 2 "id": "home-assistant",
3 "name": "Home Assistant", 3 "name": "Home Assistant",
4 "version": "1.0.0", 4 "version": "1.0.1",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "hasCustomUrl": true, 7 "hasCustomUrl": true,
diff --git a/recipes/home-assistant/webview.js b/recipes/home-assistant/webview.js
index a449cc4..7a0ab47 100644
--- a/recipes/home-assistant/webview.js
+++ b/recipes/home-assistant/webview.js
@@ -1,12 +1,12 @@
1module.exports = Ferdium => { 1module.exports = Ferdium => {
2 const getMessages = () => { 2 const getMessages = () => {
3 const badges = document.querySelector("home-assistant").shadowRoot.querySelector("home-assistant-main").shadowRoot.querySelector("ha-sidebar").shadowRoot.querySelectorAll(".notification-badge"); 3 const badges = document.querySelector("home-assistant").shadowRoot.querySelector("home-assistant-main").shadowRoot.querySelector("ha-sidebar").shadowRoot.querySelectorAll(".notification-badge");
4 if (badges.length > 0) { 4 if (badges.length > 0) {
5 var count = Ferdium.safeParseInt(badges[0].textContent.replace(/[^\p{N}]/gu, '')); 5 var count = Ferdium.safeParseInt(badges[0].textContent.replace(/[^\p{N}]/gu, ''));
6 Ferdium.setBadge(count) 6 Ferdium.setBadge(count)
7 } else { 7 } else {
8 Ferdium.setBadge(0) 8 Ferdium.setBadge(0)
9 } 9 }
10 }; 10 };
11 Ferdium.loop(getMessages); 11 Ferdium.loop(getMessages);
12}; 12};