From 71f34d4205176366ca29b3c6d5713028ac402739 Mon Sep 17 00:00:00 2001 From: Garrick Aden-Buie Date: Mon, 8 May 2023 15:29:30 -0400 Subject: [PATCH] Add 312-bslib-sidebar-resize (manual app) --- inst/apps/312-bslib-sidebar-resize/app.R | 56 ++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 inst/apps/312-bslib-sidebar-resize/app.R diff --git a/inst/apps/312-bslib-sidebar-resize/app.R b/inst/apps/312-bslib-sidebar-resize/app.R new file mode 100644 index 0000000000..e26fbcb7a0 --- /dev/null +++ b/inst/apps/312-bslib-sidebar-resize/app.R @@ -0,0 +1,56 @@ +### Keep this line to manually test this shiny application. Do not edit this line; shinycoreci::::is_manual_app + +library(shiny) +library(bslib) +library(ggplot2) +library(plotly) + +lorem1 <- p( + "Dolor cursus quis sociis, tempus laoreet integer vel,", + "nam suscipit sodales curabitur tristique. Hac massa", + "fames auctor ac posuere, non: primis semper egestas!", + "Porttitor interdum lobortis elementum arcu." +) + +lorem2 <- p( + "Elit aptent vivamus, eu habitasse fringilla venenatis", + "viverra tellus metus. Maecenas ultrices fermentum", + "nunc turpis libero nascetur!" +) + +ui <- page_fixed( + titlePanel("Sidebar Resize", "312 | bslib-sidebar-resize"), + h2("Static plot resizing"), + p( + "The plot in the layout below should stretch while the sidebar is opening", "or closing. After the transition is complete, the server will update the", + "plot with the final dimensions." + ), + layout_sidebar( + sidebar = sidebar(title = "Toggle me", lorem1, lorem2, lorem1), + lorem1, + plotOutput("plot_static"), + lorem2 + ), + h2("Widget plot resizing", class = "mt-4 mb-2"), + p( + "The plot in the layout below should stretch while the sidebar is opening", "or closing. There should be no layout shift after the transition is", "complete." + ), + layout_sidebar( + sidebar = sidebar(title = "Toggle me", lorem1, lorem2, lorem1), + lorem1, + plotlyOutput("plot_widget"), + lorem2 + ), + div(style = "min-height: 100vh") +) + +server <- function(input, output, session) { + plot <- reactive({ + ggplot(mtcars, aes(mpg, wt)) + geom_point() + }) + + output$plot_static <- renderPlot(plot()) + output$plot_widget <- renderPlotly(ggplotly(plot())) +} + +shinyApp(ui, server)