Understanding renderUI in Shiny

I have a Shiny app that allows the user to load a csv and then plot the data.
I then have some custom functions to create different UI elements, that are passed into the server, for example:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code> GroupByUI <- function(id,
data,
label = 'Group By',
selected = 'All',
None = FALSE,
All = TRUE) {
renderUI({
xsecs <- data %>%
select_if(is.character) %>%
names()
if (None) {
xsecs <- c('None', xsecs)
}
if (All == FALSE) {
xsecs <- xsecs[-which(xsecs == 'All')]
selectInput(inputId = paste0('groupby_', id),
label = label,
choices = as.list(xsecs),
selected = as.list(xsecs)[1])
} else {
selectInput(inputId = paste0('groupby_', id),
label = label,
choices = as.list(xsecs),
selected = selected)
}
})
}
</code>
<code> GroupByUI <- function(id, data, label = 'Group By', selected = 'All', None = FALSE, All = TRUE) { renderUI({ xsecs <- data %>% select_if(is.character) %>% names() if (None) { xsecs <- c('None', xsecs) } if (All == FALSE) { xsecs <- xsecs[-which(xsecs == 'All')] selectInput(inputId = paste0('groupby_', id), label = label, choices = as.list(xsecs), selected = as.list(xsecs)[1]) } else { selectInput(inputId = paste0('groupby_', id), label = label, choices = as.list(xsecs), selected = selected) } }) } </code>
   GroupByUI <- function(id,
                      data,
                      label = 'Group By',
                      selected = 'All',
                      None = FALSE,
                      All = TRUE) {
  renderUI({
    xsecs <- data %>%
      select_if(is.character) %>%
      names()

    if (None) {
      xsecs <- c('None', xsecs)
    }

    if (All == FALSE) {
      xsecs <- xsecs[-which(xsecs == 'All')]

      selectInput(inputId = paste0('groupby_', id),
                  label = label,
                  choices = as.list(xsecs),
                  selected = as.list(xsecs)[1])

    } else {

      selectInput(inputId = paste0('groupby_', id),
                  label = label,
                  choices = as.list(xsecs),
                  selected = selected)
    }
  })

} 

and in the server I have:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>output$GroupBy_Area <- GroupByUI(
id = "area",
data = dataFlt()
)
</code>
<code>output$GroupBy_Area <- GroupByUI( id = "area", data = dataFlt() ) </code>
output$GroupBy_Area <- GroupByUI(
  id = "area",
  data = dataFlt()
)

and this works when I load a first csv (e.g. the Group By selectInput is updated the correct variable names).

For context, dataFlt() is a reactive and it’s set to NULL and updates every time I load a new/different csv.

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>dataFlt <- reactive({
req(uploadedData$data)
datafl <- uploadedData$data
})
</code>
<code>dataFlt <- reactive({ req(uploadedData$data) datafl <- uploadedData$data }) </code>
dataFlt <- reactive({
  req(uploadedData$data)
  datafl <- uploadedData$data
})

The problem that I have is, that if I have loaded a csv, plotted the data and then I change the csv that I load (e.g. I change the data I want to plot, variables’ names change), the options in the Group By selectInput do not update accordingly UNLESS I move the renderUI directly to the server:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>output$GroupBy_Area <- renderUI({
req(dataFlt())
GroupByUI(id = "area",
data = dataFlt())
})
</code>
<code>output$GroupBy_Area <- renderUI({ req(dataFlt()) GroupByUI(id = "area", data = dataFlt()) }) </code>
output$GroupBy_Area <- renderUI({
  req(dataFlt())
  GroupByUI(id = "area", 
            data = dataFlt())
})

and I remove the renderUI from the function:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>GroupByUI <- function(id, data, label = 'Group By', selected = 'All', None = FALSE, All = TRUE) {
xsecs <- data %>%
select_if(is.character) %>%
names()
if (None) {
xsecs <- c('None', xsecs)
}
if (All == FALSE) {
xsecs <- xsecs[-which(xsecs == 'All')]
selectInput(inputId = paste0('groupby_', id),
label = label,
choices = as.list(xsecs),
selected = as.list(xsecs)[1])
} else {
selectInput(inputId = paste0('groupby_', id),
label = label,
choices = as.list(xsecs),
selected = selected)
}
}
</code>
<code>GroupByUI <- function(id, data, label = 'Group By', selected = 'All', None = FALSE, All = TRUE) { xsecs <- data %>% select_if(is.character) %>% names() if (None) { xsecs <- c('None', xsecs) } if (All == FALSE) { xsecs <- xsecs[-which(xsecs == 'All')] selectInput(inputId = paste0('groupby_', id), label = label, choices = as.list(xsecs), selected = as.list(xsecs)[1]) } else { selectInput(inputId = paste0('groupby_', id), label = label, choices = as.list(xsecs), selected = selected) } } </code>
GroupByUI <- function(id, data, label = 'Group By', selected = 'All', None = FALSE, All = TRUE) {
  xsecs <- data %>%
    select_if(is.character) %>%
    names()

  if (None) {
    xsecs <- c('None', xsecs)
  }

  if (All == FALSE) {
    xsecs <- xsecs[-which(xsecs == 'All')]

    selectInput(inputId = paste0('groupby_', id),
                label = label,
                choices = as.list(xsecs),
                selected = as.list(xsecs)[1])

  } else {
    selectInput(inputId = paste0('groupby_', id),
                label = label,
                choices = as.list(xsecs),
                selected = selected)
  }
}

With this latest code (moving the renderUI directly to the server), it works every time I change the data I load.

What I don’t understand is why. What’s the difference? And why do the original code works the first time?

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật