{shinydashboardPlus}
relies on the same basis as
{shinydashboard}
, that is the AdminLTE HTML template. It
provides extra elements that will help you to develop Shiny apps with a
more professional look and feel. Below is a summary of the main
features.
Features (sample) | shinydashboard | shinydashboardPlus |
---|---|---|
right sidebar (controlbar) | ❌ | ✅ |
semi collapsible sidebar (sidebar mini) | ❌ | ✅ |
expand on hover sidebar | ❌ | ✅ |
closable boxes | ❌ | ✅ |
box sidebar | ❌ | ✅ |
get box state on the server (open, closed, …) | ❌ | ✅ |
control sidebars on the server | ❌ | ✅ |
dashboard user dropdown | ❌ | ✅ |
theme selector | ❌ | ✅ |
social box | ❌ | ✅ |
user box | ❌ | ✅ |
control AdminLTE options | ❌ | ✅ |
seamlessly customize appearance | ❌ | ✅ |
beautiful preloaders | ❌ | ✅ |
scroll to top button! | ❌ | ✅ |
Since the 2.0.0 release, {shinydashboardPlus}
overwrites
most of the {shinydashboard}
functions such as
dashboardPage()
and box()
to facilitate the
transition from one package to another.
v2.0.0 is clearly a major breaking change for
{shinydashboardPlus}
. It means that coming from v0.7.5
(latest CRAN version to date), you will have to rewrite most of the
code. It was not an easy decision to take but necessary to improve the
package quality (naming consistency, …). Now the transition from
{shinydashboard}
to {shinydashboardPlus}
will
be easier since function parameters have been harmonized. The old
rightSidebar()
component becomes the
dashboardControlbar()
to ease the transition from
{shinydashboardPlus}
to {bs4Dash}
, the latter
being the Bootstrap 4 version with a more
modern look and feel.
Under the hood, functions are safer and more controls are done on the user inputs to reduce the risk of accidentally providing wrong values.
The most exiting features of 2.0.0 are probably the ability to
leverage the awesome {fresh}
package (see here
for more details) through the dashboardPage()
freshTheme parameter. Additionally, the
skinSelector()
allows to dynamically change the dashboard
skin on the client side. There are also more update_
functions to programmatically control elements from the server. Now the
dashboardSidebar()
may be collapsed, so it the
dashboardControlbar()
. The dashboardPage()
options parameter is an easy way to fine tune the AdminLTE
behavior (see here
for the list of available options). The box()
component has
been reworked to reduce the number of parameters and include new
sub-components like the boxSidebar()
that may be
programmatically collapsed, or the boxLabel()
.
box()
has an input binding indicating its current state on
the server side, to perform specific tasks. Finally, colors are better
documented thanks to Victor Perrier from dreamRs. For instance, the
primary color is shown as ,
danger is ,
which eventually helps users to choose between all available
options.
Below is a simple app you may build with
{shinydashboardPlus}
. We explicitly configured the sidebar
to expand on hover, through the options parameters. Interestingly,
you’ll be able to notice the scroll to top button feature if you scroll
to the bottom (bottom-right corner).
library(shiny)
library(shinydashboard)
library(shinydashboardPlus)
shinyApp(
ui = dashboardPage(
options = list(sidebarExpandOnHover = TRUE),
header = dashboardHeader(),
sidebar = dashboardSidebar(minified = TRUE, collapsed = TRUE),
body = dashboardBody(
lapply(1:20, box, width = 12, title = "box")
),
controlbar = dashboardControlbar(),
title = "DashboardPage"
),
server = function(input, output) { }
)