R/cliffnotes.R

Defines functions cliffnotes cliffnotes.default cliffnotesOutput renderCliffnotes

Documented in cliffnotes cliffnotesOutput renderCliffnotes

#' @import htmlwidgets
#' @importFrom lubridate is.difftime is.duration is.interval is.Date is.POSIXt is.POSIXct is.POSIXlt interval time_length
#' @importFrom stringr str_length
#' @importFrom rmarkdown html_dependency_jquery html_dependency_bootstrap html_dependency_font_awesome
NULL


#' cliffnotes
#'
#' data summaries and analysis
#' @export
cliffnotes <- function(tbl, ...) {
  UseMethod("cliffnotes", tbl)
}

#' @export
cliffnotes.default <- function(df, width = NULL, height = NULL) {
  params <- list(data = get_data_frame_summary(df))
  attr(params, 'TOJSON_ARGS') <- list(auto_unbox = FALSE, keep_vec_names = FALSE)

  # create widget
  htmlwidgets::createWidget(
    name = 'cliffnotes',
    x = params,
    width = width,
    height = height,
    package = 'cliffnotes',
    dependencies = list(html_dependency_jquery(),
                        html_dependency_bootstrap("default"),
                        html_dependency_font_awesome()),
    sizingPolicy = sizingPolicy(knitr.figure = FALSE,
                                browser.fill = TRUE,
                                knitr.defaultHeight = 500
    )
  )
}

#' Shiny bindings for cliffnotes
#'
#' Output and render functions for using cliffnotes within Shiny
#' applications and interactive Rmd documents.
#'
#' @param outputId output variable to read from
#' @param width,height Must be a valid CSS unit (like \code{'100\%'},
#'   \code{'400px'}, \code{'auto'}) or a number, which will be coerced to a
#'   string and have \code{'px'} appended.
#' @param expr An expression that generates a cliffnotes
#' @param env The environment in which to evaluate \code{expr}.
#' @param quoted Is \code{expr} a quoted expression (with \code{quote()})? This
#'   is useful if you want to save an expression in a variable.
#'
#' @name cliffnotes-shiny
#'
#' @export
cliffnotesOutput <- function(outputId, width = '100%', height = '400px'){
  htmlwidgets::shinyWidgetOutput(outputId, 'cliffnotes', width, height, package = 'cliffnotes')
}

#' @rdname cliffnotes-shiny
#' @export
renderCliffnotes <- function(expr, env = parent.frame(), quoted = FALSE) {
  if (!quoted) { expr <- substitute(expr) } # force quoted
  htmlwidgets::shinyRenderWidget(expr, cliffnotesOutput, env, quoted = TRUE)
}
mndrake/cliffnotes documentation built on May 23, 2019, 5:06 a.m.