Learn R Programming

Shiny Searchbar

The shinySearchbar package adds an easy-to-implement searchbar widget to your R Shiny application with searchbar().

  • Highlight search terms within an element containing text (highlighting is done with mark.js)
  • Cycle through matches with automatic scrolling in an overflow window or elements
  • Quickly displays feedback on the number of matches
  • Bootstrap 3 input group widget

Getting Started

Installation

# Install the development version from GitHub:
devtools::install_github("jes-n/shiny-searchbar")

Demo

Try the demo on shinyapps here!

It is also included in the installation and can be run locally with the following (in the R command line):

shinySearchbar:::demo()

The demo provides examples of the searchbar widget in-action and a configuration tool to play around with the interface and mark.js options, along with automatically generating the corresponding searchbar() function call.

Usage

The searchbar widget is added to the UI portion of an R Shiny application using the function searchbar(inputId, contextId). The function requires an inputId to assign as the id attribute of its own element and a contextId, the id attribute of the element containing text, to search and highlight.

The following snippet is the a very basic Shiny application, including searchbar() and a text element:

library(shiny)
library(shinySearchbar)

ui <- fluidPage(
  searchbar("sb", "text"),
  textOutput("text")
)

server <- function(input, output) {
  output$text <- renderText("Hello world!")
}

shinyApp(ui, server)

Options

searchbar(inputId, contextId, value=NULL, label=NULL, width=NULL, placeholder=NULL,
  counter=TRUE, cycler=TRUE, scrollBehavior=c("smooth", "auto"),
  markOpts=shinySearchbar:::configurator, quiet=FALSE
)

The searchbar widget includes the standard Shiny input widget arguments (value, label, width, and placeholder).

The widget also provides interface options: counter and cycler. These options add functionality to the widget. The counter provides the user with feedback on the number of matches found. The cycler adds next and previous buttons to cycle between the matches. This can also be done with the Enter (next) or Shift+Enter (previous) keys. The cycler uses the scrollBehavior argument ("auto" or "smooth") for automatic or smooth scrolling between matches when the text element has overflow.

Finally, the markOpts list sets the options that are passed to the underlying mark.js API. Extensive (but not fool-proof) validation is performed on the arguments to the markOpts list, to ensure it conforms to the API. The warnings generated by this validation step can be suppressed using quiet=TRUE.

configurator <- list(
  element="mark",
  className="",
  exclude=c(),
  accuracy=c("partially", "complementary", "exactly"),
  synonyms=list(),
  ignorePunctuation=c(),
  wildcards=c("disabled", "enabled", "withSpaces"),
  iframes=FALSE,
  iframesTimeout=5000,
  separateWordSearch=TRUE,
  diacritics=TRUE,
  acrossElements=FALSE,
  caseSensitive=FALSE,
  ignoreJoiners=FALSE,
  debug=FALSE
)

See the documentation and the demo for more examples of all these options. For detailed information on the mark.js specific options, see its API and interactive Configurator.

Acknowledgments

  • This widget uses mark.js for highlighting the search terms and determining the number of matches. It was also inspired by the "jump to matches" example provided by the same library.
  • The gadenbuie/lorem R package on GitHub was used to generate the Lorem Ipsum text used in the demos.

Copy Link

Version

Install

install.packages('shinySearchbar')

Monthly Downloads

154

Version

1.0.0

License

GPL-3

Issues

Pull Requests

Stars

Forks

Maintainer

Jesse Norris

Last Published

June 2nd, 2020

Functions in shinySearchbar (1.0.0)

%_%

Underscore Join Operator
%nni%

Names-Not-In Operator
configurator

Configuration Options List for mark.js API
default

Non-blocking match.arg with better error reporting.
updateMarkOptions

Update mark.js Options for an Initialized Searchbar Widget
searchbar

Create the searchbar widget.
shinyInputLabel

Shiny's internal shinyInputLabel function
validateMarkOpts

Validate the Options Passed to mark.js API
demo

Shiny Searchbar Demos
%AND%

Shiny's internal %AND% function