Skip to content

Commit 8822686

Browse files
committed
returned value
1 parent 82d2f58 commit 8822686

File tree

5 files changed

+34
-5
lines changed

5 files changed

+34
-5
lines changed

NAMESPACE

+1
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
export(treeviewInput)
44
importFrom(htmltools,htmlDependency)
55
importFrom(shiny,addResourcePath)
6+
importFrom(shiny,registerInputHandler)

R/input-treeview.R

+3-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
#' @export
1111
#'
1212
#' @examples
13-
treeviewInput <- function(inputId, label = NULL, choices, width = NULL) {
14-
13+
treeviewInput <- function(inputId, label = NULL, choices, return_value = c("name", "all"), width = NULL) {
14+
return_value <- match.arg(return_value)
1515
options <- list(
1616
data = choices
1717
)
@@ -24,6 +24,7 @@ treeviewInput <- function(inputId, label = NULL, choices, width = NULL) {
2424
},
2525
tags$div(
2626
id = inputId, class = "treeview-input",
27+
`data-return` = return_value,
2728
tags$script(
2829
type = "application/json", `data-for` = inputId,
2930
jsonlite::toJSON(options, auto_unbox = TRUE, json_verbatim = TRUE)

R/onLoad.R

+16-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,22 @@
1-
#' Adds the content of www to shinyWidgets/
1+
#' Adds the content of assets/ to shinytreeview/
22
#'
3-
#' @importFrom shiny addResourcePath
3+
#' @importFrom shiny addResourcePath registerInputHandler
44
#' @noRd
55
#'
66
.onLoad <- function(...) {
77
shiny::addResourcePath("shinytreeview", system.file("assets", package = "shinytreeview"))
8+
shiny::registerInputHandler("treeview.name", function(data, ...) {
9+
if (is.null(data) || length(data) < 1) {
10+
NULL
11+
} else {
12+
return(data[[1]]$text)
13+
}
14+
}, force = TRUE)
15+
shiny::registerInputHandler("treeview.all", function(data, ...) {
16+
if (is.null(data)) {
17+
NULL
18+
} else {
19+
return(data)
20+
}
21+
}, force = TRUE)
822
}

inst/assets/bootstrap-treeview/treeview-bindings.js

+7
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,13 @@ $.extend(treeviewInputBinding, {
1212
getId: function(el) {
1313
return el.id;
1414
},
15+
getType: function(el) {
16+
if ($(el).attr("data-return") == "name") {
17+
return "treeview.name";
18+
} else {
19+
return "treeview.all";
20+
}
21+
},
1522
getValue: function(el) {
1623
var tree = $(el).data("treeview");
1724
try {

man/treeviewInput.Rd

+7-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)