gpt4 book ai didi

r - Shiny 模块 : switch tabs from within modules that have different namespaces

转载 作者:行者123 更新时间:2023-12-01 23:11:34 25 4
gpt4 key购买 nike

我有一个带有多个选项卡的 Shiny 应用程序,我希望在选项卡内有允许用户切换选项卡的操作按钮。我之前问过这个问题:R Shiny: Change tabs from within a module并得到了一个有用的答案,但没有完全解决我的问题。

当我使用相同的id (tab.1) 调用modtab1 和modtab2 时,它允许我切换选项卡,但它不区分两个input$userid;当我使用不同的 ID 时,它会区分两个 input$userid,但不允许我切换标签页。

library(shiny)
modtab1_ui <- function(id) {
ns <- NS(id)
tabPanel(title = 'Tab 1',
value = NS(id, 'tab.1'),
h4('This is the first tab'),
actionButton(NS(id, 'nexttab'), 'Next Tab'),

textInput(NS(id, 'userid'), 'User ID'),
textOutput(outputId = NS(id, 'id'))
) # tabPanel
}

modtab1_server <- function(id) {
moduleServer(id,
function(input, output, session) {
observeEvent(input$nexttab, {
print(paste('switching to tab 2', input$userid))
updateTabsetPanel(session = session, inputId = 'tabs',
# selected = NS('tab2', 'tab.2')
# selected = 'tab.2'
selected = ns('tab.2')
)
})

output$id <- renderText(input$userid)
})
}

modtab2_ui <- function(id) {
ns <- NS(id)
tabPanel(title = 'Tab 2',
value = NS(id, 'tab.2'),

h4('This is the second tab'),
actionButton(NS(id, 'firsttab'), 'First Tab'),

textInput(NS(id, 'userid'), 'User ID'),
textOutput(outputId = NS(id, 'useridout'))
) # tabPanel
}

modtab2_server <- function(id) {
moduleServer(id,
function(input, output, session) {
observeEvent(input$firsttab, {
print(paste('switching to tab 1', input$userid))
updateTabsetPanel(session = session, inputId = 'tabs',
# selected = NS('tab1', 'tab.1')
# selected = 'tab.1'
selected = ns('tab.1')
)
})

output$id <- renderText(input$userid)
})
}


ui <- fluidPage(
tabsetPanel(
'tabs',
modtab1_ui('tab1'),
modtab2_ui('tab2')
)
)

server <- function(input, output, session) {
modtab1_server('tab1')
modtab2_server('tab2')
}

shinyApp(ui = ui, server = server)

最佳答案

我认为这是一个 MWE,可以满足您的需求。

library(shiny)

modtab1_ui <- function(id) {
ns <- NS(id)
tabPanel(
title = 'Tab 1',
value = ns('tab'),
h4('This is the first tab'),
actionButton(ns('nexttab'), 'Next Tab')
) # tabPanel
}

modtab1_server <- function(id) {
moduleServer(id,
function(input, output, session) {
retVal <- reactiveValues(count=0)

observeEvent(input$nexttab, retVal$count <- retVal$count + 1)
return(reactive(retVal$count))
})
}

modtab2_ui <- function(id) {
ns <- NS(id)
tabPanel(
title = 'Tab 2',
value = ns('tab'),
h4('This is the second tab'),
actionButton(ns('firsttab'), 'First Tab')
) # tabPanel
}

modtab2_server <- function(id) {
moduleServer(id,
function(input, output, session) {
retVal <- reactiveValues(count=0)

observeEvent(input$firsttab, retVal$count <- retVal$count + 1)
return(reactive(retVal$count))
})
}

ui <- fluidPage(
tabsetPanel(
id='tabs',
modtab1_ui('tab1'),
modtab2_ui('tab2')
)
)

server <- function(input, output, session) {

tab1val <- modtab1_server('tab1')
tab2val <- modtab2_server('tab2')

observeEvent(tab1val(), {
updateTabsetPanel(session, 'tabs', selected = 'tab2-tab')
})

observeEvent(tab2val(), {
updateTabsetPanel(session, 'tabs', selected = 'tab1-tab')
})
}

shinyApp(ui = ui, server = server)

注意语法的变化,特别是关于 nsNS 的使用以及传递给函数的参数。

另外,请注意模块服务器函数的返回值的使用,以及它们在主服务器函数中的访问方式。

关于r - Shiny 模块 : switch tabs from within modules that have different namespaces,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69831550/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com