Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
274 views
in Technique[技术] by (71.8m points)

r - How do you link various Shiny dashboards together?

As you build various Shiny dashboards for your colleagues, what is the best way to "link" them all together so people can navigate between the team apps?

One approach

I am currently planning to add to each app, an "about" page tab, with the URLs/names of the other apps for people to jump to.

Example of ui for tabPanel("about", uiOutput("aboutui")):

output$aboutui <- renderUI({
  tabPanel(title = "Our other apps",
           fluidRow(helptext("Please go take a look at our other team apps:")),  
           fluidRow(a("Foo App", href="https://test.shinyapps.io/fooapp", target="_blank")),
           fluidRow((a("Bar App", href="https://test.shinyapps.io/barapp", target="_blank"))
           )          
})

This will of course be a pain to update as the team builds more apps, as then new changes have to be replicated to all the other apps.

Better way?

Can others recommend a better approach?

question from:https://stackoverflow.com/questions/65903253/how-do-you-link-various-shiny-dashboards-together

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...