R/runExample.R

Defines functions runExample

Documented in runExample

#' Runs shiny example
#'
#' @param example shiny example to run
#'
#' @export
runExample <- function(example) {
  # locate all the shiny app examples that exist
  validExamples <- list.files(system.file("shiny-examples", package = "nyccensus"))

  validExamplesMsg <-
    paste0(
      "Valid examples are: '",
      paste(validExamples, collapse = "', '"),
      "'")

  # if an invalid example is given, throw an error
  if (missing(example) || !nzchar(example) ||
      !example %in% validExamples) {
    stop(
      'Please run `runExample()` with a valid example app as an argument.\n',
      validExamplesMsg,
      call. = FALSE)
  }

  # find and launch the app
  appDir <- system.file("shiny-examples", example, package = "nyccensus")
  shiny::runApp(appDir, display.mode = "normal")
}
natalieoshea/nyccensus documentation built on Jan. 21, 2022, 11:57 a.m.