R/build-home-community.R

Defines functions has_coc has_contributing

has_contributing <- function(path = ".") {
  file_exists(path(path, 'CONTRIBUTING.md')) ||
    file_exists(path(path, '.github', 'CONTRIBUTING.md'))
}

has_coc <- function(path = ".") {
  file_exists(path(path, 'CODE_OF_CONDUCT.md')) ||
    file_exists(path(path, '.github', 'CODE_OF_CONDUCT.md'))
}

data_home_sidebar_community <- function (pkg){

  pkg <- as_pkgdown(pkg)

  links <- NULL

  if (has_contributing(pkg$src_path)) {
    links <- c(
      links,
      '<a href="CONTRIBUTING.html">Contributing guide</a>'
    )
  }

  if (has_coc(pkg$src_path)) {
    links <- c(
      links,
      '<a href="CODE_OF_CONDUCT.html">Code of conduct</a>'
    )
  }


  if (is.null(links)) {
    return("")
  }

  sidebar_section("Community", links)

}
Paradigm4/pkgdown documentation built on June 3, 2020, 12:30 a.m.