Nothing
library(shiny)
library(shiny.fluent)
ui <- function(id) {
ns <- NS(id)
reactOutput(ns("focusTrapZone"))
}
server <- function(id) {
moduleServer(id, function(input, output, session) {
ns <- session$ns
output$focusTrapZone <- renderReact({
useTrapZone <- isTRUE(input$useTrapZone)
stackStyles <- list(root = list(
border = if (useTrapZone) '2px solid #ababab' else 'transparent',
padding = 10
))
textFieldStyles <- list(root = list(width = 300));
stackTokens = list(childrenGap = 8);
div(
FocusTrapZone(
disabled = !useTrapZone,
Stack(
horizontalAlign = "start",
tokens = stackTokens,
styles = stackStyles,
Toggle.shinyInput(ns("useTrapZone"),
value = FALSE,
label = "Use trap zone",
onText = "On (toggle to exit)",
offText = "Off (toggle to trap focus)"
),
TextField.shinyInput(
ns("textInput"),
label = "Input inside trap zone",
styles = textFieldStyles
),
Link(
href = "https://bing.com",
target = "_blank",
"Hyperlink inside trap zone"
)
)
),
Link(
href = "https://bing.com",
target = "_blank",
"Hyperlink outside trap zone"
)
)
})
})
}
if (interactive()) {
shinyApp(ui("app"), function(input, output) server("app"))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.