-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathcontrols.R
622 lines (561 loc) · 20.2 KB
/
controls.R
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
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
bootstrapLib <- function(theme = NULL) {
# Intentionally use an older version of bootstrap. The rendering
# environment may use a bootstrap version that has a theme, and
# we don't want to trump that just for our little controls.
# Ideally we should find a better solution for this.
htmlDependency(
name = "bootstrap",
version = "3.3.2",
package = "crosstalk",
src = file.path("lib", "bootstrap"),
script = "js/bootstrap.min.js",
stylesheet = if (is.null(theme)) "css/bootstrap.min.css",
meta = list(viewport = "width=device-width, initial-scale=1")
)
}
selectizeLib <- function(bootstrap = TRUE) {
htmlDependency(
name = "selectize",
version = "0.11.2",
package = "crosstalk",
src = "lib/selectize",
stylesheet = if (bootstrap) "css/selectize.bootstrap3.css",
script = "js/selectize.min.js"
)
}
jqueryLib <- function() {
htmlDependency(
name = "jquery",
version = "3.5.1",
package = "crosstalk",
src = "lib/jquery",
script = "jquery.min.js"
)
}
ionrangesliderLibs <- function() {
list(
jqueryLib(),
htmlDependency(
name = "ionrangeslider",
version = "2.1.2",
package = "crosstalk",
src = "lib/ionrangeslider",
script = "js/ion.rangeSlider.min.js",
# ion.rangeSlider also needs normalize.css, which is already included in
# Bootstrap.
stylesheet = c("css/ion.rangeSlider.css",
"css/ion.rangeSlider.skinShiny.css")
),
htmlDependency(
name = "strftime",
version = "0.9.2",
package = "crosstalk",
src = "lib/strftime",
script = "strftime-min.js"
)
)
}
makeGroupOptions <- function(sharedData, group, allLevels, selected = NULL) {
df <- sharedData$data(
withSelection = FALSE,
withFilter = FALSE,
withKey = TRUE
)
if (inherits(group, "formula"))
group <- lazyeval::f_eval(group, df)
if (length(group) < 1) {
stop("Can't form options with zero-length group vector")
}
lvls <- if (is.factor(group)) {
if (allLevels) {
levels(group)
} else {
levels(droplevels(group))
}
} else {
sort(unique(group))
}
matches <- match(group, lvls)
vals <- lapply(1:length(lvls), function(i) {
df$key_[which(matches == i)]
})
lvls_str <- as.character(lvls)
if (!is.null(selected)) {
selected <- unique(as.character(selected))
present <- selected %in% lvls_str
if (any(!present)) {
warning(call. = FALSE,
"Default selection was specified that was not present in the data [",
paste0("'", selected[!present], "'", collapse = ","),
"]"
)
selected <- selected[present]
}
}
options <- list(
items = data.frame(value = lvls_str, label = lvls_str, stringsAsFactors = FALSE),
map = setNames(vals, lvls_str),
group = sharedData$groupName(),
selected = selected
)
options
}
#' Categorical filter controls
#'
#' Creates a select box or list of checkboxes, for filtering a
#' \code{\link{SharedData}} object based on categorical data.
#'
#' @param id An HTML element ID; must be unique within the web page
#' @param label A human-readable label
#' @param sharedData \code{SharedData} object with the data to filter
#' @param group A one-sided formula whose values will populate this select box.
#' Generally this should be a character or factor column; if not, it will be
#' coerced to character.
#' @param allLevels If the vector described by \code{group} is factor-based,
#' should all the levels be displayed as options, or only ones that are
#' present in the data?
#' @param multiple Can multiple values be selected?
#' @param columns Number of columns the options should be arranged into.
#' @param selected Default value(s) to be selected. Should be character, or
#' coercible to character.
#'
#' @examples
#' ## Only run examples in interactive R sessions
#' if (interactive()) {
#'
#' sd <- SharedData$new(chickwts)
#' filter_select("feedtype", "Feed type", sd, "feed")
#'
#' }
#'
#' @export
filter_select <- function(id, label, sharedData, group, allLevels = FALSE,
multiple = TRUE, selected = NULL) {
if (!multiple && length(selected) > 1) {
warning(call. = FALSE, "filter_select called with multiple=FALSE ",
"but more than one selected value; only the first element will ",
"be used")
selected <- selected[[1]]
}
options <- makeGroupOptions(sharedData, group, allLevels, selected)
htmltools::browsable(attachDependencies(
tags$div(id = id, class = "form-group crosstalk-input-select crosstalk-input",
tags$label(class = "control-label", `for` = id, label),
tags$div(
tags$select(
multiple = if (multiple) NA else NULL
),
tags$script(type = "application/json",
`data-for` = id,
jsonlite::toJSON(options, dataframe = "columns", pretty = TRUE)
)
)
),
c(list(jqueryLib(), bootstrapLib(), selectizeLib()), crosstalkLibs())
))
}
columnize <- function(columnCount, elements) {
if (columnCount <= 1 || length(elements) <= 1) {
return(elements)
}
columnSize <- ceiling(length(elements) / columnCount)
lapply(1:ceiling(length(elements) / columnSize), function(i) {
tags$div(class = "crosstalk-options-column",
{
start <- (i-1) * columnSize + 1
end <- i * columnSize
elements[start:end]
}
)
})
}
#' @param inline If \code{TRUE}, render checkbox options horizontally instead of vertically.
#'
#' @rdname filter_select
#' @export
filter_checkbox <- function(id, label, sharedData, group, allLevels = FALSE, inline = FALSE, columns = 1, selected = NULL) {
options <- makeGroupOptions(sharedData, group, allLevels)
labels <- options$items$label
values <- options$items$value
options$items <- NULL # Doesn't need to be serialized for this type of control
makeCheckbox <- if (inline) inlineCheckbox else blockCheckbox
htmltools::browsable(attachDependencies(
tags$div(id = id, class = "form-group crosstalk-input-checkboxgroup crosstalk-input",
tags$label(class = "control-label", `for` = id, label),
tags$div(class = "crosstalk-options-group",
columnize(columns,
mapply(labels, values, FUN = function(label, value) {
makeCheckbox(id, value, label, value %in% selected)
}, SIMPLIFY = FALSE, USE.NAMES = FALSE)
)
),
tags$script(type = "application/json",
`data-for` = id,
jsonlite::toJSON(options, dataframe = "columns", pretty = TRUE)
)
),
c(list(jqueryLib(), bootstrapLib()), crosstalkLibs())
))
}
blockCheckbox <- function(id, value, label, checked) {
tags$div(class = "checkbox",
tags$label(
tags$input(
type = "checkbox", name = id, value = value,
checked = if (isTRUE(checked)) NA
),
tags$span(label)
)
)
}
inlineCheckbox <- function(id, value, label, checked) {
tags$label(class = "checkbox-inline",
tags$input(
type = "checkbox", name = id, value = value,
checked = if (isTRUE(checked)) NA
),
tags$span(label)
)
}
#' Range filter control
#'
#' Creates a slider widget that lets users filter observations based on a range
#' of values.
#'
#' @param id An HTML element ID; must be unique within the web page
#' @param label A human-readable label
#' @param sharedData \code{SharedData} object with the data to filter
#' @param column A one-sided formula whose values will be used for this slider.
#' The column must be of type \code{\link{Date}}, \code{\link{POSIXt}}, or
#' numeric.
#' @param step Specifies the interval between each selectable value on the
#' slider (if \code{NULL}, a heuristic is used to determine the step size). If
#' the values are dates, \code{step} is in days; if the values are times
#' (POSIXt), \code{step} is in seconds.
#' @param round \code{TRUE} to round all values to the nearest integer;
#' \code{FALSE} if no rounding is desired; or an integer to round to that
#' number of decimal places (for example, 1 will round to the nearest 0.1, and
#' -2 will round to the nearest 100). Any rounding will be applied after
#' snapping to the nearest step.
#' @param ticks \code{FALSE} to hide tick marks, \code{TRUE} to show them
#' according to some simple heuristics.
#' @param animate \code{TRUE} to show simple animation controls with default
#' settings; \code{FALSE} not to; or a custom settings list, such as those
#' created using \code{\link[shiny]{animationOptions}}.
#' @param width The width of the slider control (see
#' \code{\link[htmltools]{validateCssUnit}} for valid formats)
#' @param sep Separator between thousands places in numbers.
#' @param pre A prefix string to put in front of the value.
#' @param post A suffix string to put after the value.
#' @param timeFormat Only used if the values are Date or POSIXt objects. A time
#' format string, to be passed to the Javascript strftime library. See
#' \url{https://github.com/samsonjs/strftime} for more details. The allowed
#' format specifications are very similar, but not identical, to those for R's
#' \code{\link{strftime}} function. For Dates, the default is \code{"\%F"}
#' (like \code{"2015-07-01"}), and for POSIXt, the default is \code{"\%F \%T"}
#' (like \code{"2015-07-01 15:32:10"}).
#' @param timezone Only used if the values are POSIXt objects. A string
#' specifying the time zone offset for the displayed times, in the format
#' \code{"+HHMM"} or \code{"-HHMM"}. If \code{NULL} (the default), times will
#' be displayed in the browser's time zone. The value \code{"+0000"} will
#' result in UTC time.
#' @param dragRange This option is used only if it is a range slider (with two
#' values). If \code{TRUE} (the default), the range can be dragged. In other
#' words, the min and max can be dragged together. If \code{FALSE}, the range
#' cannot be dragged.
#' @param min The leftmost value of the slider. By default, set to the minimal
#' number in input data.
#' @param max The rightmost value of the slider. By default, set to the maximal
#' number in input data.
#' @param selected default range to select. Should be a vector of length
#' 2 within the bounds defined by `min` and `max`.
#' @examples
#' ## Only run examples in interactive R sessions
#' if (interactive()) {
#'
#' sd <- SharedData$new(mtcars)
#' filter_slider("mpg", "Miles per gallon", sd, "mpg")
#'
#' }
#' @export
filter_slider <- function(id, label, sharedData, column, step = NULL,
round = FALSE, ticks = TRUE, animate = FALSE, width = NULL, sep = ",",
pre = NULL, post = NULL, timeFormat = NULL,
timezone = NULL, dragRange = TRUE, min = NULL, max = NULL, selected = NULL)
{
# TODO: Check that this works well with factors
# TODO: Handle empty data frame, NA/NaN/Inf/-Inf values
if (is.character(column)) {
column <- lazyeval::f_new(as.symbol(column))
}
df <- sharedData$data(withKey = TRUE)
col <- lazyeval::f_eval(column, df)
values <- na.omit(col)
if (is.null(min))
min <- min(values)
if (is.null(max))
max <- max(values)
value <- range(values)
ord <- order(col)
options <- list(
values = col[ord],
keys = df$key_[ord],
group = sharedData$groupName()
)
# If step is NULL, use heuristic to set the step size.
findStepSize <- function(min, max, step) {
if (!is.null(step)) return(step)
range <- max - min
# If short range or decimals, use continuous decimal with ~100 points
if (range < 2 || hasDecimals(min) || hasDecimals(max)) {
step <- pretty(c(min, max), n = 100)
step[2] - step[1]
} else {
1
}
}
if (inherits(min, "Date")) {
if (!inherits(max, "Date") || !inherits(value, "Date"))
stop("`min`, `max`, and `value must all be Date or non-Date objects")
dataType <- "date"
if (is.null(timeFormat))
timeFormat <- "%F"
} else if (inherits(min, "POSIXt")) {
if (!inherits(max, "POSIXt") || !inherits(value, "POSIXt"))
stop("`min`, `max`, and `value must all be POSIXt or non-POSIXt objects")
dataType <- "datetime"
if (is.null(timeFormat))
timeFormat <- "%F %T"
} else {
dataType <- "number"
}
if (isTRUE(round))
round <- 0
else if (!is.numeric(round))
round <- NULL
step <- findStepSize(min, max, step)
# Avoid ugliness from floating point errors, e.g.
# findStepSize(min(quakes$mag), max(quakes$mag), NULL)
# was returning 0.01999999999999957 instead of 0.2
step <- signif(step, 14)
if (dataType %in% c("date", "datetime")) {
# For Dates, this conversion uses midnight on that date in UTC
to_ms <- function(x) 1000 * as.numeric(as.POSIXct(x))
# Convert values to milliseconds since epoch (this is the value JS uses)
# Find step size in ms
step <- to_ms(max) - to_ms(max - step)
min <- to_ms(min)
max <- to_ms(max)
value <- to_ms(value)
}
range <- max - min
# Try to get a sane number of tick marks
if (ticks) {
n_steps <- range / step
# Make sure there are <= 10 steps.
# n_ticks can be a noninteger, which is good when the range is not an
# integer multiple of the step size, e.g., min=1, max=10, step=4
scale_factor <- ceiling(n_steps / 10)
n_ticks <- n_steps / scale_factor
} else {
n_ticks <- NULL
}
# Make sure selected range is within (min, max) range
if (!is.null(selected)) {
if (length(selected) != 2) {
stop("`selected` must be a vector of length 2", call. = FALSE)
}
if (inherits(selected, c("Date", "POSIXt"))) {
selected <- to_ms(selected)
}
selected <- sort(selected)
}
sliderProps <- dropNulls(list(
`data-type` = if (length(value) > 1) "double",
`data-min` = formatNoSci(min),
`data-max` = formatNoSci(max),
`data-from` = formatNoSci(selected[1] %||% value[1]),
`data-to` = formatNoSci(selected[2] %||% if (length(value) > 1) value[2]),
`data-step` = formatNoSci(step),
`data-grid` = ticks,
`data-grid-num` = n_ticks,
`data-grid-snap` = FALSE,
`data-prettify-separator` = sep,
`data-prefix` = pre,
`data-postfix` = post,
`data-keyboard` = TRUE,
`data-keyboard-step` = step / (max - min) * 100,
`data-drag-interval` = dragRange,
`data-round` = round,
# The following are ignored by the ion.rangeSlider, but are used by Shiny.
`data-data-type` = dataType,
`data-time-format` = timeFormat,
`data-timezone` = timezone
))
# Replace any TRUE and FALSE with "true" and "false"
sliderProps <- lapply(sliderProps, function(x) {
if (identical(x, TRUE)) "true"
else if (identical(x, FALSE)) "false"
else x
})
sliderTag <- div(
class = "form-group crosstalk-input",
class = "crosstalk-input-slider js-range-slider",
id = id,
style = if (!is.null(width)) paste0("width: ", validateCssUnit(width), ";"),
if (!is.null(label)) controlLabel(id, label),
do.call(tags$input, sliderProps),
tags$script(type = "application/json",
`data-for` = id,
jsonlite::toJSON(options, dataframe = "columns", pretty = TRUE)
)
)
# Add animation buttons
if (identical(animate, TRUE))
animate <- shiny::animationOptions()
if (!is.null(animate) && !identical(animate, FALSE)) {
if (is.null(animate$playButton))
animate$playButton <- shiny::icon('play', lib = 'glyphicon')
if (is.null(animate$pauseButton))
animate$pauseButton <- shiny::icon('pause', lib = 'glyphicon')
sliderTag <- tagAppendChild(
sliderTag,
tags$div(class='slider-animate-container',
tags$a(href='#',
class='slider-animate-button',
'data-target-id'=id,
'data-interval'=animate$interval,
'data-loop'=animate$loop,
span(class = 'play', animate$playButton),
span(class = 'pause', animate$pauseButton)
)
)
)
}
htmltools::browsable(attachDependencies(
sliderTag,
c(ionrangesliderLibs(), crosstalkLibs())
))
}
hasDecimals <- function(value) {
truncatedValue <- round(value)
return (!identical(value, truncatedValue))
}
#' @rdname filter_slider
#'
#' @param interval The interval, in milliseconds, between each animation step.
#' @param loop \code{TRUE} to automatically restart the animation when it
#' reaches the end.
#' @param playButton Specifies the appearance of the play button. Valid values
#' are a one-element character vector (for a simple text label), an HTML tag
#' or list of tags (using \code{\link{tag}} and friends), or raw HTML (using
#' \code{\link{HTML}}).
#' @param pauseButton Similar to \code{playButton}, but for the pause button.
#'
#' @export
animation_options <- function(interval=1000,
loop=FALSE,
playButton=NULL,
pauseButton=NULL) {
list(interval=interval,
loop=loop,
playButton=playButton,
pauseButton=pauseButton)
}
#' Arrange HTML elements or widgets in Bootstrap columns
#'
#' This helper function makes it easy to put HTML elements side by side. It can
#' be called directly from the console but is especially designed to work in an
#' R Markdown document. Warning: This will bring in all of Bootstrap!
#'
#' @param ... \code{htmltools} tag objects, lists, text, HTML widgets, or
#' NULL. These arguments should be unnamed.
#' @param widths The number of columns that should be assigned to each of the
#' \code{...} elements (the total number of columns available is always 12).
#' The width vector will be recycled if there are more \code{...} arguments.
#' \code{NA} columns will evenly split the remaining columns that are left
#' after the widths are recycled and non-\code{NA} values are subtracted.
#' @param device The class of device which is targeted by these widths; with
#' smaller screen sizes the layout will collapse to a one-column,
#' top-to-bottom display instead. xs: never collapse, sm: collapse below
#' 768px, md: 992px, lg: 1200px.
#'
#' @return A \code{\link[htmltools]{browsable}} HTML element.
#'
#' @examples
#' \donttest{
#' library(htmltools)
#'
#' # If width is unspecified, equal widths will be used
#' bscols(
#' div(style = css(width="100%", height="400px", background_color="red")),
#' div(style = css(width="100%", height="400px", background_color="blue"))
#' )
#'
#' # Use NA to absorb remaining width
#' bscols(widths = c(2, NA, NA),
#' div(style = css(width="100%", height="400px", background_color="red")),
#' div(style = css(width="100%", height="400px", background_color="blue")),
#' div(style = css(width="100%", height="400px", background_color="green"))
#' )
#'
#' # Recycling widths
#' bscols(widths = c(2, 4),
#' div(style = css(width="100%", height="400px", background_color="red")),
#' div(style = css(width="100%", height="400px", background_color="blue")),
#' div(style = css(width="100%", height="400px", background_color="red")),
#' div(style = css(width="100%", height="400px", background_color="blue"))
#' )
#' }
#' @export
bscols <- function(..., widths = NA, device = c("xs", "sm", "md", "lg")) {
device <- match.arg(device)
if (length(list(...)) == 0) {
widths = c()
} else {
if (length(widths) > length(list(...))) {
warning("Too many widths provided to bscols; truncating")
}
widths <- rep_len(widths, length(list(...)))
if (any(is.na(widths))) {
remaining <- 12 - sum(widths, na.rm = TRUE)
stretch_cols <- length(which(is.na(widths)))
stretch_width <- max(1, floor(remaining / stretch_cols))
widths[is.na(widths)] <- stretch_width
}
if (sum(widths) > 12) {
warning("Sum of bscol width units is greater than 12")
}
}
ui <- tags$div(class = "container-fluid crosstalk-bscols",
# Counteract knitr pre/code output blocks
tags$div(class = "fluid-row",
unname(mapply(list(...), widths, FUN = function(el, width) {
div(class = sprintf("col-%s-%s", device, width),
el
)
}, SIMPLIFY = FALSE))
)
)
browsable(attachDependencies(ui, list(jqueryLib(), bootstrapLib())))
}
controlLabel <- function(controlName, label) {
if (is.null(label)) {
NULL
} else {
tags$label(class = "control-label", `for` = controlName, label)
}
}
"%||%" <- function(x, y) {
if (is.null(x)) y else x
}
# Given a vector or list, drop all the NULL items in it
dropNulls <- function(x) {
x[!vapply(x, is.null, FUN.VALUE=logical(1))]
}
# Format a number without sci notation, and keep as many digits as possible (do
# we really need to go beyond 15 digits?)
formatNoSci <- function(x) {
if (is.null(x)) return(NULL)
format(x, scientific = FALSE, digits = 15)
}