| flipBox {shinydashboardPlus} | R Documentation |
Create a flipping box
flipBox(..., back_content, id, front_title = NULL, back_title = NULL, front_btn_text = "More", back_btn_text = "Back to main", header_img = NULL, main_img = NULL, width = 6)
... |
front body content. |
back_content |
back body content. |
id |
Box id. Must be unique! |
front_title |
Box front title. |
back_title |
Box back title. |
front_btn_text |
Front button text. |
back_btn_text |
Back button text. |
header_img |
Header background image url or path. |
main_img |
Main image url or path (for instance profile image). |
width |
box width (between 1 and 12). 6 by default. |
David Granjon, dgranjon@ymail.com
if (interactive()) {
library(shiny)
library(shinydashboard)
library(shinydashboardPlus)
shinyApp(
ui = dashboardPage(
dashboardHeader(),
dashboardSidebar(),
dashboardBody(
setShadow("card"),
fluidRow(
column(
width = 6,
align = "center",
flipBox(
id = 1,
main_img = "https://image.flaticon.com/icons/svg/149/149076.svg",
header_img = "https://image.flaticon.com/icons/svg/119/119595.svg",
front_title = "John Doe",
back_title = "About John",
"Lorem ipsum dolor sit amet, consectetur adipiscing elit,
sed do eiusmod tempor incididunt ut labore et dolore magna
aliqua. Ut enim ad minim veniam, quis nostrud exercitation
ullamco laboris nisi ut aliquip ex ea commodo consequat.
Duis aute irure dolor in reprehenderit in voluptate velit
esse cillum dolore eu fugiat nulla pariatur. Excepteur sint
occaecat cupidatat non proident, sunt in culpa qui officia
deserunt mollit anim id est laborum",
fluidRow(
dashboardLabel("Label 1", status = "info"),
dashboardLabel("Label 2", status = "success"),
dashboardLabel("Label 3", status = "warning"),
dashboardLabel("Label 4", status = "primary"),
dashboardLabel("Label 5", status = "danger")
),
hr(),
fluidRow(
column(
width = 6,
align = "center",
starBlock(grade = 5),
starBlock(grade = 5, color = "olive"),
starBlock(grade = 1, color = "maroon"),
starBlock(grade = 3, color = "teal")
),
column(
width = 6,
align = "center",
appButton(
url = "http://google.com",
label = "Users",
icon = "fa fa-users",
enable_badge = TRUE,
badgeColor = "purple",
badgeLabel = 891
),
appButton(
label = "Edit",
icon = "fa fa-edit",
enable_badge = FALSE,
badgeColor = NULL,
badgeLabel = NULL
)
)
),
back_content = tagList(
column(
width = 12,
align = "center",
sliderInput(
"obs",
"Number of observations:",
min = 0,
max = 1000,
value = 500
)
),
plotOutput("distPlot")
)
)
),
column(
width = 6,
align = "center",
flipBox(
id = 2,
main_img = "https://image.flaticon.com/icons/svg/149/149073.svg",
header_img = "https://image.flaticon.com/icons/svg/119/119598.svg",
front_title = "Johanna Doe",
back_title = "About Johanna",
fluidRow(
column(
width = 6,
align = "center",
boxPad(
color = "green",
descriptionBlock(
header = "8390",
text = "VISITS",
right_border = FALSE,
margin_bottom = TRUE
),
descriptionBlock(
header = "30%",
text = "REFERRALS",
right_border = FALSE,
margin_bottom = TRUE
),
descriptionBlock(
header = "70%",
text = "ORGANIC",
right_border = FALSE,
margin_bottom = FALSE
)
)
),
column(
width = 6,
align = "center",
"Lorem ipsum dolor sit amet, consectetur adipiscing elit,
sed do eiusmod tempor.",
br(),
verticalProgress(
value = 10,
striped = TRUE,
active = TRUE
),
verticalProgress(
value = 50,
active = TRUE,
status = "warning",
size = "xs"
),
verticalProgress(
value = 20,
status = "danger",
size = "sm",
height = "60%"
)
)
),
back_content = tagList(
column(
width = 12,
align = "center",
radioButtons(
"dist",
"Distribution type:",
c("Normal" = "norm",
"Uniform" = "unif",
"Log-normal" = "lnorm",
"Exponential" = "exp"
)
)
),
plotOutput("plot")
)
)
)
)
),
title = "flipBox"
),
server = function(input, output) {
output$distPlot <- renderPlot({
hist(rnorm(input$obs))
})
output$plot <- renderPlot({
dist <- switch(input$dist,
norm = rnorm,
unif = runif,
lnorm = rlnorm,
exp = rexp,
rnorm)
hist(dist(500))
})
}
)
}