JohnCoene / waiter

🕰️ Loading screens for Shiny
https://waiter.john-coene.com/
Other
495 stars 25 forks source link

HTML notifications don't seem to work with waitress #134

Open matt-sd-watson opened 1 year ago

matt-sd-watson commented 1 year ago

I am using Waitress in my Shiny app with the following start code:

new_waitress <- Waitress$new(theme = "overlay-percent", infinite = TRUE)
new_waitress$start(h3("Generating panel"))

So I would expect to see 'generaing panel' in my waitress progress bar.

However, when the app is running, the following screen is shown and doesn't change until I call new_waitress$close(), so it is basically frozen on 1% progress:

Screenshot from 2023-02-17 10-45-35

Just curious if I am calling any functions or variables incorrectly here.