R/simplewidget.R

#' <Add Title>
#'
#' <Add Description>
#'
#' @import htmlwidgets
#'
#' @export
simplewidget <- function(message, width = NULL, height = NULL, elementId = NULL) {

  # forward options using x
  x = list(
    message = message
  )

  # create widget
  htmlwidgets::createWidget(
    name = 'simplewidget',
    x,
    width = width,
    height = height,
    package = 'simplewidget',
    elementId = elementId
  )
}

#' Shiny bindings for simplewidget
#'
#' Output and render functions for using simplewidget 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 simplewidget
#' @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 simplewidget-shiny
#'
#' @export
simplewidgetOutput <- function(outputId, width = '100%', height = '400px'){
  htmlwidgets::shinyWidgetOutput(outputId, 'simplewidget', width, height, package = 'simplewidget')
}

#' @rdname simplewidget-shiny
#' @export
renderSimplewidget <- function(expr, env = parent.frame(), quoted = FALSE) {
  if (!quoted) { expr <- substitute(expr) } # force quoted
  htmlwidgets::shinyRenderWidget(expr, simplewidgetOutput, env, quoted = TRUE)
}

#' @importFrom htmltools tags tagList
simplewidget_html <-  function(id, style, class, ...){
  renderTags(
    tags$div(
      tags$h1(id="someid", "My header"),
      tags$div(id = id, style = style, class = class)
    )
  )
}
johndharrison/simplewidget documentation built on May 19, 2019, 5:14 p.m.