-
Notifications
You must be signed in to change notification settings - Fork 8
/
module_renderUI_observe.R
48 lines (43 loc) · 1.07 KB
/
module_renderUI_observe.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
library(shiny)
## Basic module with observe().
## Note that update*Input do not use ns().
sliderTextUI <- function(id) {
ns <- NS(id)
tagList(
uiOutput(ns("set_slider")),
checkboxInput(ns("check"), "Flip slider", FALSE),
textOutput(ns("number"))
)
}
sliderText <- function(input, output, session, show) {
ns <- session$ns
output$set_slider <- renderUI({
sliderInput(ns("slider"), "Slide me", 0, 100, 5)
})
output$number <- renderText({
if(show())
input$slider
else
NULL
})
observe({
check <- req(input$check)
slider <- input$slider
if(check) {
updateSliderInput(session, "slider", value=100-slider)
updateCheckboxInput(session, "check", value=FALSE)
}
})
reactive({input$slider + 5})
}
ui <- fluidPage(
checkboxInput("display", "Show Value"),
sliderTextUI("module"),
h2(textOutput("value"))
)
server <- function(input, output) {
display <- reactive({input$display})
num <- callModule(sliderText, "module", display)
output$value <- renderText({paste0("slider1+5: ", num())})
}
shinyApp(ui, server)