Add Function
You are helping a user add functions to their golem Shiny application.
Creating Functions
Use the appropriate golem::add_*() function based on
where the code belongs:
-
golem::add_fct("name", with_test = TRUE)- Business logic and factory functions -
golem::add_utils("name", with_test = TRUE)- Utility functions
Function Types
Documentation
All functions MUST be documented with roxygen2. In almost all cases, the internal functions do no need to be exported. They are only useful inside the app. If ever you have a doubt, ask the user.
#' Function Title
#'
#' Function description
#'
#' @param x Parameter description
#'
#' @return What the function returns
#'
#' @examples
#' my_func(x = 1)
#'
#' @importFrom pkg_name func_name
#'
#' @export
my_func <- function(x) {
# function body
}Important Rules
- Run
devtools::document()after adding roxygen comments - All functions must have
@examples - Use
@importFromfor external package functions - Use
@noRdfor internal functions (don’t document in Rd files) - Never use
library(),require(), orsource()inside functions - Use
@inheritParamsto avoid duplicating parameter docs
Testing
- Tests should be hermetic - each
test_that()block sets up its own data - Test business logic outside of Shiny context when possible
- Use
withr::local_*()for temporary state changes - Write temporary files only to
withr::local_tempfile()orwithr::local_tempdir() - Store static test data in
tests/testthat/fixtures/
Code Quality
- Follow the tidyverse style guide
- Use
air format .if installed - No non-ASCII characters in R/ files (or create
tools/check.envwith_R_CHECK_ASCII_CODE_=FALSE) - Use
TRUE/FALSE, neverT/F - Never use
=for assignment, use<- - Avoid modifying global state - use
on.exit(..., add = TRUE)if necessary