View source: R/landing_popup_module.R
landing_popup_module | R Documentation |
Creates a landing welcome popup for teal
applications.
This module is used to display a popup dialog when the application starts. The dialog blocks access to the application and must be closed with a button before the application can be viewed.
landing_popup_module(
label = "Landing Popup",
title = NULL,
content = NULL,
buttons = modalButton("Accept")
)
label |
( |
title |
( |
content |
( |
buttons |
( |
A teal_module
(extended with teal_landing_module
class) to be used in teal
applications.
app1 <- init(
data = teal_data(iris = iris),
modules = modules(
landing_popup_module(
content = "A place for the welcome message or a disclaimer statement.",
buttons = modalButton("Proceed")
),
example_module()
)
)
if (interactive()) {
shinyApp(app1$ui, app1$server)
}
app2 <- init(
data = teal_data(iris = iris),
modules = modules(
landing_popup_module(
title = "Welcome",
content = tags$b(
"A place for the welcome message or a disclaimer statement.",
style = "color: red;"
),
buttons = tagList(
modalButton("Proceed"),
actionButton("read", "Read more",
onclick = "window.open('http://google.com', '_blank')"
),
actionButton("close", "Reject", onclick = "window.close()")
)
),
example_module()
)
)
if (interactive()) {
shinyApp(app2$ui, app2$server)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.