Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rinterface/shinynextui
NextUI Design Kit for Shiny
https://github.com/rinterface/shinynextui
nextui r react shiny tailwind
Last synced: 2 days ago
JSON representation
NextUI Design Kit for Shiny
- Host: GitHub
- URL: https://github.com/rinterface/shinynextui
- Owner: RinteRface
- License: other
- Created: 2023-05-14T10:57:13.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-22T15:05:25.000Z (12 months ago)
- Last Synced: 2024-08-03T03:01:43.999Z (3 months ago)
- Topics: nextui, r, react, shiny, tailwind
- Language: R
- Homepage:
- Size: 8.75 MB
- Stars: 27
- Watchers: 3
- Forks: 3
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# shinyNextUI
[![R-CMD-check](https://github.com/RinteRface/shinyNextUI/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/RinteRface/shinyNextUI/actions/workflows/R-CMD-check.yaml)
The goal of `{shinyNextUI}` is to provide a wrapper around the
NextUI React [library](https://nextui.org/).![](./man/figures/pkmn.png)
The app corresponding to the above screenshot is located [here](https://github.com/RinteRface/shinyNextUI/tree/main/inst/showcase).
## Notes
`{shinyNextUI}` is currently in alpha. Please carefully look at the current [issues](https://github.com/RinteRface/shinyNextUI/issues).
The current roadmap:
- Provide more aliases to match Shiny's vanilla notations like `selectInput`, ...
- Refine the navbar template.
- Allow to dynamically create [themes](https://nextui.org/docs/customization/theme).`{shinyNextUI}` leverages tailwind css and some [rules](https://github.com/RinteRface/shinyNextUI/blob/main/js/src/output.css) have already been pre-compiled to use in the various [examples](https://github.com/RinteRface/shinyNextUI/tree/main/inst/examples). If you need custom styles, you can use the [`{windy}`](https://github.com/devOpifex/windy) package.
## Installation
You can install the development version of `{shinyNextUI}` from [GitHub](https://github.com/) with:
``` r
# install.packages("devtools")
devtools::install_github("RinteRface/shinyNextUI")
```## Example
To quickly get started with any example:
``` r
library(shinyNextUI)
# Get all examples
get_examples()
# Select an example and run the app
run_example("card")
```## Developer
`{shinyNextUI}` leverages [tailwind](https://tailwindcss.com/) for the CSS management and [webpack](https://webpack.js.org/) as JS bundler and a mix between `{shiny.react}` and `{reactR}` for components and input management.
Within the `js` folder, run `npm install`. Then, for each change:
```shell
# Update CSS
npx tailwindcss -i ./src/input.css -o ./src/output.css --watch# Change JS files
yarn webpack
```