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 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480
|
#' @importFrom rlang list2 names2
NULL
#' Bundling Sass layers
#'
#' Sass layers are a way to group a set of related Sass variable definitions,
#' function/mixin declarations, and CSS rules into a single object. Use
#' `sass_layer()` to create these objects, and `sass_bundle()` to combine
#' two or more layers or bundles objects into a Sass bundle; this ability to be merged is
#' the main benefit of using Sass layers versus lower-level forms of sass input.
#' At a later time, Sass layers may be removed from Sass bundles
#' by referencing the same name that was used when creating the Sass bundle.
#'
#' @md
#' @param ... A collection of `sass_layer()`s and/or objects that [sass::as_sass()]
#' understands. Arguments should be provided in reverse priority order:
#' defaults, declarations, and rules in later layers will take precedence over
#' those of previous layers. Non-layer values will be converted to layers by
#' calling `sass_layer(rules = ...)`.
#' @param defaults A suitable [sass::as_sass()] `input`. Intended for declaring
#' variables with `!default`. When layers are combined, defaults are merged in
#' reverse order; that is, `sass_bundle(layer1, layer2)` will include
#' `layer2$defaults` before `layer1$defaults`.
#' @param declarations A suitable [sass::as_sass()] `input`. Intended for
#' function and mixin declarations, and variable declarations without
#' `!default`; not intended for actual CSS rules. These will be merged in
#' forward order; that is, `sass_bundle(layer1, layer2)` will include
#' `layer1$declarations` before `layer2$declarations`.
#' @param rules A suitable [sass::as_sass()] `input`. Intended for actual CSS
#' rules. These will be merged in forward order; that is,
#' `sass_bundle(layer1, layer2)` will include `layer1$rules` before
#' `layer2$rules`.
#' @param html_deps An HTML dependency (or a list of them).
#' @param file_attachments A named character vector, representing file assets
#' that are referenced (using relative paths) from the sass in this layer. The
#' vector names should be a relative path, and the corresponding vector values
#' should be absolute paths to files or directories that exist; at render
#' time, each value will be copied to the relative path indicated by its name.
#' (For directories, the _contents_ of the source directory will be copied
#' into the destination directory; the directory itself will not be copied.)
#' You can also omit the name, in which case that file or directory will be
#' copied directly into the output directory.
#' @param tags Deprecated. Preserve meta information using a key in `sass_bundle(KEY = val)`.
#' preserve simple metadata as layers are merged.
#' @examples
#' blue <- list(color = "blue !default")
#' red <- list(color = "red !default")
#' green <- list(color = "green !default")
#'
#' # a sass_layer() by itself is not very useful, it just defines some
#' # SASS to place before (defaults) and after (declarations, rules)
#' core <- sass_layer(defaults = blue, rules = "body { color: $color; }")
#' core
#' sass(core)
#'
#' # However, by stacking sass_layer()s, we have ability to place
#' # SASS both before and after some other sass (e.g., core)
#' # Here we place a red default _before_ the blue default and export the
#' # color SASS variable as a CSS variable _after_ the core
#' red_layer <- sass_layer(red, rules = ":root{ --color: #{$color}; }")
#' sass(sass_bundle(core, red_layer))
#' sass(sass_bundle(core, red_layer, sass_layer(green)))
#'
#' # Example of merging layers and removing a layer
#' # Remember to name the layers that are removable
#' core_layers <- sass_bundle(core, red = red_layer, green = sass_layer(green))
#' core_layers # pretty printed for console
#' core_slim <- sass_bundle_remove(core_layers, "red")
#' sass(core_slim)
#'
#'
#' # File attachment example: Create a checkboard pattern .png, then
#' # use it from a sass layer
#'
#' tmp_png <- tempfile(fileext = ".png")
#' grDevices::png(filename = tmp_png, width = 20, height = 20,
#' bg = "transparent", antialias = "none")
#' par(mar = rep_len(0,4), xaxs = "i", yaxs = "i")
#' plot.new()
#' rect(c(0,0.5), c(0,0.5), c(0.5,1), c(0.5,1), col = "#00000044", border=NA)
#' dev.off()
#'
#' layer <- sass_layer(
#' rules = ".bg-check { background-image: url(images/demo_checkboard_bg.png) }",
#' file_attachments = c("images/demo_checkboard_bg.png" = tmp_png)
#' )
#'
#' output_path <- tempfile(fileext = ".css")
#' sass(layer, output = output_path, write_attachments = TRUE)
#' @describeIn sass_layer Compose the parts of a single Sass layer. Object returned is a `sass_bundle()` with a single Sass layer
#' @export
sass_layer <- function(
defaults = NULL,
declarations = NULL,
rules = NULL,
html_deps = NULL,
file_attachments = character(0),
tags = NULL
) {
if (!missing(tags)) {
.Deprecated(msg="`sass_layer(tags)` is deprecated. Please use a named layer in a `sass_bundle(NAME = layer)`")
}
# return a size 1 sass_bundle()
as_sass_bundle(
sass_layer_struct(
defaults = defaults,
declarations = declarations,
rules = rules,
html_deps = html_deps,
file_attachments = file_attachments
)
)
}
#' Helps avoid sass_layer / sass_bundle inf recursion
#' @return object of class `sass_layer`
#' @noRd
sass_layer_struct <- function(
defaults = NULL,
declarations = NULL,
rules = NULL,
html_deps = NULL,
file_attachments = character(0)
) {
validate_layer_param(defaults, "defaults")
validate_layer_param(declarations, "declarations")
validate_layer_param(rules, "rules")
validate_attachments(file_attachments)
if (!is.null(html_deps)) {
if (is_dependency_maybe(html_deps)) {
html_deps <- list(html_deps)
}
if (!is.list(html_deps)) {
stop("`html_deps` must be a collection of htmlDependency() and/or tagFunction() objects")
}
is_dependency <- vapply(html_deps, is_dependency_maybe, logical(1))
if (any(!is_dependency)) {
stop("`html_deps` must be a collection of htmlDependency() and/or tagFunction() objects")
}
}
layer <- list(
defaults = defaults,
declarations = declarations,
rules = rules,
html_deps = html_deps,
file_attachments = file_attachments
)
add_class(layer, "sass_layer")
}
is_dependency_maybe <- function(x) {
inherits(x, "html_dependency") || inherits(x, "shiny.tag.function")
}
validate_layer_param <- function(x, name) {
bundle_item <- find_bundle_or_layer(x)
if (!is.null(bundle_item)) {
stop(
"`sass_layer(", name, ")` can not contain another `sass_bundle()` object.\n",
"Found:\n",
collapse0(utils::capture.output(print(bundle_item)))
)
}
}
is_sass_bundle_like <- function(x) {
is_sass_bundle(x) || is_sass_layer(x)
}
# returns the sass bundle like obj or NULL
find_bundle_or_layer <- function(x) {
if (!is.list(x)) return(NULL)
if (is_sass_bundle_like(x)) return(x)
# Recursively inspect list objects
# Use for loop to pre-empty calculations
for (item in x) {
if (is_sass_bundle_like(item)) return(item)
ret <- find_bundle_or_layer(item)
if (!is.null(ret)) return(ret)
}
return(NULL)
}
# @param x object to inspect or turn into Sass bundle
# @param name Sass layer name to use inside the Sass bundle object
as_sass_bundle <- function(x, name = "") {
stopifnot(is.character(name) && length(name) == 1)
# Upgrade pattern:
# is_sass_bundle(x) && name == "" -> x
# is_sass_bundle(x) && name != "" -> sass_bundle(!!name := as_sass_layer(x))
# is_sass_layer(x) -> sass_bundle(!!name := x)
# is.list(x) && has_any_name(x) -> sass_bundle(!!name := sass_layer(defaults = x))
# else -> sass_bundle(!!name := sass_layer(rules = x))
# A list of sass_layer values can be handled by sass_bundle(...) or sass_bundle(!!!x). Do not test for this
if (is_sass_bundle(x)) {
# if there is nothing special about the name, return
if (identical(name, "")) {
return(x)
}
# convert to a single sass layer object so the overall name can be used
x <- as_sass_layer(x)
}
single_layer <-
if (is_sass_layer(x)) {
x
} else {
# upgrade via sass_layer
if (is.list(x) && has_any_name_recursive(x)) {
# a name was found somewhere
sass_layer_struct(defaults = x)
} else {
sass_layer_struct(rules = x)
}
}
layers <- list()
layers[[name]] <- single_layer
sass_bundle_struct(layers = layers)
}
#' Helps avoid sass_bundle inf recursion
#' @param layers named or unnamed list containing sass_layer objects
#' @return object of class `sass_bundle`
#' @noRd
sass_bundle_struct <- function(layers = list()) {
layers_are_sass_layers <- vapply(layers, is_sass_layer, logical(1))
stopifnot(all(layers_are_sass_layers))
ret <- list(
layers = layers
)
class(ret) <- "sass_bundle"
ret
}
#' @describeIn sass_layer Collect `sass_bundle()` and/or `sass_layer()` objects. Unnamed Sass bundles will be concatenated together, preserving their internal name structures. Named Sass bundles will be condensed into a single Sass layer for easier removal from the returned Sass bundle.
#' @export
sass_bundle <- function(...) {
layers <- dropNulls(list2(...))
layers_upgraded <-
mapply(
SIMPLIFY = FALSE,
layers,
names2(layers),
FUN = function(x, name) {
as_sass_bundle(x, name = name)
}
)
# collect and flatten
## unlist(list(list(1), list(), NULL, list(2)), recursive = FALSE)
#> [[1]]
#> [1] 1
#>
#> [[2]]
#> [1] 2
ret_layers <- unlist(
lapply(unname(layers_upgraded), `[[`, "layers"),
recursive = FALSE
)
sass_bundle_struct(ret_layers)
}
#' @describeIn sass_layer Remove a whole `sass_layer()` from a `sass_bundle()` object.
#' @param bundle Output value from `sass_layer()` or `sass_bundle()`
#' @param name If a Sass layer name is contained in `name`, the matching Sass layer will be removed from the `bundle`
#' @export
sass_bundle_remove <- function(bundle, name) {
stopifnot(is_sass_bundle(bundle))
if (!(
is.character(name) &&
all(!is.na(name)) &&
all(nzchar(name))
)) {
stop("`name` needs to be a character vector containing non-NA and non-empty values")
}
layer_names <- names(bundle$layers)
# vector support
layer_name_matches <- layer_names %in% name
if (any(layer_name_matches)) {
name_pos <- which(layer_name_matches)
bundle$layers <- bundle$layers[-1 * name_pos]
}
bundle
}
# sass_layer Check if `x` is a Sass layer object
is_sass_layer <- function(x) {
inherits(x, "sass_layer")
}
#' @describeIn sass_layer Check if `x` is a Sass bundle object
#' @param x object to inspect
#' @export
is_sass_bundle <- function(x) {
inherits(x, "sass_bundle")
}
#' Sass Bundle to Single Sass Layer
#'
#' Converts a [sass_bundle()] to a single Sass layer object.
#'
#' This is exported for internal use between packages and should not be used.
#' Instead, please use [sass_layer()] or [sass_bundle()] to construct and manage your sass objects
#' and [sass()] and [as_sass()] to convert your objects.
#'
#' @keywords internal
#' @export
as_sass_layer <- function(x) {
if (is_sass_layer(x)) return(x)
# sass_bundle(x) will auto upgrade to a sass bundle object
Reduce(function(y1, y2) { sass_layers_join(y1, y2) }, sass_bundle(x)$layers)
}
sass_layers_join <- function(layer1, layer2) {
sass_layer_struct(
defaults = join_non_null_values(layer2$defaults, layer1$defaults),
declarations = join_non_null_values(layer1$declarations, layer2$declarations),
rules = join_non_null_values(layer1$rules, layer2$rules),
html_deps = c(layer1$html_deps, layer2$html_deps),
file_attachments = join_attachments(layer1$file_attachments, layer2$file_attachments)
)
}
join_non_null_values <- function(x, y) {
ret <- dropNulls(list(x, y))
if (length(ret) == 0) return(NULL)
if (length(ret) == 1) return(ret[[1]])
ret
}
# attach2 takes precedence
join_attachments <- function(attach1, attach2) {
# I thought about removing duplicates here, but it's hard to do so reliably
# because the paths can be files or directories.
c(attach1, attach2)
}
# Given the `input` to `sass()`, returns either NULL or a single sass_layer
# that merges any sass_bundle found in the input
# returns a single `sass_layer()` / `NULL`
extract_layer <- function(input) {
if (is_sass_layer(input)) {
return(input)
}
if (is_sass_bundle(input)) {
return(as_sass_layer(input))
}
if (!identical(class(input), "list")) {
return(NULL)
}
layers <- lapply(input, function(x) extract_layer(x))
layers <- dropNulls(layers)
if (length(layers) == 0) {
return(NULL)
}
# convert to a sass layer object
as_sass_layer(
# merge all sass layers
sass_bundle(!!!layers)
)
}
validate_attachments <- function(attachments) {
if (is.null(attachments)) {
return()
}
if (!is.character(attachments)) {
stop("File attachments must be a character vector")
}
if (length(attachments) == 0) {
return()
}
dest <- names(attachments)
if (is.null(dest)) {
dest <- rep_len("", length(attachments))
}
src <- unname(attachments)
if (any(dest == "")) {
# Actually, unnamed attachments are OK; they'll just be
# copied to the output dir.
# stop("All file attachments must be named")
}
check_files <- function(files, ok, message) {
if (any(!ok)) {
stop(call. = FALSE, message, ": ",
paste0("'", files[!ok], "'", collapse = ", "))
}
}
check_files(dest, !fs::is_absolute_path(dest),
"File attachment names must be relative (destination) paths")
check_files(src, fs::is_absolute_path(src),
"File attachment names must be absolute (source) paths")
check_files(src, fs::file_exists(src),
"File attachments must exist")
check_files(dest, vapply(dest, fs::path_has_parent, logical(1), parent = "."),
"Illegal file attachment destination path(s)")
}
#' Write file attachments from a sass theme object
#'
#' @param file_attachments A character vector of files or directories.
#' @param output_path A directory to copy the attachments to.
#'
#' @keywords internal
#' @export
write_file_attachments <- function(file_attachments, output_path) {
validate_attachments(file_attachments)
if (!dir.exists(output_path)) {
stop(call. = FALSE,
"Directory '", output_path, "' not found or is not a directory")
}
output_path <- normalizePath(output_path, mustWork = TRUE)
mapply(function(dest, src) {
if (dir.exists(src)) {
dest <- file.path(output_path, dest)
if (!dir.exists(dest)) {
dir.create2(dest)
}
# We previously used fs::dir_copy(), but changed to file.copy2 for
# performance reasons. https://github.com/rstudio/sass/pull/53
file.copy2(
dir(src, all.files = TRUE, full.names = TRUE, no.. = TRUE),
dest,
overwrite = TRUE,
recursive = TRUE
)
return(NULL)
}
dest <- if (grepl("/$", dest)) {
# dest is intended to be a directory
file.path(output_path, dest, basename(src))
} else {
file.path(output_path, dest)
}
fs::dir_create(dirname(dest))
fs::file_copy(src, dest, overwrite = TRUE)
NULL
}, names(file_attachments), unname(file_attachments))
invisible()
}
dropNulls <- function(x) {
x[!vapply(x, is.null, FUN.VALUE=logical(1))]
}
|