Hi!
I found your js and it works greatā¦in english. Can you tell where you picked up those english words? OK, āhaToast.textā is text, displayed at the bottom, that part i get. But how to get local translation of āRefreshing pageā¦ā? (i run Slovenian translation).
I Also found out that it seems that this script works only in browsers, but not in HA native apps (not on ipad and also not on android phone). Is there any setting for this?
Hi,
I have this script working on my tablet in HA Companion app, and just tried and seems to be working also in app on iphone. Did you try āturning it off and back on againā, or force stopping the app and starting it back on?
Regarding running it with translation, and these are just my 2 cents, not an expert, I would try replacing the haToast.text with whatever is written at the bottom in slovenian, and removing the āconsole.log(āRefreshing pageā¦ā)ā line (itās inside the if loop, so my guess is that you can either substitute text with whatever you want or completely remove it).
Good luck!
I managed to get it working on ipad by rebooting device. But still doesnāt work on android app, though, which is not that important aynway, since iām using it only on my phone. Main thing is that it works on fully kiosk on my two android tablets on my walls (around the house)
.
Regarding translation: i did replace haToast.text, but it doesnāt work, because i canāt find correct translation for āRefreshing pageā (i tried a few, but didnāt succeed).
But, at the end i concluded, that perhaps itās better this way. Why? Well, i can use english on my tablet on the wall - it doesnāt matter, since i have hidden left menu and top line - so i get auto-refresh there. But, on my PC iāll stick with slovenian and thus prevent from too frequent auto-refreshing when tinkering with lovelace cards. I have the habbit to keep one browser tab open as a ābackupā while i change cards on the other tab. So i can copy/paste old version quickly if anything goes wrong.
It would be nice to know location of that āmagicā word, thoughā¦
Since i donāt want all my devices to auto-refresh but only selected, i kept digging and found this alternative, which is selective and it refreshes lovelace only on selected tablets/PCās. Itās a part of ābrowser modā HACS integration. You just create an automation with trigger: event and add action on desired devices (sample below).
Of course first we must make sure that device has always the same ID, which is achieved with this startup url:
service: browser_mod.window_reload
data:
deviceID: 22222222-22222222
mode: single
One warning, though: this auto-refresh doesnāt work immediately after HA is restarted. In fact, nothing via browser mod works after HA restart (speech, popupsā¦). At that point you must manually refresh tablet (reload page) in order to work again (i use teamviewer to do that).
I guess that itās browser-mod limitation, maybe right after restart device doesnāt get wanted IDā¦
ā¦and with the update to 2022.4.xx it stopped working. I feel like Iām constantly just chasing my own tail with these updates.
Now off to find some other working solutionā¦
It is because the new version string is updated to āYour dashboard was updated. Refresh to see changes?ā . You can modify the script.
/* check full string */
if (haToast.text === 'Your dashboard was updated. Refresh to see changes?') {
console.log("Refreshing page...")
location.reload()
}
or
/* check the keyword to refresh */
if (haToast.text.indexOf('Refresh to see changes') >= 0) {
console.log("Refreshing page...")
location.reload()
}
Hi,
Thanks for your reply.
This was actually the first thing I tried, to change the script according to the new text (like your first example). However, it didnāt seem to work - maybe I just didnāt reboot all the necessary things. Iāll check again.
Second one seems more generic, in case they change the text again, so I might go with that option.
Thanks!
EDIT: Nope, I still cannot get it to work. Message appears on screen but nothing happens.
Hi,
Iām trying to keep my system āsimpleā, without too many āunofficialā integrations, so at the moment I donāt use browser mod.
I tried going down that route but then everything has some dependencies and update of something creates problems on some other side, so for now Iām trying to stick to barebone HA as much as possible.
But thanks for your reply, maybe Iāll try that option eventually.
If you use Fully Kiosk application (which I higly recommend for a dashboard), you can send a REST command remotely to your tablet to make it reload the StartURL. Itās basically asking your tablet to visit a URL.
VERY simple to implement and works flawlessly. You can do the same after a HASS reboot, listening for the event āhomeassistant_startedā. I give it a little delay before calling it to make sure everything has loaded properly.
Hi!
Unfortunately never made it work the way it was, never was able to find a simple way to refresh dashboard (without browsermod od fullykiosk), so I had to rework my dashboard such that it doesnāt need refresh to work properly. (Ended up using conditional cards for all those elements that needed refresh, maybe it could help you as well)
Would still be interested to see it working using the same .js script as before.
Hi everyone, I just revisited this topic since Iām setting up a Amazon Fire Tablet (with the Fully Kiosk app.)
I updated the JS to handle the changed notification message and itās working again:
function refreshOnLovelaceChange() {
const urlSearchParams = new URLSearchParams(window.location.search)
if (urlSearchParams.get('kiosk') !== 'true') { return }
const ha = document.querySelector("home-assistant")
if (!ha || !ha.shadowRoot) return
const nm = ha.shadowRoot.querySelector('notification-manager')
if (!nm || !nm.shadowRoot) return
const haToast = nm.shadowRoot.querySelector('ha-toast')
if (!haToast) return
if (haToast.text.includes('dashboard was updated')) {
console.log("Refreshing page...")
location.reload()
}
};
setInterval(refreshOnLovelaceChange, 500);
I also added a check for the ?kiosk=true query param since I only want auto-refresh to happen in kiosk mode.
@RayLation Thanks for the tip, thatās a great idea! Home Assistant has a really nice FullyKioskBrowser app integration as well, which calls the remote API:
I know Iām boring, but with your updated script I still cannot make it work properly. Have no idea whatās wrong.
(Iām not using kiosk so I removed that part from the code)
Maybe this version will work using older JavaScript syntax (var instead of const):
function refreshOnLovelaceChange() {
var urlSearchParams = new URLSearchParams(window.location.search);
if (urlSearchParams.get("kiosk") !== "true") {
return;
}
var ha = document.querySelector("home-assistant");
if (!ha || !ha.shadowRoot) {
return;
}
var nm = ha.shadowRoot.querySelector("notification-manager");
if (!nm || !nm.shadowRoot) {
return;
}
var haToast = nm.shadowRoot.querySelector("ha-toast");
if (!haToast) {
return;
}
if (haToast.text.includes("dashboard was updated")) {
console.log("Refreshing page...");
location.reload();
}
}
setInterval(refreshOnLovelaceChange, 500);
I updated the code with the var, and itās working again!!!
To be honest, it surprised me quite a bit, as in the original version that worked long ago const was used.
I would bet that I had one too many/too less of ā;ā or a wrong type of quotation mark somewhere that I overlooked all those times I went over it and tried to change something to make it work.
But now that itās working again, Iām not touching it ever again
Thanks once again for your effort and help!
Edit/Update: Itās now working on all my devices except tablet, or the only one I need to work
Now I need to figure out why, and what needs to be changed/updated on the tablet itselfā¦
Iām testing this script (again, after a whileā¦) and i managed to get it work, but i have one problem:
i have a couple of tablets running kiosk - here script works fine.
i also have one laptop (x360 series with touchscreen) as my main screen and since it runs windows of course it doesnāt refresh.
So, i removed ākioskā part and get it to work on my all screens.
Now to my question: when iām working on my HA iād like NOT to have auto-refresh enabled each time i click āsaveā on my card. So iād create an āinput_boolean.refresh_enableā in HA. Is it possible to insert this boolean in above script so it would work only if this boolean is 1?
Or at least - how to temporarily disable this auto-refresh script from executing without restart HA?
Another idea - simulate the āclick linkā - then not the full location will be reloaded.
In my case it looks better (faster refresh), and the kiosk mode is still available if using in browser mode.
(Iām using the WallPanel frontend (HACS) - thatās why had to disable the first lines for kiosk mode)
function refreshOnLovelaceChange() {
// var urlSearchParams = new URLSearchParams(window.location.search);
// if (urlSearchParams.get("kiosk") == "true") {
// return;
// }
try {
var haToast= document.querySelector("home-assistant").shadowRoot.querySelector("notification-manager").shadowRoot.querySelector("ha-toast");
} catch (error) { }
if (!haToast) {
return;
}
if (haToast.text.includes("ashboard")) {
if(haToast.style.display !== 'none').
{
console.log("Refreshing page...");
haToast.querySelector("mwc-button").shadowRoot.querySelector("#button > span.mdc-button__label").click();
}
}
}
setInterval(refreshOnLovelaceChange, 500);