Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stla/jsTreeR
A wrapper of the jQuery plugin `jsTree`.
https://github.com/stla/jsTreeR
htmlwidgets jstree r shiny
Last synced: 3 months ago
JSON representation
A wrapper of the jQuery plugin `jsTree`.
- Host: GitHub
- URL: https://github.com/stla/jsTreeR
- Owner: stla
- License: other
- Created: 2020-08-07T11:18:49.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-12-19T14:09:10.000Z (11 months ago)
- Last Synced: 2023-12-19T15:21:52.024Z (11 months ago)
- Topics: htmlwidgets, jstree, r, shiny
- Language: R
- Homepage:
- Size: 3.59 MB
- Stars: 43
- Watchers: 4
- Forks: 3
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE.note
Awesome Lists containing this project
- awesome-shiny-extensions - jsTreeR - A wrapper of the JavaScript library jsTree. (Visualization / Tree and Hierarchical Data)
- jimsghstars - stla/jsTreeR - A wrapper of the jQuery plugin `jsTree`. (R)
README
# __jsTreeR__
[![R-CMD-check](https://github.com/stla/jsTreeR/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/stla/jsTreeR/actions/workflows/R-CMD-check.yaml)
[![](https://www.r-pkg.org/badges/version/jsTreeR?color=orange)](https://cran.r-project.org/package=jsTreeR)
[![](https://img.shields.io/badge/devel%20version-2.1.0-blue.svg)](https://github.com/stla/jsTreeR)A wrapper of the JavaScript library [jsTree](https://www.jstree.com/).
This package is similar to [shinyTree](https://github.com/shinyTree/shinyTree)
but it allows more options. It also provides a Shiny gadget allowing to
manipulate one or more folders.## Installation
Install from CRAN:
```r
install.packages("jsTreeR")
```Or install the latest development version (on GitHub):
```r
remotes::install_github("stla/jsTreeR")
```## Getting started
Please check the [Shiny examples](https://github.com/stla/jsTreeR/tree/master/inst/examples) (see `?jstreeExamples`).
![](https://raw.githubusercontent.com/stla/jsTreeR/master/inst/screenshots/jsTreeR_dragAndDrop-update.gif)
![](https://raw.githubusercontent.com/stla/jsTreeR/master/inst/screenshots/jsTreeR_search.gif)
![](https://raw.githubusercontent.com/stla/jsTreeR/master/inst/screenshots/jsTreeR_grid.png)
#### The 'folder gadget':
![](https://raw.githubusercontent.com/stla/jsTreeR/master/inst/screenshots/jsTreeR_folderGadget.gif)
#### The 'tree navigator' Shiny module:
![](https://raw.githubusercontent.com/stla/jsTreeR/master/inst/screenshots/jsTreeR_treeNavigator.gif)
The 'tree navigator' has not all the features of the 'folder gadget', it only
allows to navigate in the server side file system and to select some files.
But the 'folder gadget' loads all the structure of the root folder(s), while
the 'tree navigator' loads the contents of a clicked folder only when this one
is clicked by the user. And as a Shiny module, it is possible to build around
it a more elaborated Shiny app.___
# Copies of license agreements
The 'jsTreeR' package as a whole is distributed under GPL-3 (GNU GENERAL
PUBLIC LICENSE version 3).It includes other open source software components. The following is a list of
these components:- **jQuery**, https://github.com/jquery/jquery
- **jsTree**, https://github.com/vakata/jstree
- **jstree-bootstrap-theme**, https://github.com/orangehill/jstree-bootstrap-theme
- **jsTreeGrid**, https://github.com/deitch/jstree-grid
- **PDFObject**, https://github.com/pipwerks/PDFObject
- **SuperTinyIcons**, https://github.com/edent/SuperTinyIconsFull copies of the license agreements used by these components are included in
the file [LICENSE.note](https://github.com/stla/jsTreeR/blob/master/LICENSE.note.md).