Overlay {shiny.blueprint} | R Documentation |
Overlay
Description
Documentation: https://blueprintjs.com/docs/#core/components/overlay
Usage
Overlay(...)
Arguments
... |
Component props and children. See the official Blueprint docs for details. |
Value
Object with shiny.tag
class suitable for use in the UI of a Shiny app.
Examples
library(shiny.blueprint)
library(shiny)
ui <- function(id) {
ns <- NS(id)
tagList(
Button.shinyInput(
inputId = ns("showOverlay"),
"Show overlay"
),
reactOutput(ns("overlay"))
)
}
server <- function(id) {
moduleServer(id, function(input, output, session) {
ns <- session$ns
isOpen <- reactiveVal(FALSE)
observeEvent(input$showOverlay, isOpen(TRUE))
observeEvent(input$closeOverlay, isOpen(FALSE))
output$overlay <- renderReact({
Overlay(
usePortal = FALSE,
isOpen = isOpen(),
onClose = triggerEvent(ns("closeOverlay")),
Card(
className = "bp5-elevation-4 bp5-dark bp5-overlay-content",
interactive = TRUE,
H5("Analytical applications"),
tags$p(
"User interfaces that enable people to interact smoothly with data,",
" ask better questions, and make better decisions."
),
Button.shinyInput(
inputId = ns("closeOverlay"),
"Close"
)
)
)
})
})
}
if (interactive()) shinyApp(ui("app"), function(input, output) server("app"))
[Package shiny.blueprint version 0.3.0 Index]