从Shiny模块内部调用updateTabItems

时间:2018-06-26 09:10:14

标签: r shiny shinydashboard

在我的闪亮应用程序中,我有很多valueBoxes,每个valueBoxes代表Shinydashboard侧栏中的tabItem。单击valueBox时,页面应移至正确的选项卡。

我编写了一个可重用的模块,而不是多次粘贴代码,该模块呈现valueBox并将valueBox的类更改为actionButton。在服务器部分,我包括了一个watchEvent,当单击valueBox时,该事件会调用updateTabItems。但是当单击时什么也没有发生。看来该模块无法操纵仪表板侧栏。

library(shiny)
library(shinydashboard)

value_box_output <- function(.id) {
  ns <- NS(.id)
  valueBoxOutput(ns("overview.box"))
}

value_box <- function(input, output, session, .value, .subtitle, .tab.name) {
  ns <- session$ns

  output$overview.box <- renderValueBox({
    box1 <- valueBox(
      .value,
      .subtitle,
      href = "#",
      width = NULL
    )
    box1$children[[1]]$attribs$class <- "action-button"
    box1$children[[1]]$attribs$id <- ns("button")
    box1
  })

  observeEvent(input$button, {
    print("clicked")
    updateTabItems(session, inputId = "tabs", selected = .tab.name)
  })
}


ui <- dashboardPage(
  dashboardHeader(title = "Title"),
  dashboardSidebar(
    sidebarMenu(
    id = "tabs",
    menuItem("Overview", tabName = "Overview"),
    menuItem("Tab 1", tabName = "Tab_1")
    )
  ),
  dashboardBody(
    tabItems(
      tabItem("Overview", value_box_output("tab")),
      tabItem("Tab_1")
    )
  )
)

server <- function(input, output, session) {
  callModule(value_box,
             "tab",
             .value = 33,
             .subtitle = "Tab 1",
             .tab.name = "Tab_1")
}

shinyApp(ui, server)

1 个答案:

答案 0 :(得分:1)

您可以在这篇文章中找到答案:Accessing parent namespace inside a shiny module

基本上,在模块内部的updateTabItems()中,您需要调用父级的会话,而不是模块的会话。

因此,为您的会话添加一个变量到callModule()并在updateTabItems()中调用它。