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
|
# @staticimports pkg:staticimports
# is_installed get_package_version system_file
# register_upgrade_message
# %||% is_string
# read_utf8
switch_version <- function(
version,
five = default,
four = default,
three = default,
default = NULL
) {
if (is_bs_theme(version)) {
version <- theme_version(version)
}
version <- as.character(version)
if (isTRUE(version %in% c("4-3", "4+3"))) {
warning("Version ", version, " has been renamed to 4. Please use 4 instead")
version <- "4"
}
switch(
version,
`5` = five,
`4` = four,
`3` = three,
stop("Didn't recognize Bootstrap version: ", version, call. = FALSE)
)
}
get_exact_version <- function(version) {
switch_version(
version,
five = version_bs5,
four = version_bs4,
three = version_bs3
)
}
path_inst <- function(...) {
files <- system_file(..., package = "bslib")
files_found <- files != ""
if (all(files_found)) return(files)
files_not_found <- file.path(...)[!files_found]
stop(
"bslib file not found: '",
files_not_found,
"'",
call. = FALSE
)
}
path_lib <- function(...) path_inst("lib", ...)
is_shiny_app <- function() {
# Make sure to not load shiny as a side-effect of calling this function.
isNamespaceLoaded("shiny") && shiny::isRunning()
}
is_hosted_app <- function() {
nzchar(Sys.getenv("SHINY_SERVER_VERSION")) && is_shiny_app()
}
is_shiny_runtime <- function() {
if (!is_installed("knitr")) return(FALSE)
isTRUE(grepl("^shiny", knitr::opts_knit$get("rmarkdown.runtime")))
}
register_runtime_package_check <- function(feature, pkg, version) {
msg <- sprintf(
"%s is designed to work with %s %s or higher",
feature,
pkg,
version
)
if (isNamespaceLoaded(pkg) && !is_installed(pkg, version)) {
warning(msg, call. = FALSE)
}
setHook(
packageEvent(pkg, "onLoad"),
function(...) {
if (!is_installed(pkg, version)) warning(msg, call. = FALSE)
}
)
}
add_class <- function(x, y) {
class(x) <- unique(c(y, oldClass(x)))
x
}
dropNulls <- function(x) {
x[!vapply(x, is.null, FUN.VALUE = logical(1))]
}
names2 <- function(x) {
names(x) %||% rep.int("", length(x))
}
any_unnamed <- function(x) {
if (length(x) == 0) return(FALSE)
nms <- names(x)
is.null(nms) || !all(nzchar(nms))
}
separate_arguments <- function(...) {
x <- rlang::list2(...)
x_names <- rlang::names2(x)
is_named <- nzchar(x_names)
if (all(is_named)) {
return(list(attribs = x, children = list()))
}
if (!any(is_named)) {
return(list(attribs = list(), children = x))
}
list(attribs = x[is_named], children = unname(dropNulls(x[!is_named])))
}
#' Rename a named list
#'
#' @param x a named list to be renamed
#' @param nms a named character vector defining the renaming
#' @noRd
#' @examples
#' rename2(list(a=1, b=3, c=4, a=2), b="z", f="w", a="y")
#' #> list(y = 1, z = 3, c = 4, y = 2)
#' rename2(c("a", "b", "c", "a"), b="z", f="w", a="y")
#' #> c("y", "z", "c", "y")
rename2 <- function(x, ...) {
defs <- rlang::list2(...)
nms <- names(x) %||% as.character(x)
matches <- intersect(nms, names(defs))
map <- match(nms, names(defs))
mapidxNA <- is.na(map)
replacement <- as.character(defs)[map[!mapidxNA]]
if (is.null(names(x))) {
x[!mapidxNA] <- replacement
} else {
names(x)[!mapidxNA] <- replacement
}
x
}
# Get an accessible color contrast for a specified bg_color
# (and return NULL+warn on failure)
get_color_contrast <- function(bg_color) {
utils_layer <- sass::sass_layer(
functions = sass::sass_file(
path_inst("sass-utils", "color-contrast.scss")
),
defaults = c(
"$black: #000000;",
"$white: #FFFFFF;"
),
rules = sprintf(
"._ {--RET: #{color-contrast(%s)}}",
bg_color
)
)
tryCatch(
{
css <- sass::sass(
utils_layer,
cache_key_extra = get_package_version("bslib"),
# Don't listen to global Sass options so we can be sure
# that stuff like source maps won't be included
options = sass::sass_options(source_map_embed = FALSE)
)
# example: css <- "._ {\n --RET: #fff;\n}"
# we'll split to get value: ^ ^
ret <- strsplit(css, "--RET:")[[1]][2]
trimws(strsplit(ret, ";")[[1]][1])
},
error = function(err) {
warning(
"Failed to compute a contrasting color for '",
bg_color,
"'",
call. = FALSE
)
NULL
}
)
}
|