Shiny app working with persistent projects

I'd like to build a Shiny app that works with persistent projects. That is, take the simplest shiny app you can think of (say the default histogram one) and wrap around a project management layer, where the project could simply be the set of inputs. So that:

  • The app lists and persists the list of projects
  • User can add/delete projects
  • Clicking/selecting a project leads you to the main shiny app (say the histogram) with the project inputs.

I'm sure this should be a top requested use case (so users can keep 'separate and persisten' inputs) in many shiny apps but I have struggled to find many pointers/examples. Has anyone got any? :smiley:
Thanks in advance!

Xavi.

This sounds like a custom implementation of bookmarking

https://shiny.rstudio.com/articles/bookmarking-state.html

As you can see the basic functionality is already present in shiny server natively, you can build on that.

1 Like

Regarding bookmarks please check my related answer here:

Also see this for an alternative approach:

1 Like

This topic was automatically closed 54 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.