Nothing
####################################################################
#' Custom Header: Customized for Shiny's Header
#'
#' This function personalizes your Shiny dashboard's header with logo,
#' links, favicon, font, and texts.
#'
#' @param title Character. Your 'shiny' app title (displayed in Navigators' tab)
#' @param site Character. URL for your site (opens when logo is clicked)
#' @param font Character. Font for whole 'shiny' app. Use Google Fonts names.
#' @param favicon Character. Image for your favicon.
#' Save file in \code{www} directory.
#' @param logosrc,loadingsrc Character. Logo image and loading image. For
#' local files, save them in \code{www} directory to call them directly.
#' @param logo_height,logo_width,load_height,load_width Integer.
#' Logo and loading images dimensions.
#' @param text Character. Text displayed in top right corner.
#' @param type Integer. 1 for complete \code{dashboardHeader} results,
#' 2 for title results.
#' @returns A dashboardHeader object.
#' @examples
#' if (interactive()) {
#' shinyApp(
#' ui = dashboardPage(
#' custom_header(
#' title = "MyLareShiny",
#' site = "https://github.com/laresbernardo/lareshiny",
#' font = "Montserrat",
#' logosrc = "logo.png",
#' text = Sys.Date()
#' ),
#' dashboardSidebar(disable = TRUE),
#' dashboardBody()
#' ),
#' server = function(input, output) { }
#' )
#' }
#' @export
custom_header <- function(title = "MyLareShiny",
site = NULL,
favicon = NULL,
font = "Montserrat",
logosrc = NULL,
logo_height = "40px",
logo_width = NULL,
loadingsrc = NULL,
load_height = "40px",
load_width = NULL,
text = Sys.Date(),
type = 1) {
aux <- tagList(
tags$head(
class = "header",
tags$title(title),
tags$head(
# SHINY'S TITLE
tags$title(title),
# FAVICON
tags$link(rel = "shortcut icon", href = favicon),
# hr() for separators
tags$style(HTML("hr {border-top: 1px solid #000000}")),
# FONT
tags$style(HTML(
"@import url('https://fonts.googleapis.com/css?",
"family = ", font, "');*{font-family: ", font, ";}"
)),
# UPPER RIGHT CORNER
tags$style(HTML(
".myClass { font-size: 16px; line-height: 50px; text-align: right;",
"padding: 0 15px; overflow: hidden; color: white;}"
))
),
# LOADING IMAGE
tags$script(
"setInterval(function() {
if ($('html').attr('class')=='shiny-busy') {
$('div.busy').show();
$('div.notbusy').hide();
} else {
$('div.busy').hide();
$('div.notbusy').show();
}},100)"
)
),
# LOGO AND LOADING IMAGES
# Loading image created with http://www.ajaxload.info/ or inst/docs/loader.gif
tags$a(
href = site,
div(class = "busy", img(
src = ifelse(length(loadingsrc) > 0, loadingsrc, logosrc),
height = if (length(loadingsrc) > 0) load_height else logo_height,
width = if (length(loadingsrc) > 0) load_width else logo_width
)),
div(class = "notbusy", img(
src = logosrc, height = logo_height, width = logo_width
))
),
# UPPER RIGHT CORNER TEXT
tags$script(HTML(
"$(document).ready(function() {",
'$("header").find("nav").append(\'<div id="pageHeader" class="myClass">',
as.character(text), "</div>');})"
))
)
if (type == 1) {
return(dashboardHeader(title = aux))
}
if (type == 2) {
return(aux)
}
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.