Overlay
Overlay.Rd
Documentation: https://blueprintjs.com/docs/#core/components/overlay
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"))