[SOLVED] How can I get my dashboard to refresh automatically, instead of showing the "Refresh?" prompt?

Got it to work! This is the code in /config/www/custom.js:

function refreshOnLovelaceChange() {
    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 === 'The Lovelace UI configuration for this dashboard was updated. Refresh to see changes?') {
        console.log("Refreshing page...")
        location.reload()
    }
}
setInterval(refreshOnLovelaceChange, 500);
10 Likes

Great ! I am more bugged by the reload due to the upgrade of a frontend customisation or HA core upgrade.

Thanks for sharing, could probably be a HACS FrontEnd component to cope with I18N over time, other reasons to reload and to bring it to the masses. Possibly even a service to ask for a reload ā€¦ .

Iā€™ve built nightstand android tablets with an alarm clock Loveleace. When I make HA updates or reload and donā€™t refresh the tablets, the alarm sound may fail in the morning. Could I use this javascript to auto-refresh those tablets?

Hi @curtis-r, yes this should work fine for refreshing the lovelace dashboards on your tablets. Hope you can get it working!

Made an account just to like this! Will make my life so much easier when editing the lovelace yaml from VSCode and not having to switch to the browser window, hit refresh and close the dialog each time :partying_face:

Hello @ndbroadbent and @exynym,
Is there any other option/way to run location.reload() other than from .js?
Iā€™m completely unfamiliar with JavaScript, but have this problem Theme change on Companion app (on tablet with Android 8) and was thinking that it could possibly be a solution, instead of relentlessly restarting HA 2x daily.
I know that I cannot possibly write .js script by myself, but was also sad to found that no event is fired when you press Refresh on tablet screen. So is there some other way for us dummies to achieve similar results? :smiley:
Thanks in advance!

YAASSSS!!!
I was actually able to use your solution for my problem. Itā€™s not the cleanest solution, but it works. :smiley:
As I said, Refresh button does not produce any event, however there is an event when Lovelace is updated. So I implemented your code (that triggers on Lovelace update), and I just force the same event when I need Lovelace refresh. :grinning_face_with_smiling_eyes:
And it refreshes my tablet and resolves initial problem!

As I said, not the cleanest solution, but Iā€™ll take it. Unless/untill I learn JavaScript or find someone willing to modify your original script.
Thanks guys!

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?

And, of course: MANY thanks for this script!

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:

http://192.168.x.x:8123?deviceID=1111111-11111111

on second device:

http://192.168.x.x:8123?deviceID=22222222-22222222

etcā€¦

This way device will always get desired ID. Since i use browser mod for speech also, keeping same ID is essential.
Then just create an automation:

alias: Lovelace refresh when changed
description: ā€˜ā€™
trigger:

  • platform: event
    event_type: lovelace_updated
    condition:
    action:
  • service: browser_mod.window_reload
    data:
    deviceID: 11111111-11111111
  • 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ā€¦

1 Like

ā€¦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. :tired_face:
Now off to find some other working solutionā€¦

1 Like

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()
    }
2 Likes

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. :frowning:

Did you try what i wrote above (my last post)? It works like a charm hereā€¦

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.

Hello,

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.

https://www.fully-kiosk.com/en/#rest

Thus, you can create an event handler (via node-red or home assistant itself) to call this command upon receiving the ā€œlovelace_updatedā€ event.

I went the node-red route since itā€™s simpler for me:

If you go the home assistant route, I believe you need to create a RESTful command first, which you will simply call after in your automation.

https://www.home-assistant.io/integrations/rest_command/

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.

4 Likes

Hi! You made it work?

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.

1 Like

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:

It has a load_start_url button that you can press to reload the initial URL. So Iā€™ve set this up with an HA automation:

alias: Reload Home Assistant on Fire Tablet when Lovelace is updated
description: ""
trigger:
  - platform: event
    event_type: lovelace_updated
condition: []
action:
  - service: button.press
    data: {}
    target:
      entity_id: button.fire_tablet_load_start_url
mode: single

This works really well and reloads the page instantly, instead of waiting for a few seconds. Thanks!

4 Likes