R/onLoad.R

Defines functions registerMethods .onLoad

.onLoad <- function(...) {
  registerMethods(list(
    c("htmltools", "as.tags", "reactable"),
    c("knitr", "knit_print", "reactable")
  ))
}


# Reusable function for registering a set of methods with S3 manually. The
# methods argument is a list of character vectors, each of which has the form
# c(package, genname, class).
registerMethods <- function(methods) {
  lapply(methods, function(method) {
    pkg <- method[[1]]
    generic <- method[[2]]
    class <- method[[3]]
    func <- get(paste(generic, class, sep = "."))
    if (pkg %in% loadedNamespaces()) {
      registerS3method(generic, class, func, envir = asNamespace(pkg))
    }
    setHook(
      packageEvent(pkg, "onLoad"),
      function(...) {
        registerS3method(generic, class, func, envir = asNamespace(pkg))
      }
    )
  })
}
glin/reactable documentation built on Feb. 9, 2024, 4:07 a.m.