Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,9 @@ jobs:
uses: rstudio/shiny-workflows/.github/workflows/website.yaml@v1
routine:
uses: rstudio/shiny-workflows/.github/workflows/routine.yaml@v1
with:
node-version: "16"
R-CMD-check:
uses: rstudio/shiny-workflows/.github/workflows/R-CMD-check.yaml@v1
with:
check-depends-only: false
47 changes: 24 additions & 23 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -2,36 +2,37 @@ Package: reactlog
Title: Reactivity Visualizer for 'shiny'
Version: 1.1.1
Authors@R: c(
person(
"Barret", "Schloerke", email = "barret@rstudio.com", role = c("aut", "cre"),
comment = c(ORCID = "0000-0001-9986-114X")
),
person("Joe", "Cheng", email = "joe@rstudio.com", role = c("ctb")),
person("RStudio", role = c("cph", "fnd"))
)
Description: Building interactive web applications with R is incredibly easy
with 'shiny'. Behind the scenes, 'shiny' builds a reactive graph that can
quickly become intertwined and difficult to debug. 'reactlog'
(Schloerke 2019) <doi:10.5281/zenodo.2591517> provides a visual insight into
that black box of 'shiny' reactivity by constructing a directed dependency
graph of the application's reactive state at any time point in a reactive
recording.
person("Barret", "Schloerke", , "barret@rstudio.com", role = c("aut", "cre"),
comment = c(ORCID = "0000-0001-9986-114X")),
person("Joe", "Cheng", , "joe@rstudio.com", role = "ctb"),
person("RStudio", role = c("cph", "fnd"))
)
Description: Building interactive web applications with R is incredibly
easy with 'shiny'. Behind the scenes, 'shiny' builds a reactive graph
that can quickly become intertwined and difficult to debug. 'reactlog'
(Schloerke 2019) <doi:10.5281/zenodo.2591517> provides a visual
insight into that black box of 'shiny' reactivity by constructing a
directed dependency graph of the application's reactive state at any
time point in a reactive recording.
License: GPL-3 | file LICENSE
URL: https://rstudio.github.io/reactlog/,
https://github.com/rstudio/reactlog,
https://community.rstudio.com/tag/reactlog
BugReports: https://github.com/rstudio/reactlog/issues
Depends:
R (>= 3.0.2)
R (>= 3.0.2)
Imports:
jsonlite (>= 0.9.16),
jsonlite (>= 0.9.16)
Suggests:
shiny (>= 1.5.0),
fontawesome (>= 0.3.0),
htmltools,
knitr,
rmarkdown,
htmltools,
shiny (>= 1.5.0),
testthat
License: GPL-3 | file LICENSE
VignetteBuilder:
knitr
Encoding: UTF-8
RoxygenNote: 7.2.1
URL: https://rstudio.github.io/reactlog/, https://github.com/rstudio/reactlog, https://community.rstudio.com/tag/reactlog
BugReports: https://github.com/rstudio/reactlog/issues
VignetteBuilder: knitr
Language: en-US
Roxygen: list(markdown = TRUE)
Config/roxygen2/version: 8.0.0
9 changes: 3 additions & 6 deletions R/shinyModule.R
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,7 @@
#' @rdname reactlog_module
#' @export
#' @examples
#' if (!require("shiny")) {
#' message("`shiny` required to run example")
#' return()
#' }
#'
#' \dontrun{
#' library(shiny)
#' # Enable reactlog
#' reactlog_enable()
Expand Down Expand Up @@ -55,6 +51,7 @@
#' if (interactive()) {
#' shinyApp(ui = ui, server = server)
#' }
#' }
reactlog_module_ui <- function(include_refresh = TRUE, id = "reactlog_module") {
ns <- shiny::NS(id)
shiny::tagList(
Expand Down Expand Up @@ -135,7 +132,7 @@ shiny_version_required <- function() {
test_shiny_version <- function() {
tryCatch({
utils::packageVersion("shiny") >= shiny_version_required()
}, error = function() {
}, error = function(e) {
# package not found
FALSE
})
Expand Down
4 changes: 0 additions & 4 deletions bin/postinstall.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
#!/bin/bash -e

# do not create stubs from missing libraries
# ignore dev dependencies
yarn flow-typed install --skip true --ignoreDeps dev

yarn build-only
7 changes: 2 additions & 5 deletions man/reactlog_module.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions man/reactlog_show.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.