R/autocomplete.R

Defines functions renderAutocomplete autocompleteOutput autocomplete

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

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

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

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

#' @rdname autocomplete-shiny
#' @export
renderAutocomplete <- function(expr, env = parent.frame(), quoted = FALSE) {
  if (!quoted) { expr <- substitute(expr) } # force quoted
  htmlwidgets::shinyRenderWidget(expr, autocompleteOutput, env, quoted = TRUE)
}
p-mohan/autocomplete documentation built on Feb. 16, 2023, 2:02 a.m.