Learn R Programming

bsTools (version 0.1.0)

bs_navbar: Create a Bootstrap navbar

Description

Create a Bootstrap navbar

Usage

bs_navbar(
  brand = list(),
  from_left = list(),
  from_right = list(),
  id = sampleStr(10),
  navbar_class = "navbar",
  background_class = "bg-primary",
  text_class = "navbar-dark",
  background_color = NULL,
  expand = "lg",
  fluid = FALSE,
  ul_class = "navbar-nav",
  li_class = "nav-item",
  a_class = "nav-link"
)

Arguments

brand

A named list of length 1, name should be a value suitable for the href param of html5::a() and the value is the HTML or text to display in the a tag.

from_left

A list, creates navbar elements arranged to the left. If a list item is named, names should be links and values should be text to display in the navbar for that link. Names will be passed to the href param and values to the main content of the html5::a() function which will be wrapped by the html5::li() function, each of which have Bootstrap classes added by default.If an item in the list is not named, the item must be valid HTML with appropriate Bootstrap classes added manually. For example, to add a drop-down, add an unnamed item to the list with HTML defining the drop-down as the value of the item.

from_right

A list, creates navbar elements arranged to the right. If a list item is named, names should be links and values should be text to display in the navbar for that link. Names will be passed to the href param and values to the main content of the html5::a() function which will be wrapped by the html5::li() function, each of which have Bootstrap classes added by default. If an item in the list is not named, the item must be valid HTML with appropriate Bootstrap classes added manually. For example, to add a drop-down, add an unnamed item to the list with HTML defining the drop-down as the value of the item.

id

A string, used to control the collapse/expand functionality. Defaults to a random string.

navbar_class

A string, the class passed to the nav tag.

background_class

A string, a Bootstrap background class such as "bg-primary" that gets appended to navbar_class.

text_class

A string, a Bootstrap navbar text class such as "navbar-dark" that gets appended to navbar_class.

background_color

A string, a CSS color (ex. "#00FFFF"). Background-class will overrule this, so setting background_class to NULL will ensure the background color is applied.

expand

A string, the break-point at which the navbar should expand or collapse. One of "sm", "md", "lg", "xl", "xxl". If NULL, does not add classes to expand or collapse.

fluid

TRUE/FALSE, if TRUE, makes the container wrapping the navbar elements fluid (use the entire screen width or not).

ul_class

A string, default class used for the "ul" tag wrapping the navbar elements.

li_class

A string, default class used for the "li" tags wrapping the navbar elements if the input list item is named.

a_class

A string, default class used for the "a" tags wrapping the navbar elements if the input list item is named.

Value

A string of HTML.

Examples

Run this code
# NOT RUN {
bs_navbar(
fluid = TRUE,
brand = list("#" = "Sample Brand"),
from_left = list(
  "/" = "Home",
  "/about" = "About"
),
from_right = list(
  "/options" = "Options"
)
)
# }

Run the code above in your browser using DataLab