1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406
|
#' Compile Bootstrap Sass with (optional) theming
#'
#' `bs_theme_dependencies()` compiles Bootstrap Sass into CSS and returns it,
#' along with other HTML dependencies, as a list of
#' [htmltools::htmlDependency()]s. Most users won't need to call this function
#' directly as Shiny & R Markdown will perform this compilation automatically
#' when handed a [bs_theme()]. If you're here looking to create a themeable
#' component, see [bs_dependency()].
#'
#' @section Sass caching and precompilation:
#'
#' If Shiny Developer Mode is enabled (by setting `options(shiny.devmode =
#' TRUE)` or calling `shiny::devmode(TRUE)`), both \pkg{sass} caching and
#' \pkg{bslib} precompilation are disabled by default; that is, a call to
#' `bs_theme_dependencies(theme)` expands to `bs_theme_dependencies(theme, cache
#' = F, precompiled = F)`). This is useful for local development as enabling
#' caching/precompilation may produce incorrect results if local changes are
#' made to bslib's source files.
#'
#' @inheritParams bs_theme_update
#' @param sass_options a [sass::sass_options()] object.
#' @param jquery a [jquerylib::jquery_core()] object.
#' @param precompiled Before compiling the theme object, first look for a
#' precompiled CSS file for the [theme_version()]. If `precompiled = TRUE`
#' and a precompiled CSS file exists for the theme object, it will be fetched
#' immediately and not compiled. At the moment, we only provide precompiled
#' CSS for "stock" builds of Bootstrap (i.e., no theming additions, Bootswatch
#' themes, or non-default `sass_options`).
#' @inheritParams sass::sass
#'
#' @return Returns a list of HTML dependencies containing Bootstrap CSS,
#' Bootstrap JavaScript, and `jquery`. This list may contain additional HTML
#' dependencies if bundled with the `theme`.
#'
#' @export
#' @family Bootstrap theme functions
#'
#' @examplesIf rlang::is_interactive()
#'
#' # Function to preview the styling a (primary) Bootstrap button
#' library(htmltools)
#' button <- tags$a(class = "btn btn-primary", href = "#", role = "button", "Hello")
#' preview_button <- function(theme) {
#' browsable(tags$body(bs_theme_dependencies(theme), button))
#' }
#'
#' # Latest Bootstrap
#' preview_button(bs_theme())
#' # Bootstrap 3
#' preview_button(bs_theme(3))
#' # Bootswatch 4 minty theme
#' preview_button(bs_theme(4, bootswatch = "minty"))
#' # Bootswatch 4 sketchy theme
#' preview_button(bs_theme(4, bootswatch = "sketchy"))
#'
bs_theme_dependencies <- function(
theme,
sass_options = sass::sass_options_get(output_style = "compressed"),
cache = sass::sass_cache_get(),
jquery = jquerylib::jquery_core(3),
precompiled = get_precompiled_option("bslib.precompiled", default = TRUE)
) {
theme <- as_bs_theme(theme)
version <- theme_version(theme)
if (isTRUE(version >= 5)) {
register_runtime_package_check("`bs_theme(version = 5)`", "shiny", "1.7.0")
}
if (is.character(cache)) {
cache <- sass_cache_get_dir(cache)
}
out_file <- NULL
# Look for a precompiled css file if user asks for it AND the default options
# are used.
if (
precompiled &&
identical(sass_options, sass_options(output_style = "compressed"))
) {
precompiled_css <- precompiled_css_path(theme)
if (!is.null(precompiled_css)) {
out_dir <- file.path(tempdir(), paste0("bslib-precompiled-", version))
if (!dir.exists(out_dir)) {
dir.create(out_dir)
}
out_file <- file.path(out_dir, basename(precompiled_css))
file.copy(precompiled_css, out_file)
# Usually sass() would handle file_attachments and dependencies,
# but we need to do this manually
out_file <- attachDependencies(out_file, htmlDependencies(as_sass(theme)))
write_file_attachments(
as_sass_layer(theme)$file_attachments,
out_dir
)
}
}
# If precompiled css not found, compile normally.
if (is.null(out_file)) {
contrast_warn <- get_shiny_devmode_option(
"bslib.color_contrast_warnings",
default = FALSE,
devmode_default = TRUE,
devmode_message = paste(
"Enabling warnings about low color contrasts found inside `bslib::bs_theme()`.",
"To suppress these warnings, set `options(bslib.color_contrast_warnings = FALSE)`"
)
)
theme <- bs_add_variables(theme, "color-contrast-warnings" = contrast_warn)
out_file <- sass(
input = theme,
options = sass_options,
output = output_template(basename = "bootstrap", dirname = "bslib-"),
cache = cache,
write_attachments = TRUE,
cache_key_extra = list(
get_exact_version(version),
get_package_version("bslib")
)
)
}
out_file_dir <- dirname(out_file)
js_files <- bootstrap_javascript(version)
js_map_files <- bootstrap_javascript_map(version)
success_js_files <- file.copy(
c(js_files, js_map_files),
out_file_dir,
overwrite = TRUE
)
if (any(!success_js_files)) {
warning(
"Failed to copy over bootstrap's javascript files into the htmlDependency() directory."
)
}
htmltools::resolveDependencies(
c(
if (inherits(jquery, "html_dependency")) list(jquery) else jquery,
list(
htmlDependency(
name = "bootstrap",
version = get_exact_version(version),
src = out_file_dir,
stylesheet = basename(out_file),
script = basename(js_files),
all_files = TRUE, # include font and map files
meta = list(
viewport = "width=device-width, initial-scale=1, shrink-to-fit=no"
)
)
),
htmlDependencies(out_file)
)
)
}
#' Themeable HTML components
#'
#' @description
#'
#' Themeable HTML components use Sass to generate CSS rules from Bootstrap Sass
#' variables, functions, and/or mixins (i.e., stuff inside of `theme`).
#' `bs_dependencies()` makes it a bit easier to create themeable components by
#' compiling [sass::sass()] (`input`) together with Bootstrap Sass inside of a
#' `theme`, and packaging up the result into an [htmltools::htmlDependency()].
#'
#' Themable components can also be _dynamically_ themed inside of Shiny (i.e.,
#' they may be themed in 'real-time' via [bs_themer()], and more generally,
#' update their styles in response to [shiny::session]'s `setCurrentTheme()`
#' method). Dynamically themeable components provide a "recipe" (i.e., a
#' function) to `bs_dependency_defer()`, describing how to generate new CSS
#' stylesheet(s) from a new `theme`. This function is called when the HTML page
#' is first rendered, and may be invoked again with a new `theme` whenever
#' [shiny::session]'s `setCurrentTheme()` is called.
#'
#' @param input Sass rules to compile, using `theme`.
#' @param theme A [bs_theme()] object.
#' @param cache_key_extra Extra information to add to the sass cache key. It is
#' useful to add the version of your package.
#' @param .dep_args A list of additional arguments to pass to
#' [htmltools::htmlDependency()]. Note that `package` has no effect and
#' `script` must be absolute path(s).
#' @param .sass_args A list of additional arguments to pass to
#' [sass::sass_partial()].
#' @inheritParams htmltools::htmlDependency
#'
#' @references
#' * [Theming: Custom components](https://rstudio.github.io/bslib/articles/custom-components/index.html)
#' gives a tutorial on creating a dynamically themable custom component.
#'
#' @return `bs_dependency()` returns an [htmltools::htmlDependency()] and
#' `bs_dependency_defer()` returns an [htmltools::tagFunction()]
#'
#' @family Bootstrap theme functions
#' @export
bs_dependency <- function(
input = list(),
theme,
name,
version,
cache_key_extra = NULL,
.dep_args = list(),
.sass_args = list()
) {
sass_args <- c(
list(
rules = input,
bundle = theme,
output = output_template(basename = name, dirname = name),
write_attachments = TRUE,
cache_key_extra = cache_key_extra
),
.sass_args
)
outfile <- do.call(sass_partial, sass_args)
dep_args <- list(
name = name,
version = version,
src = dirname(outfile),
stylesheet = basename(outfile)
)
bad_args <- intersect(names(.dep_args), names(dep_args))
if (length(bad_args)) {
stop(
"The following `.dep_args` must be provided as top-level args to `bs_dependency()`: ",
paste(bad_args, collapse = ", ")
)
}
if ("package" %in% names(.dep_args)) {
warning(
"`package` won't have any effect since `src` must be an absolute path"
)
}
script <- .dep_args[["script"]]
if (length(script)) {
if (basename(outfile) %in% basename(script)) {
stop(
"`script` file basename(s) must all be something other than ",
basename(outfile)
)
}
success <- file.copy(script, dirname(outfile), overwrite = TRUE)
if (!all(success)) {
stop(
"Failed to copy the following script(s): ",
paste(script[!success], collapse = ", "),
".\n\n",
"Make sure script are absolute path(s)."
)
}
.dep_args[["script"]] <- basename(script)
}
do.call(htmlDependency, c(dep_args, .dep_args))
}
#' @rdname bs_dependency
#' @param func a _non-anonymous_ function, with a _single_ argument.
#' This function should accept a [bs_theme()] object and return a single
#' [htmltools::htmlDependency()], a list of them, or `NULL`.
#' @param memoise whether or not to memoise (i.e., cache) `func` results for a
#' short period of time. The default, `TRUE`, can have large performance
#' benefits when many instances of the same themable widget are rendered. Note
#' that you may want to avoid memoisation if `func` relies on side-effects
#' (e.g., files on-disk) that need to change for each themable widget
#' instance.
#'
#' @export
#'
#' @examplesIf rlang::is_interactive()
#' myWidgetVersion <- "1.2.3"
#'
#' myWidgetDependency <- function() {
#' list(
#' bs_dependency_defer(myWidgetCss),
#' htmlDependency(
#' name = "mywidget-js",
#' version = myWidgetVersion,
#' src = system.file(package = "mypackage", "js"),
#' script = "mywidget.js"
#' )
#' )
#' }
#'
#' myWidgetCSS <- function(theme) {
#' if (!is_bs_theme(theme)) {
#' return(
#' htmlDependency(
#' name = "mywidget-css",
#' version = myWidgetVersion,
#' src = system.file(package = "mypackage", "css"),
#' stylesheet = "mywidget.css"
#' )
#' )
#' }
#'
#' # Compile mywidget.scss using the variables and defaults from the theme
#' # object.
#' sass_input <- sass::sass_file(system.file(package = "mypackage", "scss/mywidget.scss"))
#'
#' bs_dependency(
#' input = sass_input,
#' theme = theme,
#' name = "mywidget",
#' version = myWidgetVersion,
#' cache_key_extra = utils::packageVersion("mypackage")
#' )
#' }
#'
#' # Note that myWidgetDependency is not defined inside of myWidget. This is so
#' # that, if `myWidget()` is called multiple times, Shiny can tell that the
#' # function objects are identical and deduplicate them.
#' myWidget <- function(id) {
#' div(
#' id = id,
#' span("myWidget"),
#' myWidgetDependency()
#' )
#' }
bs_dependency_defer <- function(func, memoise = TRUE) {
# func() most likely calls stuff like sass_file() and bs_dependency() ->
# sass_partial() -> sass() (e.g., see example section above) Even though
# sass() calls can be cached, there is still considerable overhead involved
# in computing the cache key itself because it involves file-level operations
# (e.g. getting the mtimes of file attachments).
# So, to help with performance (in the case where we repeatedly call the same
# func with the same theme), memoise func with a short-lived cache
if (memoise) {
# The memoized function is created each time bs_dependency_defer is called,
# and then it is used once. This is not how memoized functions are normally
# used, but in this case it works because the caching object is re-used, and
# it still provides very significant improvement in performance.
mfunc <- memoise::memoise(func, cache = .dependency_cache)
} else {
mfunc <- func
}
tagFunction(function() {
if (is_shiny_app()) {
# If we're in a Shiny app, do two things:
# (1) Register this function as a dependency so that Shiny will know to
# update it later if the theme dynamically changes (i.e.,
# session$setCurrentTheme() is called). Note that we *don't* provide
# the memoised version since Shiny will de-duplicate identical()
# functions anyway.
# (2) Call the user's `func()` with the current theme, and return the
# resulting htmlDependency so that it can be embedded in the static page.
shiny::registerThemeDependency(func)
return(mfunc(get_current_theme()))
}
# Outside of a Shiny context, we'll just get the global theme.
mfunc(bs_global_get())
})
}
as_bs_theme <- function(theme) {
if (is_bs_theme(theme)) return(theme)
# This is a historical artifact that should happen
if (is_sass_bundle(theme) || inherits(theme, "sass_layer")) {
stop(
"`theme` cannot be a `sass_bundle()` or `sass_layer()` (use `bs_bundle()` to add a bundle)"
)
}
# NULL means default Bootstrap
if (is.null(theme)) return(bs_theme())
# For example, `bs_theme_dependencies(theme = 4)`
if (is.numeric(theme)) return(bs_theme(version = theme))
# For example, `bs_theme_dependencies(theme = 'bootswatch@version')`
if (is_string(theme)) {
theme <- strsplit(theme, "@", fixed = TRUE)[[1]]
if (length(theme) == 2) {
return(bs_theme(version = theme[2], bootswatch = theme[1]))
}
# Also support `bs_theme_dependencies(version = '4')` and
# `bs_theme_dependencies(theme = 'bootswatch')`
if (length(theme) == 1) {
if (theme %in% c(versions(), "4-3", "4+3")) {
return(bs_theme(version = theme))
} else {
return(bs_theme(bootswatch = theme))
}
}
stop("If `theme` is a string, it can't contain more than one @")
}
stop(
"`theme` must be one of the following: (1) `NULL`, ",
"(2) a `'bootswatch@version'` string, ",
"(3) the result of `bs_global_get()`."
)
}
|