Skip to content

Instantly share code, notes, and snippets.

@nanxstats
Created April 14, 2022 04:26
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nanxstats/e43c1f207dc8b727f6c832d3226d1d16 to your computer and use it in GitHub Desktop.
Save nanxstats/e43c1f207dc8b727f6c832d3226d1d16 to your computer and use it in GitHub Desktop.
Bootstrap 5 Switches for Shiny
switchInput <- function(inputId, label, value = FALSE, disabled = FALSE, width = NULL) {
value <- shiny::restoreInput(id = inputId, default = value)
inputTag <- htmltools::tags$input(id = inputId, type = "checkbox", role = "switch", class = "form-check-input")
if (!is.null(value) && value) {
inputTag$attribs$checked <- NA
}
if (!is.null(disabled) && disabled) {
inputTag$attribs$disabled <- NA
}
htmltools::tags$div(
class = "form-group shiny-input-container", style = htmltools::css(width = shiny::validateCssUnit(width)),
htmltools::tags$div(
class = "from-check form-switch",
inputTag,
htmltools::tags$label(label, class = "form-check-label")
),
)
}
updateSwitchInput <- shiny::updateCheckboxInput
card <- function(title, ...) {
htmltools::tags$div(
class = "card",
htmltools::tags$div(class = "card-header", title),
htmltools::tags$div(class = "card-body", ...)
)
}
ui <- shiny::fluidPage(
title = "Bootstrap 5 Switches for Shiny",
theme = bslib::bs_theme(
version = 5,
primary = "#002FA7",
`form-check-input-checked-bg-color` = "#002FA7"
),
lang = "en",
shiny::fluidRow(
style = "margin-top: 20px;",
shiny::column(
width = 8, offset = 2,
card(
title = "Bootstrap 5 Switches for Shiny",
switchInput("input1", label = "Default switch checkbox input", width = "100%"),
verbatimTextOutput("value1"),
switchInput("input2", label = "Checked switch checkbox input", value = TRUE, width = "100%"),
verbatimTextOutput("value2"),
switchInput("input3", label = "Disabled switch checkbox input", disabled = TRUE, width = "100%"),
verbatimTextOutput("value3"),
switchInput("input4", label = "Disabled checked switch checkbox input", value = TRUE, disabled = TRUE, width = "100%"),
verbatimTextOutput("value4"),
sliderInput("controller", "Controller", min = 0, max = 4, value = 0, step = 1),
switchInput("input5", "Input switch that can be updated")
)
)
)
)
server <- function(input, output, session) {
output$value1 <- renderText(input$input1)
output$value2 <- renderText(input$input2)
output$value3 <- renderText(input$input3)
output$value4 <- renderText(input$input4)
observe({
# TRUE if input$controller is odd, FALSE if even.
x_even <- input$controller %% 2 == 1
updateSwitchInput(session, "input5", value = x_even)
})
}
shiny::shinyApp(ui, server)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment