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
|
#' Column-first uniform grid layouts
#'
#' @description
#' Wraps a 1d sequence of UI elements into a 2d grid. The number of columns (and
#' rows) in the grid dependent on the column `width` as well as the size of the
#' display. For more explanation and illustrative examples, see the _References_
#' section below.
#'
#' @param ... Unnamed arguments should be UI elements (e.g., [card()]). Named
#' arguments become attributes on the containing [htmltools::tag] element.
#' @param width The desired width of each card, which can be any of the
#' following:
#' * A (unit-less) number between 0 and 1.
#' * This should be specified as `1/num`, where `num` represents the number
#' of desired columns.
#' * A [CSS length unit][htmltools::validateCssUnit()]
#' * Either the minimum (when `fixed_width=FALSE`) or fixed width
#' (`fixed_width=TRUE`).
#' * `NULL`
#' * Allows power users to set the `grid-template-columns` CSS property
#' manually, either via a `style` attribute or a CSS stylesheet.
#' @param fixed_width When `width` is greater than 1 or is a CSS length unit,
#' e.g. `"200px"`, `fixed_width` indicates whether that `width` value
#' represents the absolute size of each column (`fixed_width=TRUE`) or the
#' minimum size of a column (`fixed_width=FALSE`). When `fixed_width=FALSE`,
#' new columns are added to a row when `width` space is available and columns
#' will never exceed the container or viewport size. When `fixed_width=TRUE`,
#' all columns will be exactly `width` wide, which may result in columns
#' overflowing the parent container.
#' @param heights_equal If `"all"` (the default), every card in every row of the
#' grid will have the same height. If `"row"`, then every card in _each_ row
#' of the grid will have the same height, but heights may vary between rows.
#' @param fill Whether or not to allow the layout to grow/shrink to fit a
#' fillable container with an opinionated height (e.g., `page_fillable()`).
#' @param fillable Whether or not each element is wrapped in a fillable container.
#' @param height_mobile Any valid CSS unit to use for the height when on mobile
#' devices (or narrow windows).
#' @param min_height,max_height The maximum or minimum height of the layout container.
#' Can be any valid [CSS unit][htmltools::validateCssUnit] (e.g.,
#' `max_height="200px"`). Use these arguments in filling layouts to ensure that a
#' layout container doesn't shrink below `min_height` or grow beyond `max_height`.
#' @inheritParams card
#' @inheritParams card_body
#'
#' @export
#' @family Column layouts
#'
#' @references The bslib website features `layout_column_wrap()` in two places:
#' * [Column-based layouts](https://rstudio.github.io/bslib/articles/column-layout/index.html)
#' * [Cards: Multiple cards](https://rstudio.github.io/bslib/articles/cards/index.html#multiple-cards)
#'
#' @examplesIf rlang::is_interactive()
#' x <- card("A simple card")
#'
#' # Always has 2 columns (on non-mobile)
#' layout_column_wrap(width = 1/2, x, x, x)
#'
#' # Automatically lays out three cards into columns
#' # such that each column is at least 200px wide:
#' layout_column_wrap(x, x, x)
#'
#' # To use larger column widths by default, set `width`.
#' # This example has 3 columns when the screen is at least 900px wide:
#' layout_column_wrap(width = "300px", x, x, x)
#'
#' # You can add a list of items, spliced with rlang's `!!!` operator
#' layout_column_wrap(!!!list(x, x, x))
#'
#' @export
layout_column_wrap <- function(
...,
width = "200px",
fixed_width = FALSE,
heights_equal = c("all", "row"),
fill = TRUE,
fillable = TRUE,
height = NULL,
height_mobile = NULL,
min_height = NULL,
max_height = NULL,
gap = NULL,
class = NULL
) {
heights_equal <- match.arg(heights_equal)
args <- separate_arguments(...)
attribs <- args$attribs
children <- args$children
if (missing(width)) {
first_is_width <-
is.null(children[[1]]) ||
is_probably_a_css_unit(children[[1]])
if (first_is_width) {
# Assume an unnamed first argument that matches our expectations for
# `width` is actually the width argument, with a warning
lifecycle::deprecate_warn(
"0.6.0",
"layout_column_wrap(width = 'must be named')"
)
width <- children[[1]]
children <- children[-1]
}
}
if (length(width) > 1) {
stop("`width` of length greater than 1 is not currently supported.")
}
colspec <- if (!is.null(width)) {
if (width > 0 && width <= 1) {
num_cols <- 1 / width
if (num_cols != as.integer(num_cols)) {
stop("Could not interpret width argument; see ?layout_column_wrap")
}
sprintf("repeat(%s, minmax(0, 1fr))", num_cols)
} else {
if (fixed_width) {
paste0("repeat(auto-fit, ", validateCssUnit(width), ")")
} else {
sprintf(
"repeat(auto-fit, minmax(min(%s, 100%%), 1fr))",
validateCssUnit(width)
)
}
}
}
# If relevant (i.e., fillable=TRUE), wrap each child in a fillable context
# (so fill/flex items can fill the available area)
children <- lapply(children, grid_item_container, fillable = fillable)
tag <- div(
class = "bslib-grid bslib-mb-spacing",
style = css(
grid_template_columns = colspec,
grid_auto_rows = if (heights_equal == "all") "1fr",
# Always provide the `height:auto` default so that the CSS variable
# doesn't get inherited in a scenario like layout_column_wrap(height=200, ..., layout_column_wrap(...))
"--bslib-grid-height" = validateCssUnit(height %||% "auto"),
"--bslib-grid-height-mobile" = validateCssUnit(height_mobile %||% "auto"),
gap = validateCssUnit(gap),
min_height = validateCssUnit(min_height),
max_height = validateCssUnit(max_height)
),
!!!attribs,
children,
component_dependencies()
)
tag <- bindFillRole(tag, item = fill)
tag <- tagAppendAttributes(tag, class = class)
as_fragment(
tag_require(tag, version = 5, caller = "layout_column_wrap()")
)
}
is_probably_a_css_unit <- function(x) {
if (length(x) != 1) return(FALSE)
if (is.numeric(x)) return(TRUE)
if (!is.character(x)) return(FALSE)
tryCatch(
{
validateCssUnit(x)
TRUE
},
error = function(e) FALSE
)
}
#' Responsive 12-column grid layouts
#'
#' Create responsive, column-based grid layouts, based on a 12-column grid.
#'
#' @inheritParams layout_column_wrap
#' @param col_widths One of the following:
#' * `NA` (the default): Automatically determines a sensible number of columns
#' based on the number of children.
#' * A numeric vector of integers between 1 and 12, where each element
#' represents the number of columns for the relevant UI element. Elements
#' that happen to go beyond 12 columns wrap onto the next row. For example,
#' `col_widths = c(4, 8, 12)` allocates 4 columns to the first element, 8
#' columns to the second element, and 12 columns to the third element (which
#' wraps to the next row). Negative values are also allowed, and are treated
#' as empty columns. For example, `col_widths = c(-2, 8, -2)` would allocate
#' 8 columns to an element (with 2 empty columns on either side).
#' * A [breakpoints()] object, where each breakpoint may be either of the
#' above.
#' @param row_heights One of the following:
#' * A numeric vector, where each value represents the
#' [fractional unit](https://css-tricks.com/introduction-fr-css-unit/)
#' (`fr`) height of the relevant row. If there are more rows than values
#' provided, the pattern will repeat. For example, `row_heights = c(1, 2)`
#' allows even rows to take up twice as much space as odd rows.
#' * A list of numeric and [CSS length units][htmltools::validateCssUnit()],
#' where each value represents the height of the relevant row. If more rows
#' are needed than values provided, the pattern will repeat. For example,
#' `row_heights = list("auto", 1)` allows the height of odd rows to be
#' driven my it's contents and even rows to be
#' [`1fr`](https://css-tricks.com/introduction-fr-css-unit/).
#' * A character vector/string of [CSS length units][htmltools::validateCssUnit()].
#' In this case, the value is supplied directly to `grid-auto-rows`.
#' * A [breakpoints()] object, where each breakpoint may be either of the above.
#'
#' @export
#' @family Column layouts
#'
#' @references [Column-based layouts](https://rstudio.github.io/bslib/articles/column-layout/index.html)
#' on the bslib website.
#'
#' @seealso [breakpoints()] for more information on specifying column widths at
#' responsive breakpoints.
#'
#' @examplesIf rlang::is_interactive()
#' x <- card("A simple card")
#'
#' page_fillable(
#' layout_columns(x, x, x, x)
#' )
#'
#' # Or add a list of items, spliced with rlang's `!!!` operator
#' page_fillable(
#' layout_columns(!!!list(x, x, x))
#' )
#'
#' page_fillable(
#' layout_columns(
#' col_widths = c(6, 6, 12),
#' x, x, x
#' )
#' )
#'
#' page_fillable(
#' layout_columns(
#' col_widths = c(6, 6, -2, 8),
#' row_heights = c(1, 3),
#' x, x, x
#' )
#' )
#'
#' page_fillable(
#' fillable_mobile = TRUE,
#' layout_columns(
#' col_widths = breakpoints(
#' sm = c(12, 12, 12),
#' md = c(6, 6, 12),
#' lg = c(4, 4, 4)
#' ),
#' x, x, x
#' )
#' )
#'
layout_columns <- function(
...,
col_widths = NA,
row_heights = NULL,
fill = TRUE,
fillable = TRUE,
gap = NULL,
class = NULL,
height = NULL,
min_height = NULL,
max_height = NULL
) {
args <- separate_arguments(...)
attribs <- args$attribs
children <- args$children
n_kids <- length(children)
# Check for spec problems so we can stop early
col_spec <- as_col_spec(col_widths, n_kids)
# Wrap each child in a container (so fill/flex items can fill the available area)
children <- Map(
f = grid_item_container,
children,
fillable = fillable
)
tag <- web_component(
"bslib-layout-columns",
class = "bslib-grid grid bslib-mb-spacing",
style = css(
height = validateCssUnit(height),
gap = validateCssUnit(gap),
min_height = validateCssUnit(min_height),
max_height = validateCssUnit(max_height)
),
# We don't enable the next option by default, but users could add this
# attribute to hide the internal elements until after the custom element
# adds classes to all of the elements. We don't think this is needed but
# it's here if we find there are cases where rendering the children and
# adding classes takes longer than we've anticipated in our testing.
# "hidden-until-init" = NA,
!!!col_widths_attrs(col_spec),
!!!row_heights_css_vars(row_heights),
!!!attribs,
!!!children
)
tag <- bindFillRole(tag, item = fill)
tag <- tagAppendAttributes(tag, class = class)
as_fragment(
tag_require(tag, version = 5, caller = "layout_columns()")
)
}
as_col_spec <- function(col_widths, n_kids) {
if (is.null(col_widths) || rlang::is_na(col_widths)) return(NULL)
if (!is_breakpoints(col_widths)) {
col_widths <- breakpoints(sm = col_widths)
}
for (break_name in names(col_widths)) {
bk <- col_widths[[break_name]]
if (rlang::is_na(bk)) {
next
}
if (isTRUE(any(bk == 0))) {
abort(
"Column values must be greater than 0 to indicate width, or negative to indicate a column offset."
)
}
if (length(bk) > 1 && anyNA(bk)) {
abort(
"Cannot mix widths and `NA` values. All column widths must be specified, or choose auto widths using a single `NA` value."
)
}
if (!any(bk > 0)) {
abort("Column values must include at least one positive integer width.")
}
if (length(bk[bk > 0]) > n_kids) {
rlang::warn(
sprintf(
"More column widths than children at breakpoint '%s', extra widths will be ignored.",
break_name
)
)
}
}
col_widths
}
col_widths_attrs <- function(col_spec) {
if (is.null(col_spec) || rlang::is_na(col_spec)) return(NULL)
names(col_spec) <- paste0("col-widths-", names(col_spec))
lapply(col_spec, function(x) {
if (rlang::is_na(x)) NA else paste(x, collapse = ",")
})
}
maybe_fr_unit <- function(x) {
if (is.numeric(x)) sprintf("%0.0ffr", x) else x
}
row_heights_css_vars <- function(x) {
if (is.null(x)) return(list())
if (!is_breakpoints(x)) {
# Setting the `xs` breakpoint is equivalent to setting all breaks
x <- breakpoints(xs = x)
}
# creates classes that pair with CSS variables when set
classes <- paste0("bslib-grid--row-heights--", names(x))
css_vars <- setNames(x, paste0("--", classes))
# Treat numeric values as fractional units
css_vars <- rapply(css_vars, how = "replace", maybe_fr_unit)
if (identical(names(css_vars), "--bslib-grid--row-heights--xs")) {
names(css_vars) <- "--bslib-grid--row-heights"
classes <- character()
}
list(
style = css(!!!css_vars),
class = classes
)
}
grid_item_container <- function(el, ..., fillable = TRUE) {
div(
...,
class = "bslib-grid-item",
class = if (fillable) "bslib-gap-spacing",
if (fillable) as_fillable_container(),
el
)
}
|