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

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

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)

I get an error in log:

Logger: frontend.js.latest.202211080
Source: components/system_log/__init__.py:256

http://xxx.xxx.xxx.xxx:8123/local/refresh_ui.js:9:1 Uncaught SyntaxError: Invalid or unexpected token

Gave up on this long time ago but still revisit is occasionaly as it was quite useful.

Sorry to hear that @doubleDD, could you please post the full contents of your refresh_ui.js file here?
Also what browser and OS are you using?

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);

Could you please try that?

THANK YOU!!!

I updated the code with the var, and itā€™s working again!!! :grinning_face_with_smiling_eyes:

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. :frowning:
But now that itā€™s working again, Iā€™m not touching it ever again :rofl:

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 :joy: :sob:
Now I need to figure out why, and what needs to be changed/updated on the tablet itselfā€¦

1 Like

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?

@ndbroadbent Great idea! Thanks! Solved my issueā€¦

But I have modified a bit - maybe interesting for users with other languages (like German) :wink:
I hope no other important messages will be there closed :slight_smile:

function refreshOnLovelaceChange() {
...
...
  if (haToast.text.includes("ashboard ")) {
    console.log("Refreshing page...");
    location.reload();
  }
}

setInterval(refreshOnLovelaceChange, 500);

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);
1 Like