A minimalistic router for your Shiny apps.
Now it’s possible to recreate a state of your app, by providing a specific URL, like:
make_router(
route("<your_app_url>/main", mainPageShinyUI),
route("<your_app_url>/other", otherPageShinyUI)
)
Basic tutorial article is available on Appsilon’s blog.
This library source code can be found on Appsilon’s Github: https://github.com/Appsilon/shiny.router
It’s possible to install this library through CRAN
install.packages("shiny.router")
The most recent version you can get from this repo using remotes.
::install_github("Appsilon/shiny.router") remotes
To install previous version you can run:
::install_github("Appsilon/shiny.router", ref = "0.1.0") remotes
Visit examples directory for some complete samples. Here’s the basic usage:
library(shiny)
library(shiny.router)
<- div(h2("Root page"))
root_page <- div(h3("Other page"))
other_page
<- make_router(
router route("/", root_page),
route("other", other_page)
)
<- fluidPage(
ui title = "Router demo",
$ui
router
)
<- function(input, output, session) {
server $server(input, output, session)
router
}
shinyApp(ui, server)
If you want to contribute to this project please submit a regular PR, once you’re done with new feature or bug fix.
Reporting a bug is also helpful - please use github issues and describe your problem as detailed as possible.
Changes in documentation
Documentation is rendered with pkgdown
. Just run
pkgdown::build_site()
after editing documentation or
README.md
.
We used the latest versions of dependencies for this library, so please update your R environment before installation.
However, if you encounter any problems, try the following:
magrittr
r install.packages("magrittr", version='1.5')
shiny
r install.packages("shiny", version='0.14.2.9001')
shiny.semantic
dependency - one of our examples
uses one of our others libraries, so please install it as well, when
running that example. Repository: shiny.semantic.Appsilon is the Full Service Certified RStudio
Partner. Learn more at appsilon.com. Get in touch
support+opensource@appsilon.com
.