Skip to content

Commit 39281ad

Browse files
committed
documentation & clean up
1 parent 26c0766 commit 39281ad

File tree

5 files changed

+103
-18
lines changed

5 files changed

+103
-18
lines changed

DESCRIPTION

+5-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ Authors@R:
1616
person(given = "Red",
1717
family = "Hat",
1818
role = "cph",
19-
comment = "Modified version of Bootstrap Tree View"))
19+
comment = "Modified version of Bootstrap Tree View"),
20+
person(family = "DARES",
21+
role = "fnd"))
2022
Description: A simple and elegant solution to displaying hierarchical tree structures in 'shiny' applications.
2123
License: GPL-3
2224
Encoding: UTF-8
@@ -25,4 +27,5 @@ Roxygen: list(markdown = TRUE)
2527
RoxygenNote: 7.1.0
2628
Imports:
2729
htmltools,
28-
shiny
30+
shiny,
31+
jsonlite

NAMESPACE

+3
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,8 @@
22

33
export(treeviewInput)
44
importFrom(htmltools,htmlDependency)
5+
importFrom(htmltools,tags)
6+
importFrom(htmltools,validateCssUnit)
7+
importFrom(jsonlite,toJSON)
58
importFrom(shiny,addResourcePath)
69
importFrom(shiny,registerInputHandler)

R/input-treeview.R

+19-7
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,27 @@
11

2-
#' Title
2+
#' @title Tree view Input
33
#'
4-
#' @param inputId
5-
#' @param label
6-
#' @param choices
7-
#' @param width
4+
#' @description Represent hierarchical tree structures to select a value in a nested list.
85
#'
9-
#' @return
6+
#' @param inputId The \code{input} slot that will be used to access the value.
7+
#' @param label Display label for the control, or \code{NULL} for no label.
8+
#' @param choices A \code{list} to be used as choices.
9+
#' @param selected Default selected value.
10+
#' @param multiple Allow selection of multiple values.
11+
#' @param levels Sets the number of hierarchical levels deep the tree will be expanded to by default.
12+
#' @param borders Show or not borders around items.
13+
#' @param prevent_unselect When \code{multiple = TRUE}, prevent user to unselect a value.
14+
#' @param return_value Value returned server-side, default is the element name,
15+
#' other possibility is to returned all the tree under the element selected.
16+
#' @param width The width of the input, e.g. \code{'400px'}, or \code{'100\%'}.
17+
#'
18+
#' @return A \code{character} value or a \code{list} depending on the \code{return_value} argument.
1019
#' @export
1120
#'
12-
#' @examples
21+
#' @importFrom htmltools tags validateCssUnit
22+
#' @importFrom jsonlite toJSON
23+
#'
24+
#' @example examples/basic.R
1325
treeviewInput <- function(inputId,
1426
label = NULL,
1527
choices,

examples/basic.R

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
2-
# Basic treeviewInput example ---------------------------------------------
1+
# Basic treeviewInput example --------------------------
32

43
library(shiny)
54
library(shinytreeview)
@@ -12,7 +11,7 @@ choices <- list(
1211
list(text = "Child 1.2")
1312
)
1413
),
15-
list(text = "Parent 2"), # , state = list(selected = TRUE)
14+
list(text = "Parent 2"),
1615
list(text = "Parent 3"),
1716
list(
1817
text = "Parent 4",
@@ -26,7 +25,7 @@ choices <- list(
2625

2726

2827
ui <- fluidPage(
29-
tags$h3("shinytreeview basic example"),
28+
tags$h3("treeviewInput basic example"),
3029
treeviewInput(
3130
inputId = "tree", label = "Make a choice:",
3231
choices = choices, selected = "Parent 3",
@@ -41,6 +40,7 @@ server <- function(input, output, session) {
4140
})
4241
}
4342

44-
shinyApp(ui, server)
43+
if (interactive())
44+
shinyApp(ui, server)
4545

4646

man/treeviewInput.Rd

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

0 commit comments

Comments
 (0)