We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Consider a use case, where I want to show a pageloader until the shiny app first becomes idle. I would use the following code:
pageloader
idle
library(shiny) library(shinybulma) js <- HTML("$(document).one('shiny:idle', () => $('.pageloader').removeClass('is-active'))") ui <- bulmaPage( tags$head(tags$script(js)), div(class = "pageloader is-active"), uiOutput("slow_me") ) server <- function(input, output, session) { output$slow_me <- renderUI({ Sys.sleep(3) p("Done") }) } shinyApp(ui, server)
However, this does not work, because of this:
shinybulma/inst/js-0.7.2/bulma-pageloader-js.js
Lines 5 to 8 in 93855e2
Which can be easily verified by not loading bulma-pageloader-js.js
bulma-pageloader-js.js
no_dep <- htmltools::htmlDependency( name = "js", version = "0.7.3", src = c(file = system.file("js-0.7.2", package = "shinybulma")), script = setdiff(list.files(system.file("js-0.7.2", package = "shinybulma")), "bulma-pageloader-js.js") ) ui2 <- tagAppendChild(ui, no_deps) shinyApp(ui2, server)
Hence, I would drop bulma-pageloader-js.js and let the user define when to load and unload the pageloader
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Consider a use case, where I want to show a
pageloader
until the shiny app first becomesidle
. I would use the following code:However, this does not work, because of this:
shinybulma/inst/js-0.7.2/bulma-pageloader-js.js
Lines 5 to 8 in 93855e2
Which can be easily verified by not loading
bulma-pageloader-js.js
Hence, I would drop
bulma-pageloader-js.js
and let the user define when to load and unload thepageloader
The text was updated successfully, but these errors were encountered: