Skip to content

Commit

Permalink
Merge pull request #42 from Appsilon/pre-release-changes
Browse files Browse the repository at this point in the history
Pre release changes
  • Loading branch information
jakubnowicki authored Nov 9, 2023
2 parents 6b10ef1 + bb2a1b2 commit f1c5229
Show file tree
Hide file tree
Showing 15 changed files with 19 additions and 22 deletions.
7 changes: 5 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
Type: Package
Package: reactable.extras
Title: Extra Features for 'Reactable' Package
Version: 0.1.0.9000
Version: 0.2.0
Authors@R:
c(
person("Recle", "Vibal", role = c("aut", "cre"), email = "[email protected]"),
person("Ivan", "Hrychaniuk", role = c("aut"), email = "[email protected]"),
person("Andres", "Quintero", role = c("aut"), email = "[email protected]"),
person("Pedro", "Silva", role = c("aut"), email = "[email protected]"),
person("Eduardo", "Almeida", role = c("ctb"), email = "[email protected]"),
person("Appsilon Sp. z o.o.", role = "cph", email = "[email protected]")
)
Description: A set of extensions for 'reactable' package.
Description: Enhanced functionality for 'reactable' in 'Shiny' applications, offering interactive and dynamic data table capabilities with ease.
With 'reactable.extras', easily integrate a range of functions and components to enrich your 'Shiny' apps and facilitate user-friendly data exploration.
License: LGPL-3
URL: https://appsilon.github.io/reactable.extras/, https://github.com/Appsilon/reactable.extras
BugReports: https://github.com/Appsilon/reactable.extras/issues
Expand Down
12 changes: 2 additions & 10 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
# reactable.extras (development version)
# reactable.extras 0.2.0

# reactable.extras 0.1.0.9000

## Server-Side Processing

* `reactable_extras_ui()` and `reactable_extras_server()` now allows for server-side processing of data.

## Miscellaneous

* Added a `NEWS.md` file to track changes to the package.
First release.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# reactable.extras
# reactable.extras <a href="https://appsilon.github.io/reactable.extras/"><img src="man/figures/logo.png" align="right" alt="reactable.extras logo" style="height: 140px;"></a>

> _Extra features for reactable package_
Expand Down Expand Up @@ -72,14 +72,14 @@ server <- function(input, output, session) {
)
)
})

observeEvent(input$button, {
showModal(modalDialog(
title = "Selected row data",
reactable(data[input$button$row, ])
))
})

}

shinyApp(ui, server)
Expand All @@ -103,4 +103,6 @@ Get in touch [[email protected]](mailto:[email protected])

Explore the [Rhinoverse](https://rhinoverse.dev) - a family of R packages built around [Rhino](https://appsilon.github.io/rhino/)!

<a href = "https://appsilon.com/careers/" target="_blank"><img src="https://raw.githubusercontent.com/Appsilon/website-cdn/gh-pages/WeAreHiring1.png" alt="We are hiring!"/></a>
<a href = "https://appsilon.us16.list-manage.com/subscribe?u=c042d7c0dbf57c5c6f8b54598&id=870d5bfc05" target="_blank">
<img src="https://raw.githubusercontent.com/Appsilon/website-cdn/gh-pages/shiny_weekly_light.jpg" alt="Subscribe for Shiny tutorials, exclusive articles, R/Shiny community events, and more."/>
</a>
Binary file added man/figures/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion pkgdown/extra.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
:root {
--primary-color: #686868;
--primary-color: #373C6E;
}

.navbar {
Expand Down
Binary file added pkgdown/favicon/apple-touch-icon-120x120.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added pkgdown/favicon/apple-touch-icon-152x152.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added pkgdown/favicon/apple-touch-icon-180x180.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added pkgdown/favicon/apple-touch-icon-60x60.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added pkgdown/favicon/apple-touch-icon-76x76.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added pkgdown/favicon/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added pkgdown/favicon/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added pkgdown/favicon/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added pkgdown/favicon/favicon.ico
Binary file not shown.
10 changes: 5 additions & 5 deletions vignettes/tutorial/combine-reactable-features.rmd
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: "Combine reactable functionalities"
output: rmarkdown::html_vignette
vignette: >
%\VignetteIndexEntry{combine reactable}
%\VignetteIndexEntry{Combine reactable functionalities}
%\VignetteEngine{knitr::rmarkdown}
%\VignetteEncoding{UTF-8}
---
Expand Down Expand Up @@ -57,22 +57,22 @@ server <- function(input, output, session) {
)
)
})

observeEvent(input$select_btn, {
# Select rows
updateReactable("table", selected = c(1, 3, 5))
})

observeEvent(input$clear_btn, {
# Clear row selection
updateReactable("table", selected = NA)
})

observeEvent(input$page_btn, {
# Change current page
updateReactable("table", page = 3)
})

}

shinyApp(ui, server)
Expand Down

0 comments on commit f1c5229

Please sign in to comment.