Skip to content

Commit 7dd6b9f

Browse files
committed
use phosphoricons
1 parent 09a06c9 commit 7dd6b9f

File tree

7 files changed

+41
-21
lines changed

7 files changed

+41
-21
lines changed

DESCRIPTION

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: shinytreeview
22
Title: Tree View for 'shiny' Applications
3-
Version: 0.0.8
3+
Version: 0.0.9
44
Authors@R:
55
c(person(given = "Victor",
66
family = "Perrier",
@@ -25,10 +25,11 @@ License: GPL-3
2525
Encoding: UTF-8
2626
LazyData: true
2727
Roxygen: list(markdown = TRUE)
28-
RoxygenNote: 7.1.2
28+
RoxygenNote: 7.2.1
2929
Imports:
3030
htmltools,
3131
shiny,
32-
jsonlite
32+
jsonlite,
33+
phosphoricons
3334
Depends:
3435
R (>= 2.10)

NEWS.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# shinytreeview 0.0.9
2+
3+
* Use [phosphoricons](https://github.com/dreamRs/phosphoricons) for icons.
4+
5+
6+
# shinytreeview 0.0.8
7+
8+
* Fixed a bug in `selected =` argument.
9+
10+
111
# shinytreeview 0.0.7
212

313
* Internal: use [{packer}](https://github.com/JohnCoene/packer) to manage JavaScript assets.

R/input-treecheck.R

+6-6
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ treecheckInput <- function(inputId,
3232
highlightSelected = FALSE,
3333
propagateCheckEvent = hierarchical,
3434
hierarchicalCheck = hierarchical,
35-
uncheckedIcon = "fa fa-square-o",
36-
partiallyCheckedIcon = "fa fa-minus-square-o",
37-
checkedIcon = "fa fa-check-square-o",
38-
expandIcon = "fa fa-chevron-right",
39-
collapseIcon = "fa fa-chevron-down",
35+
uncheckedIcon = "ph-square-light ph-shinytreeview",
36+
partiallyCheckedIcon = "ph-square-logo-light ph-shinytreeview",
37+
checkedIcon = "ph-check-square-light ph-shinytreeview",
38+
expandIcon = "ph-caret-right-light ph-shinytreeview",
39+
collapseIcon = "ph-caret-down-light ph-shinytreeview",
4040
...
4141
)
4242
options <- dropNulls(list(
@@ -59,6 +59,6 @@ treecheckInput <- function(inputId,
5959
)
6060
),
6161
html_dependency_treeview(),
62-
htmlDependencies(icon("plus", verify_fa = FALSE))
62+
phosphoricons::html_dependency_phosphor()
6363
)
6464
}

R/input-treeview.R

+13-11
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,18 @@ treeviewInput <- function(inputId,
4242
warning("Multiple selected values used but multiple = FALSE, only first one will be selected.")
4343
selected <- selected[1]
4444
}
45+
config <- list(
46+
data = choices,
47+
multiSelect = multiple,
48+
preventUnselect = prevent_unselect,
49+
levels = levels,
50+
showBorder = borders,
51+
expandIcon = "ph-plus-light ph-shinytreeview",
52+
collapseIcon = "ph-minus-light ph-shinytreeview",
53+
...
54+
)
4555
options <- dropNulls(list(
46-
config = c(
47-
list(
48-
data = choices,
49-
multiSelect = multiple,
50-
preventUnselect = prevent_unselect,
51-
levels = levels,
52-
showBorder = borders
53-
),
54-
list(...)
55-
),
56+
config = config,
5657
selected = list1(selected)
5758
))
5859

@@ -70,7 +71,8 @@ treeviewInput <- function(inputId,
7071
HTML(jsonlite::toJSON(options, auto_unbox = TRUE, json_verbatim = TRUE))
7172
)
7273
),
73-
html_dependency_treeview()
74+
html_dependency_treeview(),
75+
phosphoricons::html_dependency_phosphor()
7476
)
7577
}
7678

inst/packer/treeview.js

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

srcjs/css/styles.css

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.ph-shinytreeview {
2+
font-size: 1.3333em;
3+
line-height: 0.75em;
4+
vertical-align: -0.2em;
5+
margin-right: 0.4em !important;
6+
}

srcjs/inputs/treeview.js

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import $ from "jquery";
22
import "shiny";
33
import "patternfly-bootstrap-treeview/dist/bootstrap-treeview.min.js";
44
import "patternfly-bootstrap-treeview/dist/bootstrap-treeview.min.css";
5+
import "../css/styles.css";
56

67
var treeviewInputBinding = new Shiny.InputBinding();
78
$.extend(treeviewInputBinding, {

0 commit comments

Comments
 (0)