diff --git a/CITATION.cff b/CITATION.cff
index 5578f1a5..f7e2ec6a 100644
--- a/CITATION.cff
+++ b/CITATION.cff
@@ -8,7 +8,7 @@ message: 'To cite package "FreesearchR" in publications use:'
type: software
license: AGPL-3.0-or-later
title: 'FreesearchR: Easy data analysis for clinicians'
-version: 26.3.5
+version: 26.3.4
doi: 10.5281/zenodo.14527429
identifiers:
- type: url
diff --git a/DESCRIPTION b/DESCRIPTION
index 3a60d461..def9fc81 100644
--- a/DESCRIPTION
+++ b/DESCRIPTION
@@ -1,6 +1,6 @@
Package: FreesearchR
Title: Easy data analysis for clinicians
-Version: 26.3.5
+Version: 26.3.4
Authors@R: c(
person("Andreas Gammelgaard", "Damsbo",email="agdamsbo@clin.au.dk", role = c("aut", "cre"),
comment = c(ORCID = "0000-0002-7559-1154")),
@@ -122,7 +122,6 @@ Collate:
'plot_box.R'
'plot_euler.R'
'plot_hbar.R'
- 'plot_likert.R'
'plot_ridge.R'
'plot_sankey.R'
'plot_scatter.R'
diff --git a/NAMESPACE b/NAMESPACE
index 9ede131b..97775d14 100644
--- a/NAMESPACE
+++ b/NAMESPACE
@@ -122,7 +122,6 @@ export(plot_box_single)
export(plot_euler)
export(plot_euler_single)
export(plot_hbars)
-export(plot_likert)
export(plot_ridge)
export(plot_sankey)
export(plot_sankey_single)
@@ -167,7 +166,6 @@ export(update_factor_server)
export(update_factor_ui)
export(update_variables_server)
export(update_variables_ui)
-export(validate_redcap_filter)
export(validation_server)
export(validation_ui)
export(vectorSelectInput)
diff --git a/NEWS.md b/NEWS.md
index 7c2bbc32..3476df1d 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -1,22 +1,10 @@
-# FreesearchR 26.3.5
-
-*FIX* Labelled categorical variables were not handled correctly importing from REDCap resulting in lost labels. Fixed!
-
-*CHANGE* Testing in new data I realised, that automatically removing empty levels in categorical variables/factors is not desired. It should be a concious decision to remove levels. This is now possible in the "Modify factor" pop-up.
-
-*CHANGE* REDCap export now throws an error if no data was exported. The server side filtering prior to export is now validated and feedback is printed. Only valid filter statements are used when exporting data from the REDCap server. This is an advanced use case, but a great way to ensure only the minimum required data is exported from the server.
-
-*FIX* Applying filters now works also when the data contains text variables.
-
-*NEW* Initial support for plotting Likert scale survey results. This is expected to be further improved. For based on ggstats::gglikert.
-
# FreesearchR 26.3.4
*NEW* Color select for plotting across all plots for even more option. Ten palettes have been chosen, to provide varied and interpretable options. The selector will always show a preview of four colors.
*NEW* Added app version check against latest release on GitHub. Only runs if internet connection present. No other polling.
-*NEW* Added a "Missing" level to the Sankey plot function and adjusted the label font size. And fixed support for dichotomous data.
+*NEW* Added a "Missing" level to the sankey plot function and adjusted the label font size. And fixed support for dichotomous data.
# FreesearchR 26.3.3
diff --git a/R/app_version.R b/R/app_version.R
index bdf15ee5..c6d7307c 100644
--- a/R/app_version.R
+++ b/R/app_version.R
@@ -1 +1 @@
-app_version <- function()'26.3.5'
+app_version <- function()'26.3.4'
diff --git a/R/baseline_table.R b/R/baseline_table.R
index 39b51744..9d6f587f 100644
--- a/R/baseline_table.R
+++ b/R/baseline_table.R
@@ -11,10 +11,7 @@
#' @examples
#' mtcars |> baseline_table()
#' mtcars |> baseline_table(fun.args = list(by = "gear"))
-baseline_table <- function(data,
- fun.args = NULL,
- fun = gtsummary::tbl_summary,
- vars = NULL) {
+baseline_table <- function(data, fun.args = NULL, fun = gtsummary::tbl_summary, vars = NULL) {
out <- do.call(fun, c(list(data = data), fun.args))
return(out)
}
@@ -40,15 +37,7 @@ baseline_table <- function(data,
#' mtcars |> create_baseline(by.var = "gear", detail_level = "extended",type = list(gtsummary::all_dichotomous() ~ "categorical"),theme="nejm")
#'
#' create_baseline(default_parsing(mtcars), by.var = "am", add.p = FALSE, add.overall = FALSE, theme = "lancet")
-create_baseline <- function(data,
- ...,
- by.var,
- add.p = FALSE,
- add.diff = FALSE,
- add.overall = FALSE,
- theme = c("jama", "lancet", "nejm", "qjecon"),
- detail_level = c("minimal", "extended"),
- drop_empty = FALSE) {
+create_baseline <- function(data, ..., by.var, add.p = FALSE, add.diff=FALSE, add.overall = FALSE, theme = c("jama", "lancet", "nejm", "qjecon"), detail_level = c("minimal", "extended")) {
theme <- match.arg(theme)
detail_level <- match.arg(detail_level)
@@ -75,28 +64,31 @@ create_baseline <- function(data,
if (!any(hasName(args, c("type", "statistic")))) {
if (detail_level == "extended") {
args <-
- modifyList(args, list(
- type = list(
- gtsummary::all_continuous() ~ "continuous2",
- gtsummary::all_dichotomous() ~ "categorical"
- ),
- statistic = list(
- gtsummary::all_continuous() ~ c("{median} ({p25}, {p75})", "{mean} ({sd})", "{min}, {max}")
+ modifyList(
+ args,
+ list(
+ type = list(gtsummary::all_continuous() ~ "continuous2",
+ gtsummary::all_dichotomous() ~ "categorical"),
+ statistic = list(gtsummary::all_continuous() ~ c(
+ "{median} ({p25}, {p75})",
+ "{mean} ({sd})",
+ "{min}, {max}"))
)
- ))
+ )
}
}
- if (isTRUE(drop_empty)) {
- ## Drops empty levels if minimal
- data <- data |> REDCapCAST::fct_drop()
- }
-
- parameters <- list(data = data, fun.args = purrr::list_flatten(list(by = by.var, args)))
+ parameters <- list(
+ data = data,
+ fun.args = purrr::list_flatten(list(by = by.var, args))
+ )
# browser()
- out <- do.call(baseline_table, parameters)
+ out <- do.call(
+ baseline_table,
+ parameters
+ )
if (!is.null(by.var)) {
diff --git a/R/custom_SelectInput.R b/R/custom_SelectInput.R
index cd460b78..8ac469be 100644
--- a/R/custom_SelectInput.R
+++ b/R/custom_SelectInput.R
@@ -270,7 +270,7 @@ vectorSelectInput <- function(inputId,
colorSelectInput <- function(inputId,
label,
choices,
- selected = NULL,
+ selected = "",
previews = 4,
...,
placeholder = "") {
@@ -306,43 +306,31 @@ colorSelectInput <- function(inputId,
choices_new <- stats::setNames(vals, labels)
- if (is.null(selected) || selected == "") {
- selected <- vals[[1]]
- }
-
shiny::selectizeInput(
inputId = inputId,
label = label,
choices = choices_new,
selected = selected,
...,
- options = list(
+ options = list(
render = I(
"{
- option: function(item, escape) {
- item.data = JSON.parse(item.label);
- return '
' +
- '
' + escape(item.data.name) + '
' +
- (item.data.label != '' ? '
' + escape(item.data.label) + '
' : '') +
- '
' + item.data.swatch + '
' +
- '
';
- },
- item: function(item, escape) {
- item.data = JSON.parse(item.label);
- return '' +
- '' + escape(item.data.name) + '' +
- item.data.swatch +
- '
';
- }
- }"
- ),
- onInitialize = I(
- "function() {
- var self = this;
- self.$control_input.prop('readonly', true);
- self.$control_input.css('cursor', 'default');
- self.$control.css('cursor', 'pointer');
- }"
+ option: function(item, escape) {
+ item.data = JSON.parse(item.label);
+ return '' +
+ '
' + escape(item.data.name) + '
' +
+ (item.data.label != '' ? '
' + escape(item.data.label) + '
' : '') +
+ '
' + item.data.swatch + '
' +
+ '
';
+ },
+ item: function(item, escape) {
+ item.data = JSON.parse(item.label);
+ return '' +
+ '' + escape(item.data.name) + '' +
+ item.data.swatch +
+ '
';
+ }
+ }"
)
)
)
diff --git a/R/cut-variable-ext.R b/R/cut-variable-ext.R
index b7d8eb80..508e846c 100644
--- a/R/cut-variable-ext.R
+++ b/R/cut-variable-ext.R
@@ -378,7 +378,7 @@ cut_variable_server <- function(id, data_r = reactive(NULL)) {
rlang::exec(cut_var, !!!parameters)
},
error = function(err) {
- showNotification(paste("We encountered the following error creating the new factor:", err), type = "error")
+ showNotification(paste("We encountered the following error creating the new factor:", err), type = "err")
}
)
diff --git a/R/data_plots.R b/R/data_plots.R
index 1ae13694..cd590cce 100644
--- a/R/data_plots.R
+++ b/R/data_plots.R
@@ -351,7 +351,7 @@ data_visuals_server <- function(id,
shiny::observeEvent(input$act_plot, {
if (NROW(data()) > 0) {
- tryCatch({
+ tryCatch({
parameters <- list(
type = rv$plot.params()[["fun"]],
pri = input$primary,
@@ -377,7 +377,7 @@ data_visuals_server <- function(id,
# showNotification(paste0(warn), type = "warning")
# },
error = function(err) {
- showNotification(paste0(err), type = "error")
+ showNotification(paste0(err), type = "err")
})
}
}, ignoreInit = TRUE)
@@ -600,18 +600,6 @@ supported_plots <- function() {
secondary.max = 4,
tertiary.type = c("dichotomous"),
secondary.extra = NULL
- ),
- plot_euler = list(
- fun = "plot_likert",
- descr = i18n$t("Likert diagram"),
- note = i18n$t(
- "Plot survey results"
- ),
- primary.type = c("dichotomous", "categorical"),
- secondary.type = c("dichotomous", "categorical"),
- secondary.multi = TRUE,
- tertiary.type = c("dichotomous", "categorical"),
- secondary.extra = NULL
)
)
}
diff --git a/R/helpers.R b/R/helpers.R
index bd982c47..adc12777 100644
--- a/R/helpers.R
+++ b/R/helpers.R
@@ -230,8 +230,8 @@ default_parsing <- function(data) {
REDCapCAST::as_factor() |>
REDCapCAST::numchar2fct(numeric.threshold = 8,
character.throshold = 10) |>
- REDCapCAST::as_logical() #|>
- # REDCapCAST::fct_drop()
+ REDCapCAST::as_logical() |>
+ REDCapCAST::fct_drop()
})
# out <-
#
@@ -840,54 +840,3 @@ data_types <- function() {
"Any other class")
)
}
-
-non_character_cols <- function(df) {
- if (shiny::is.reactive(df)) df <- df()
- df[, !sapply(df, is.character), drop = FALSE]
-}
-
-apply_idea_filter <- function(filtered_reactive, df_target, env = parent.frame()) {
- # If this ever brakes, the solution will have to be to modify the original filter function
- if (shiny::is.reactive(df_target)) df_target <- df_target()
-
- result <- if (shiny::is.reactive(filtered_reactive)) filtered_reactive() else filtered_reactive
- filter_code <- attr(result, "code")
-
- if (is.null(filter_code)) return(df_target)
-
- deparsed <- paste(deparse(filter_code), collapse = "")
-
- if (is.symbol(filter_code) || !grepl("filter(", deparsed, fixed = TRUE)) {
- return(df_target)
- }
-
- extract_filters <- function(code) {
- filters <- list()
- while (!is.symbol(code) && deparse(code[[1]]) == "%>%") {
- rhs <- code[[3]]
- if (deparse(rhs[[1]]) == "filter") {
- filters <- c(list(rhs), filters)
- }
- code <- code[[2]]
- }
- if (!is.symbol(code) && deparse(code[[1]]) == "filter") {
- filters <- c(list(code), filters)
- }
- filters
- }
-
- tryCatch({
- out <- df_target
- for (f in extract_filters(filter_code)) {
- args <- lapply(rlang::call_args(f), function(arg) {
- rlang::new_quosure(arg, env = env)
- })
- out <- dplyr::filter(out, !!!args)
- }
- out
- },
- error = function(e) {
- warning("Could not apply filter: ", conditionMessage(e))
- df_target
- })
-}
diff --git a/R/hosted_version.R b/R/hosted_version.R
index 19c31921..6935edfb 100644
--- a/R/hosted_version.R
+++ b/R/hosted_version.R
@@ -1 +1 @@
-hosted_version <- function()'v26.3.5-260330'
+hosted_version <- function()'v26.3.4-260324'
diff --git a/R/import-file-ext.R b/R/import-file-ext.R
index 709a55c1..745bbc0f 100644
--- a/R/import-file-ext.R
+++ b/R/import-file-ext.R
@@ -353,7 +353,7 @@ import_file_server <- function(id,
# showNotification(warn, type = "warning")
# },
error = function(err) {
- showNotification(err, type = "error")
+ showNotification(err, type = "err")
})
})
@@ -370,7 +370,7 @@ import_file_server <- function(id,
minBodyHeight = 250
)
}, error = function(err) {
- showNotification(err, type = "error")
+ showNotification(err, type = "err")
})
})
@@ -485,7 +485,7 @@ import_xls <- function(file, sheet, skip, na.strings) {
# showNotification(paste0(warn), type = "warning")
# },
error = function(err) {
- showNotification(paste0(err), type = "error")
+ showNotification(paste0(err), type = "err")
})
}
@@ -513,7 +513,7 @@ import_ods <- function(file, sheet, skip, na.strings) {
# showNotification(paste0(warn), type = "warning")
# },
error = function(err) {
- ?showNotification(paste0(err), type = "error")
+ showNotification(paste0(err), type = "err")
})
}
diff --git a/R/missings-module.R b/R/missings-module.R
index 003a35f4..8b9c1f50 100644
--- a/R/missings-module.R
+++ b/R/missings-module.R
@@ -172,7 +172,7 @@ data_missings_server <- function(id, data, max_level = 20, ...) {
out <- do.call(compare_missings, modifyList(parameters, list(data = df_tbl)))
})
}, error = function(err) {
- showNotification(paste0("Error: ", err), type = "error")
+ showNotification(paste0("Error: ", err), type = "err")
})
if (is.null(input$missings_var) ||
diff --git a/R/plot_likert.R b/R/plot_likert.R
deleted file mode 100644
index 625bb844..00000000
--- a/R/plot_likert.R
+++ /dev/null
@@ -1,50 +0,0 @@
-#' Nice horizontal bar plot centred on the central category
-#'
-#' @returns ggplot2 object
-#' @export
-#'
-#' @name data-plots
-#'
-#' @examples
-#' mtcars |> plot_likert(pri = "carb", sec = "cyl")
-#' mtcars |> plot_likert(pri = "carb", sec = "cyl", ter="am")
-#' mtcars |> plot_likert(pri = "cyl",color.palette="Blues")
-#' mtcars |> plot_likert(pri = "carb", sec = NULL,color.palette="Magma")
-#' mtcars |> plot_likert(pri = "carb", sec = c("cyl","am"),color.palette="Viridis")
-plot_likert <- function(data,
- pri,
- sec = NULL,
- ter = NULL,
- color.palette = "viridis") {
- if (!is.null(ter)) {
- ds <- split(data, data[ter])
- } else {
- ds <- list(data)
- }
- out <- lapply(ds, \(.x) {
- .x[c(pri, sec)] |>
- # na.omit() |>
- plot_likert_single(color.palette = color.palette)
- })
-
- wrap_plot_list(out, title = glue::glue(i18n$t("Grouped by {get_label(data,ter)}")))
-}
-
-
-plot_likert_single <- function(data, color.palette = "viridis") {
- ggstats::gglikert(data = data) +
- scale_fill_generate(palette=color.palette)+
- ggplot2::theme(
- # legend.position = "none",
- # panel.grid.major = element_blank(),
- # panel.grid.minor = element_blank(),
- # axis.text.y = ggplot2::element_blank(),
- # axis.title.y = ggplot2::element_blank(),
- text = ggplot2::element_text(size = 12)
- # axis.text = ggplot2::element_blank(),
- # plot.title = element_blank(),
- # panel.background = ggplot2::element_rect(fill = "white"),
- # plot.background = ggplot2::element_rect(fill = "white"),
- # panel.border = ggplot2::element_blank()
- )
-}
diff --git a/R/redcap_read_shiny_module.R b/R/redcap_read_shiny_module.R
index 810cab0c..a74c599a 100644
--- a/R/redcap_read_shiny_module.R
+++ b/R/redcap_read_shiny_module.R
@@ -11,7 +11,10 @@ m_redcap_readUI <- function(id, title = TRUE, url = NULL) {
ns <- shiny::NS(id)
if (isTRUE(title)) {
- title <- shiny::tags$h4(i18n$t("Import data from REDCap"), class = "redcap-module-title")
+ title <- shiny::tags$h4(
+ i18n$t("Import data from REDCap"),
+ class = "redcap-module-title"
+ )
}
server_ui <- shiny::tagList(
@@ -22,11 +25,7 @@ m_redcap_readUI <- function(id, title = TRUE, url = NULL) {
value = if_not_missing(url, "https://redcap.your.institution/"),
width = "100%"
),
- shiny::helpText(
- i18n$t(
- "Format should be either 'https://redcap.your.institution/' or 'https://your.institution/redcap/'"
- )
- ),
+ shiny::helpText(i18n$t("Format should be either 'https://redcap.your.institution/' or 'https://your.institution/redcap/'")),
shiny::br(),
shiny::br(),
shiny::passwordInput(
@@ -35,9 +34,7 @@ m_redcap_readUI <- function(id, title = TRUE, url = NULL) {
value = "",
width = "100%"
),
- shiny::helpText(i18n$t(
- "The token is a string of 32 numbers and letters."
- )),
+ shiny::helpText(i18n$t("The token is a string of 32 numbers and letters.")),
shiny::br(),
shiny::br(),
shiny::actionButton(
@@ -54,10 +51,7 @@ m_redcap_readUI <- function(id, title = TRUE, url = NULL) {
shinyWidgets::alert(
id = ns("connect-result"),
status = "info",
- tags$p(
- phosphoricons::ph("info", weight = "bold"),
- i18n$t("Please fill in web address and API token, then press 'Connect'.")
- )
+ tags$p(phosphoricons::ph("info", weight = "bold"), i18n$t("Please fill in web address and API token, then press 'Connect'."))
),
dismissible = TRUE
),
@@ -70,18 +64,14 @@ m_redcap_readUI <- function(id, title = TRUE, url = NULL) {
shiny::uiOutput(outputId = ns("arms")),
shiny::textInput(
inputId = ns("filter"),
- label = i18n$t("Optional filter logic (e.g., [gender] = 'female')")
- ),
- uiOutput(ns("filter_feedback"))
+ label = i18n$t("Optional filter logic (e.g., [gender] = 'female')"
+ ))
)
params_ui <-
shiny::tagList(
shiny::tags$h4(i18n$t("Data import parameters")),
shiny::tags$div(
- ####
- #### All below was deactivated to deactivate filtering
- ####
style = htmltools::css(
display = "grid",
gridTemplateColumns = "1fr 50px",
@@ -106,11 +96,7 @@ m_redcap_readUI <- function(id, title = TRUE, url = NULL) {
)
)
),
- shiny::helpText(
- i18n$t(
- "Select fields/variables to import and click the funnel to apply optional filters"
- )
- ),
+ shiny::helpText(i18n$t("Select fields/variables to import and click the funnel to apply optional filters")),
shiny::tags$br(),
shiny::tags$br(),
shiny::uiOutput(outputId = ns("data_type")),
@@ -129,10 +115,7 @@ m_redcap_readUI <- function(id, title = TRUE, url = NULL) {
shinyWidgets::alert(
id = ns("retrieved-result"),
status = "info",
- tags$p(
- phosphoricons::ph("info", weight = "bold"),
- "Please specify data to download, then press 'Import'."
- )
+ tags$p(phosphoricons::ph("info", weight = "bold"), "Please specify data to download, then press 'Import'.")
),
dismissible = TRUE
)
@@ -143,7 +126,11 @@ m_redcap_readUI <- function(id, title = TRUE, url = NULL) {
title = title,
server_ui,
# shiny::uiOutput(ns("params_ui")),
- shiny::conditionalPanel(condition = "output.connect_success == true", params_ui, ns = ns),
+ shiny::conditionalPanel(
+ condition = "output.connect_success == true",
+ params_ui,
+ ns = ns
+ ),
shiny::br()
)
}
@@ -168,19 +155,14 @@ m_redcap_readServer <- function(id) {
dd_list = NULL,
data = NULL,
rep_fields = NULL,
- code = NULL,
- filter_valid = NULL
+ code = NULL
)
shiny::observeEvent(list(input$api, input$uri), {
shiny::req(input$api)
shiny::req(input$uri)
if (!is.null(input$uri)) {
- uri <- paste0(ifelse(
- endsWith(input$uri, "/"),
- input$uri,
- paste0(input$uri, "/")
- ), "api/")
+ uri <- paste0(ifelse(endsWith(input$uri, "/"), input$uri, paste0(input$uri, "/")), "api/")
} else {
uri <- input$uri
}
@@ -194,68 +176,75 @@ m_redcap_readServer <- function(id) {
})
- tryCatch({
- shiny::observeEvent(list(input$data_connect), {
- shiny::req(input$api)
- shiny::req(data_rv$uri)
+ tryCatch(
+ {
+ shiny::observeEvent(
+ list(
+ input$data_connect
+ ),
+ {
+ shiny::req(input$api)
+ shiny::req(data_rv$uri)
- parameters <- list(redcap_uri = data_rv$uri, token = input$api)
-
- # browser()
- shiny::withProgress({
- imported <- try(rlang::exec(REDCapR::redcap_metadata_read, !!!parameters),
- silent = TRUE)
- }, message = paste("Connecting to", data_rv$uri))
-
- ## TODO: Simplify error messages
- if (inherits(imported, "try-error") ||
- NROW(imported) < 1 ||
- ifelse(is.list(imported), !isTRUE(imported$success), FALSE)) {
- if (ifelse(is.list(imported),
- !isTRUE(imported$success),
- FALSE)) {
- mssg <- imported$raw_text
- } else {
- mssg <- attr(imported, "condition")$message
- }
-
- datamods:::insert_error(mssg = mssg, selector = "connect")
- data_rv$dd_status <- "error"
- data_rv$dd_list <- NULL
- } else if (isTRUE(imported$success)) {
- data_rv$dd_status <- "success"
-
- data_rv$info <- REDCapR::redcap_project_info_read(redcap_uri = data_rv$uri, token = input$api)$data
-
- datamods:::insert_alert(
- selector = ns("connect"),
- status = "success",
- include_data_alert(
- see_data_text = i18n$t("Click to see data dictionary"),
- dataIdName = "see_dd",
- extra = tags$p(
- tags$b(
- phosphoricons::ph("check", weight = "bold"),
- i18n$t("Connected to server!")
- ),
- glue::glue(
- i18n$t(
- "The {data_rv$info$project_title} project is loaded."
- )
- )
- ),
- btn_show_data = TRUE
+ parameters <- list(
+ redcap_uri = data_rv$uri,
+ token = input$api
)
- )
- data_rv$dd_list <- imported
- }
- }, ignoreInit = TRUE)
- }, warning = function(warn) {
- showNotification(paste0(warn), type = "warning")
- }, error = function(err) {
- showNotification(paste0(err), type = "error")
- })
+ # browser()
+ shiny::withProgress(
+ {
+ imported <- try(rlang::exec(REDCapR::redcap_metadata_read, !!!parameters), silent = TRUE)
+ },
+ message = paste("Connecting to", data_rv$uri)
+ )
+
+ ## TODO: Simplify error messages
+ if (inherits(imported, "try-error") || NROW(imported) < 1 || ifelse(is.list(imported), !isTRUE(imported$success), FALSE)) {
+ if (ifelse(is.list(imported), !isTRUE(imported$success), FALSE)) {
+ mssg <- imported$raw_text
+ } else {
+ mssg <- attr(imported, "condition")$message
+ }
+
+ datamods:::insert_error(mssg = mssg, selector = "connect")
+ data_rv$dd_status <- "error"
+ data_rv$dd_list <- NULL
+ } else if (isTRUE(imported$success)) {
+ data_rv$dd_status <- "success"
+
+ data_rv$info <- REDCapR::redcap_project_info_read(
+ redcap_uri = data_rv$uri,
+ token = input$api
+ )$data
+
+ datamods:::insert_alert(
+ selector = ns("connect"),
+ status = "success",
+ include_data_alert(
+ see_data_text = i18n$t("Click to see data dictionary"),
+ dataIdName = "see_dd",
+ extra = tags$p(
+ tags$b(phosphoricons::ph("check", weight = "bold"), i18n$t("Connected to server!")),
+ glue::glue(i18n$t("The {data_rv$info$project_title} project is loaded."))
+ ),
+ btn_show_data = TRUE
+ )
+ )
+
+ data_rv$dd_list <- imported
+ }
+ },
+ ignoreInit = TRUE
+ )
+ },
+ warning = function(warn) {
+ showNotification(paste0(warn), type = "warning")
+ },
+ error = function(err) {
+ showNotification(paste0(err), type = "err")
+ }
+ )
output$connect_success <- shiny::reactive(identical(data_rv$dd_status, "success"))
shiny::outputOptions(output, "connect_success", suspendWhenHidden = FALSE)
@@ -286,7 +275,10 @@ m_redcap_readServer <- function(id) {
shiny::req(input$api)
shiny::req(data_rv$uri)
- REDCapR::redcap_event_read(redcap_uri = data_rv$uri, token = input$api)$data
+ REDCapR::redcap_event_read(
+ redcap_uri = data_rv$uri,
+ token = input$api
+ )$data
})
output$fields <- shiny::renderUI({
@@ -296,7 +288,7 @@ m_redcap_readServer <- function(id) {
label = i18n$t("Select fields/variables to import:"),
choices = purrr::pluck(data_rv$dd_list, "data") |>
dplyr::select(field_name, form_name) |>
- (\(.x) {
+ (\(.x){
split(.x$field_name, REDCapCAST::as_factor(.x$form_name))
})(),
updateOn = "change",
@@ -329,10 +321,14 @@ m_redcap_readServer <- function(id) {
shiny::req(input$data_type)
## Get repeated field
- data_rv$rep_fields <- data_rv$dd_list$data$field_name[data_rv$dd_list$data$form_name %in% repeated_instruments(uri = data_rv$uri, token = input$api)]
+ data_rv$rep_fields <- data_rv$dd_list$data$field_name[
+ data_rv$dd_list$data$form_name %in% repeated_instruments(
+ uri = data_rv$uri,
+ token = input$api
+ )
+ ]
- if (input$data_type == "long" &&
- isTRUE(any(input$fields %in% data_rv$rep_fields))) {
+ if (input$data_type == "long" && isTRUE(any(input$fields %in% data_rv$rep_fields))) {
vectorSelectInput(
inputId = ns("fill"),
label = i18n$t("Fill missing values?"),
@@ -368,48 +364,12 @@ m_redcap_readServer <- function(id) {
}
})
-
- filter_validation <- reactive({
- val <- trimws(input$filter)
- if (nchar(val) == 0)
- return(NULL)
- validate_redcap_filter(val, purrr::pluck(data_rv$dd_list, "data"))
- })
-
- output$filter_feedback <- renderUI({
- result <- filter_validation()
- if (is.null(result)) {
- data_rv$filter_valid <- NULL
- return(NULL)
- }
-
- if (result$valid) {
- data_rv$filter_valid <- TRUE
- tags$span(style = "color: green;", "\u2713 Filter is valid")
- } else {
- data_rv$filter_valid <- FALSE
-
- tags$span(style = "color: red;",
- "\u2717 ",
- line_break(result$message, lineLength = 30))
- }
- })
-
shiny::observeEvent(input$data_import, {
shiny::req(input$fields)
# browser()
record_id <- purrr::pluck(data_rv$dd_list, "data")[[1]][1]
- if (!is.null(data_rv$filter_valid)) {
- if (isTRUE(data_rv$filter_valid)) {
- filter <- trimws(input$filter)
- } else {
- filter <- ""
- }
- } else {
- filter <- ""
- }
parameters <- list(
uri = data_rv$uri,
@@ -417,8 +377,7 @@ m_redcap_readServer <- function(id) {
fields = unique(c(record_id, input$fields)),
events = input$arms,
raw_or_label = "both",
- filter_logic = filter,
- # filter_logic = "",
+ filter_logic = input$filter,
split_forms = ifelse(
input$data_type == "long" && !is.null(input$data_type),
"none",
@@ -427,48 +386,31 @@ m_redcap_readServer <- function(id) {
)
shiny::withProgress(message = "Downloading REDCap data. Hold on for a moment..", {
- imported <- try({
- rlang::exec(REDCapCAST::read_redcap_tables, !!!parameters)
- # if (nrow(out)==0){
- # stop("No data was exported")
- # } else {
- # out
- # }
- }, # error = function(err) {
- # showNotification(i18n$t("An error was encountered exporting data. Please review data filter."), type = "error")
- # },
- silent = TRUE)
+ imported <- try(rlang::exec(REDCapCAST::read_redcap_tables, !!!parameters), silent = TRUE)
})
- # d <- REDCapCAST::apply_factor_labels(data = imported$survey, meta = data_rv$dd_list$data)
+ parameters_code <- parameters[c("uri", "fields", "events", "raw_or_label", "filter_logic")]
- parameters_code <- parameters[c("uri",
- "fields",
- "events",
- "raw_or_label",
- "filter_logic")]
+ code <- rlang::call2(
+ "easy_redcap",
+ !!!utils::modifyList(
+ parameters_code,
+ list(
+ data_format = ifelse(
+ input$data_type == "long" && !is.null(input$data_type),
+ "long",
+ "wide"
+ ),
+ project.name = simple_snake(data_rv$info$project_title)
+ )
+ ),
+ .ns = "REDCapCAST"
+ )
- code <- rlang::call2("easy_redcap",
- !!!utils::modifyList(
- parameters_code,
- list(
- data_format = ifelse(
- input$data_type == "long" && !is.null(input$data_type),
- "long",
- "wide"
- ),
- project.name = simple_snake(data_rv$info$project_title)
- )
- ),
- .ns = "REDCapCAST")
-
- if (inherits(imported, "try-error") |
- NROW(imported) == 0 |
- (length(imported) == 1 & !is.list(imported))) {
+ if (inherits(imported, "try-error") || NROW(imported) < 1) {
data_rv$data_status <- "error"
data_rv$data_list <- NULL
- data_rv$data_message <- i18n$t("An empty data set was imported. Please review data filter.")
- data_rv$data <- NULL
+ data_rv$data_message <- imported$raw_text
} else {
data_rv$data_status <- "success"
data_rv$data_message <- i18n$t("Requested data was retrieved!")
@@ -477,11 +419,12 @@ m_redcap_readServer <- function(id) {
## "wide"/"long" without re-importing data
if (parameters$split_form == "all") {
+ # browser()
out <- imported |>
# redcap_wider()
REDCapCAST::redcap_wider()
} else {
- if (identical(input$fill, "yes")) {
+ if (input$fill == "yes") {
## Repeated fields
@@ -499,102 +442,78 @@ m_redcap_readServer <- function(id) {
}
}
- ## Ensure correct factor labels
- ## It is a little hacky and should be included in the read_redcap_tables, but is lost along the way
- out <- REDCapCAST::apply_factor_labels(data = out, meta = data_rv$dd_list$data)
-
-
+ # browser()
in_data_check <- parameters$fields %in% names(out) |
- sapply(names(out), \(.x) any(sapply(
- parameters$fields, \(.y) startsWith(.x, .y)
- )))
+ sapply(names(out), \(.x) any(sapply(parameters$fields, \(.y) startsWith(.x, .y))))
if (!any(in_data_check[-1])) {
data_rv$data_status <- "warning"
- data_rv$data_message <- i18n$t(
- "Data retrieved, but it looks like only the ID was retrieved from the server. Please check with your REDCap administrator that you have required permissions for data access."
- )
+ data_rv$data_message <- i18n$t("Data retrieved, but it looks like only the ID was retrieved from the server. Please check with your REDCap administrator that you have required permissions for data access.")
}
if (!all(in_data_check)) {
data_rv$data_status <- "warning"
- data_rv$data_message <- i18n$t(
- "Data retrieved, but it looks like not all requested fields were retrieved from the server. Please check with your REDCap administrator that you have required permissions for data access."
- )
+ data_rv$data_message <- i18n$t("Data retrieved, but it looks like not all requested fields were retrieved from the server. Please check with your REDCap administrator that you have required permissions for data access.")
}
data_rv$code <- code
- ## Level labels nare lost at this point...
data_rv$data <- out |>
dplyr::select(-dplyr::ends_with("_complete")) |>
# dplyr::select(-dplyr::any_of(record_id)) |>
REDCapCAST::suffix2label()
-
}
})
- shiny::observeEvent(data_rv$data_status, {
- if (identical(data_rv$data_status, "error")) {
- ## The insert error wouldn't work. Inserted through regular.
- # datamods:::insert_error(mssg = data_rv$data_message,
- # selector = ns("retrieved"))
- datamods:::insert_alert(
- selector = ns("retrieved"),
- status = "danger",
- tags$p(
- tags$b(
- phosphoricons::ph("warning", weight = "bold"),
- "Warning!"
- ),
- data_rv$data_message
+ shiny::observeEvent(
+ data_rv$data_status,
+ {
+ # browser()
+ if (identical(data_rv$data_status, "error")) {
+ datamods:::insert_error(mssg = data_rv$data_message, selector = ns("retrieved"))
+ } else if (identical(data_rv$data_status, "success")) {
+ datamods:::insert_alert(
+ selector = ns("retrieved"),
+ status = data_rv$data_status,
+ # tags$p(
+ # tags$b(phosphoricons::ph("check", weight = "bold"), "Success!"),
+ # data_rv$data_message
+ # ),
+ include_data_alert(
+ see_data_text = i18n$t("Click to see the imported data"),
+ dataIdName = "see_data",
+ extra = tags$p(
+ tags$b(phosphoricons::ph("check", weight = "bold"), data_rv$data_message)
+ ),
+ btn_show_data = TRUE
+ )
)
- )
- } else if (identical(data_rv$data_status, "success")) {
- datamods:::insert_alert(
- selector = ns("retrieved"),
- status = data_rv$data_status,
- # tags$p(
- # tags$b(phosphoricons::ph("check", weight = "bold"), "Success!"),
- # data_rv$data_message
- # ),
- include_data_alert(
- see_data_text = i18n$t("Click to see the imported data"),
- dataIdName = "see_data",
- extra = tags$p(tags$b(
- phosphoricons::ph("check", weight = "bold"),
+ } else {
+ datamods:::insert_alert(
+ selector = ns("retrieved"),
+ status = data_rv$data_status,
+ tags$p(
+ tags$b(phosphoricons::ph("warning", weight = "bold"), "Warning!"),
data_rv$data_message
- )),
- btn_show_data = TRUE
+ )
)
- )
- } else {
- datamods:::insert_alert(
- selector = ns("retrieved"),
- status = data_rv$data_status,
- tags$p(
- tags$b(
- phosphoricons::ph("warning", weight = "bold"),
- "Warning!"
- ),
- data_rv$data_message
- )
- )
+ }
}
- })
-
- return(
- list(
- status = shiny::reactive(data_rv$data_status),
- name = shiny::reactive(data_rv$info$project_title),
- info = shiny::reactive(data_rv$info),
- code = shiny::reactive(data_rv$code),
- data = shiny::reactive(data_rv$data)
- )
)
+
+ return(list(
+ status = shiny::reactive(data_rv$data_status),
+ name = shiny::reactive(data_rv$info$project_title),
+ info = shiny::reactive(data_rv$info),
+ code = shiny::reactive(data_rv$code),
+ data = shiny::reactive(data_rv$data)
+ ))
}
- shiny::moduleServer(id = id, module = module)
+ shiny::moduleServer(
+ id = id,
+ module = module
+ )
}
#' @importFrom htmltools tagList tags
@@ -605,12 +524,14 @@ include_data_alert <- function(dataIdName = "see_data",
extra = NULL,
session = shiny::getDefaultReactiveDomain()) {
if (isTRUE(btn_show_data)) {
- success_message <- tagList(extra,
- tags$br(),
- shiny::actionLink(
- inputId = session$ns(dataIdName),
- label = tagList(phosphoricons::ph("book-open-text"), see_data_text)
- ))
+ success_message <- tagList(
+ extra,
+ tags$br(),
+ shiny::actionLink(
+ inputId = session$ns(dataIdName),
+ label = tagList(phosphoricons::ph("book-open-text"), see_data_text)
+ )
+ )
}
return(success_message)
}
@@ -662,18 +583,20 @@ is_valid_redcap_url <- function(url) {
#' @examples
#' token <- paste(sample(c(1:9, LETTERS[1:6]), 32, TRUE), collapse = "")
#' is_valid_token(token)
-is_valid_token <- function(token,
- pattern_env = NULL,
- nchar = 32) {
+is_valid_token <- function(token, pattern_env = NULL, nchar = 32) {
checkmate::assert_character(token, any.missing = TRUE, len = 1)
if (!is.null(pattern_env)) {
- checkmate::assert_character(pattern_env, any.missing = FALSE, len = 1)
+ checkmate::assert_character(pattern_env,
+ any.missing = FALSE,
+ len = 1
+ )
pattern <- pattern_env
} else {
pattern <- glue::glue("^([0-9A-Fa-f]{})(?:\\n)?$",
- .open = "<",
- .close = ">")
+ .open = "<",
+ .close = ">"
+ )
}
if (is.na(token)) {
@@ -713,15 +636,10 @@ repeated_instruments <- function(uri, token) {
#' @export
#'
drop_empty_event <- function(data, event = "redcap_event_name") {
- generics <- c(
- names(data)[1],
- "redcap_event_name",
- "redcap_repeat_instrument",
- "redcap_repeat_instance"
- )
+ generics <- c(names(data)[1], "redcap_event_name", "redcap_repeat_instrument", "redcap_repeat_instance")
filt <- split(data, data[[event]]) |>
- lapply(\(.x) {
+ lapply(\(.x){
dplyr::select(.x, -tidyselect::all_of(generics)) |>
REDCapCAST::all_na()
}) |>
@@ -731,327 +649,6 @@ drop_empty_event <- function(data, event = "redcap_event_name") {
}
-#' Validate a REDCap server-side filter string against a data dictionary
-#'
-#' Checks that a REDCap filter expression is syntactically correct and
-#' consistent with the field types defined in the project data dictionary.
-#' Plain text without field references is always rejected. Multi-clause
-#' filters joined by \code{AND} or \code{OR} are supported.
-#'
-#' @param filter A single character string containing the filter expression,
-#' e.g. \code{"[age] > 18"} or \code{"[cohabitation] = '1' AND [age] > 18"}.
-#' @param dictionary A data frame representing the REDCap data dictionary in
-#' API export format, as returned by e.g. \code{REDCapCAST::get_redcap_metadata()}.
-#' Must contain at least the columns \code{field_name} and \code{field_type}.
-#' The columns \code{text_validation_type_or_show_slider_number} and
-#' \code{select_choices_or_calculations} are used when present for stricter
-#' type and choice validation.
-#'
-#' @return A named list with two elements:
-#' \describe{
-#' \item{\code{valid}}{Logical. \code{TRUE} if the filter passes all checks.}
-#' \item{\code{message}}{Character. \code{"Filter is valid."} on success, or
-#' a newline-separated string of error messages describing every problem
-#' found.}
-#' }
-#'
-#' @details
-#' Validation rules by field type:
-#' \describe{
-#' \item{\code{calc}}{Numeric fields. Value must be an unquoted number.
-#' All comparison operators (\code{=}, \code{!=}, \code{<}, \code{>},
-#' \code{<=}, \code{>=}) are accepted.}
-#' \item{\code{text} with date validation}{Fields with validation type
-#' \code{date_ymd}, \code{date_dmy}, \code{datetime_*}, etc. Value must be
-#' a quoted date/datetime string in \code{'YYYY-MM-DD'} format. All
-#' comparison operators are accepted.}
-#' \item{\code{text} with time validation}{Fields with validation type
-#' \code{time_hh_mm_ss} or \code{time_mm_ss}. Value must be a quoted time
-#' string, e.g. \code{'14:30:00'}. All comparison operators are accepted.}
-#' \item{\code{radio} / \code{dropdown}}{Categorical fields. Value must be a
-#' quoted choice code (e.g. \code{'1'}) that exists in the field's choice
-#' list. Only \code{=} and \code{!=} are accepted.}
-#' \item{\code{text} (plain)}{Free-text fields. Value must be a quoted string.
-#' Only \code{=} and \code{!=} are accepted.}
-#' }
-#'
-#' @examples
-#' \dontrun{
-#' dict <- REDCapCAST::get_redcap_metadata(
-#' uri = "https://redcap.example.com/api/",
-#' token = Sys.getenv("REDCAP_TOKEN")
-#' )
-#'
-#' validate_redcap_filter("[age] > 18", dict)
-#' #> list(valid = TRUE, message = "Filter is valid.")
-#'
-#' validate_redcap_filter("only plain text", dict)
-#' #> list(valid = FALSE, message = "Filter must contain at least one field ...")
-#'
-#' validate_redcap_filter("[cohabitation] = '1' AND [age] > 18", dict)
-#' #> list(valid = TRUE, message = "Filter is valid.")
-#' }
-#'
-#' @export
-# REDCap filter validation based on data dictionary
-#
-# REDCap filter format: [field_name] operator value
-# Example: [age] > 18
-# [cohabitation] = '1'
-# [inclusion] > '2020-01-01'
-#
-# Supported field types and their allowed operators/value formats:
-# text (no validation) -> string values, = != operators only
-# text (date_ymd/date_dmy) -> quoted date strings, all comparison operators
-# text (time_hh_mm_ss) -> quoted time strings, all comparison operators
-# text (datetime_*) -> quoted datetime strings, all comparison operators
-# text (autocomplete) -> string values, = != operators only
-# calc -> numeric values, all comparison operators
-# radio/dropdown -> quoted numeric codes, = != operators only
-
-validate_redcap_filter <- function(filter, dictionary) {
- # --- Input checks ---
- if (!is.character(filter) ||
- length(filter) != 1 || nchar(trimws(filter)) == 0) {
- return(list(valid = FALSE, message = "Filter must be a non-empty string."))
- }
-
- if (!grepl("\\[.+\\]", filter)) {
- return(
- list(valid = FALSE, message = "Filter must contain at least one field reference in [brackets]. Plain text is not accepted.")
- )
- }
-
- # --- Column names (API export format) ---
- col_field <- "field_name"
- col_type <- "field_type"
- col_val_type <- "text_validation_type_or_show_slider_number"
- col_choices <- "select_choices_or_calculations"
-
- missing_cols <- setdiff(c(col_field, col_type), names(dictionary))
- if (length(missing_cols) > 0) {
- stop("Dictionary is missing required columns: ",
- paste(missing_cols, collapse = ", "))
- }
-
- # --- Build lookup index once for O(1) field access ---
- field_idx <- setNames(seq_len(nrow(dictionary)), dictionary[[col_field]])
- has_val_type <- col_val_type %in% names(dictionary)
- has_choices <- col_choices %in% names(dictionary)
-
- # --- Classify field types ---
- numeric_types <- c("calc")
- date_validations <- c(
- "date_ymd",
- "date_dmy",
- "datetime_ymd",
- "datetime_dmy",
- "datetime_seconds_ymd",
- "datetime_seconds_dmy"
- )
- time_validations <- c("time_hh_mm_ss", "time_mm_ss")
- categorical_types <- c("radio", "dropdown", "checkbox")
- text_types <- c("text", "autocomplete")
-
- num_ops <- c("=", "!=", "<", ">", "<=", ">=")
- cat_ops <- c("=", "!=")
- text_ops <- c("=", "!=")
-
- # --- Parse filter into clauses ---
- # Split on AND/OR (REDCap uses 'and'/'or' or 'AND'/'OR')
- clauses <- trimws(strsplit(filter, "(?i)\\s+(and|or)\\s+", perl = TRUE)[[1]])
-
- clause_pattern <- "^\\[([^\\]]+)\\]\\s*(=|!=|<=|>=|<|>)\\s*(.+)$"
-
- errors <- character(0)
-
- for (clause in clauses) {
- if (!grepl(clause_pattern, clause, perl = TRUE)) {
- errors <- c(
- errors,
- sprintf(
- "Clause '%s' does not match expected format: [field] operator value",
- clause
- )
- )
- next
- }
-
- parts <- regmatches(clause, regexec(clause_pattern, clause, perl = TRUE))[[1]]
- field <- parts[2]
- operator <- parts[3]
- value <- trimws(parts[4])
-
- # --- Check field exists using pre-built index ---
- row_i <- field_idx[field]
- if (is.na(row_i)) {
- errors <- c(errors, sprintf("Unknown field: [%s]", field))
- next
- }
-
- field_type <- dictionary[[col_type]][row_i]
- val_type <- if (has_val_type)
- dictionary[[col_val_type]][row_i]
- else
- ""
- if (is.na(val_type))
- val_type <- ""
-
- # --- Determine expected value format and allowed operators ---
- if (field_type %in% numeric_types ||
- grepl("^integer$|^number", val_type)) {
- if (!operator %in% num_ops) {
- errors <- c(
- errors,
- sprintf(
- "[%s] is numeric — operator '%s' is not valid. Use one of: %s",
- field,
- operator,
- paste(num_ops, collapse = ", ")
- )
- )
- }
- if (!grepl("^-?[0-9]+(\\.[0-9]+)?$", value)) {
- errors <- c(
- errors,
- sprintf(
- "[%s] is numeric — value '%s' should be an unquoted number (e.g. 18 or 3.5)",
- field,
- value
- )
- )
- }
-
- } else if (val_type %in% date_validations) {
- if (!operator %in% num_ops) {
- errors <- c(
- errors,
- sprintf(
- "[%s] is a date — operator '%s' is not valid. Use one of: %s",
- field,
- operator,
- paste(num_ops, collapse = ", ")
- )
- )
- }
- if (!grepl(
- "^'[0-9]{4}-[0-9]{2}-[0-9]{2}(\\s[0-9]{2}:[0-9]{2}(:[0-9]{2})?)?'$",
- value
- )) {
- errors <- c(
- errors,
- sprintf(
- "[%s] is a date — value '%s' should be a quoted date string, e.g. '2020-01-31'",
- field,
- value
- )
- )
- }
-
- } else if (val_type %in% time_validations) {
- if (!operator %in% num_ops) {
- errors <- c(
- errors,
- sprintf(
- "[%s] is a time — operator '%s' is not valid. Use one of: %s",
- field,
- operator,
- paste(num_ops, collapse = ", ")
- )
- )
- }
- if (!grepl("^'[0-9]{2}:[0-9]{2}(:[0-9]{2})?'$", value)) {
- errors <- c(
- errors,
- sprintf(
- "[%s] is a time — value '%s' should be a quoted time string, e.g. '14:30:00'",
- field,
- value
- )
- )
- }
-
- } else if (field_type %in% categorical_types) {
- if (!operator %in% cat_ops) {
- errors <- c(
- errors,
- sprintf(
- "[%s] is categorical — operator '%s' is not valid. Use one of: %s",
- field,
- operator,
- paste(cat_ops, collapse = ", ")
- )
- )
- }
-
- # Validate value is a known choice code
- choices_raw <- if (has_choices)
- dictionary[[col_choices]][row_i]
- else
- NA
- if (!is.na(choices_raw) && nchar(trimws(choices_raw)) > 0) {
- choice_codes <- trimws(gsub(",.+?(\\||$)", "", gsub(
- "^\\s*", "", strsplit(choices_raw, "\\|")[[1]]
- )))
- value_unquoted <- gsub("^'|'$", "", value)
- if (!value_unquoted %in% choice_codes) {
- errors <- c(
- errors,
- sprintf(
- "[%s] is categorical — '%s' is not a valid choice code. Valid codes: %s",
- field,
- value_unquoted,
- paste(choice_codes, collapse = ", ")
- )
- )
- }
- }
-
- if (!grepl("^'.*'$", value)) {
- errors <- c(errors,
- sprintf(
- "[%s] is categorical — value should be quoted, e.g. '1'",
- field
- ))
- }
-
- } else {
- # Plain text field
- if (!operator %in% text_ops) {
- errors <- c(
- errors,
- sprintf(
- "[%s] is a text field — operator '%s' is not valid. Use one of: %s",
- field,
- operator,
- paste(text_ops, collapse = ", ")
- )
- )
- }
- if (!grepl("^'.*'$", value)) {
- errors <- c(
- errors,
- sprintf(
- "[%s] is a text field — value should be quoted, e.g. 'some text'",
- field
- )
- )
- }
- }
- }
-
- if (length(errors) > 0) {
- return(list(
- valid = FALSE,
- message = paste(errors, collapse = "\n")
- ))
- }
-
- list(valid = TRUE, message = "Filter is valid.")
-}
-
-
-
#' Test app for the redcap_read_shiny_module
#'
#' @rdname redcap_read_shiny_module
@@ -1070,10 +667,16 @@ redcap_demo_app <- function() {
server <- function(input, output, session) {
data_val <- m_redcap_readServer(id = "data")
- output$data <- DT::renderDataTable({
- shiny::req(data_val$data)
- data_val$data()
- }, options = list(scrollX = TRUE, pageLength = 5), )
+ output$data <- DT::renderDataTable(
+ {
+ shiny::req(data_val$data)
+ data_val$data()
+ },
+ options = list(
+ scrollX = TRUE,
+ pageLength = 5
+ ),
+ )
output$code <- shiny::renderPrint({
shiny::req(data_val$code)
data_val$code()
diff --git a/R/regression-module.R b/R/regression-module.R
index d569bd54..e1bd364f 100644
--- a/R/regression-module.R
+++ b/R/regression-module.R
@@ -416,7 +416,7 @@ regression_server <- function(id,
rv$list$regression$models <- model_lists
},
error = function(err) {
- showNotification(paste(i18n$t("Creating regression models failed with the following error:"), err), type = "error")
+ showNotification(paste(i18n$t("Creating regression models failed with the following error:"), err), type = "err")
}
)
}
@@ -481,7 +481,7 @@ regression_server <- function(id,
showNotification(paste0(warn), type = "warning")
},
error = function(err) {
- showNotification(paste(i18n$t("Creating a regression table failed with the following error:"), err), type = "error")
+ showNotification(paste(i18n$t("Creating a regression table failed with the following error:"), err), type = "err")
}
)
}
@@ -559,7 +559,7 @@ regression_server <- function(id,
gg_theme_shiny()
},
error = function(err) {
- showNotification(paste0(err), type = "error")
+ showNotification(paste0(err), type = "err")
}
)
})
@@ -619,7 +619,7 @@ regression_server <- function(id,
# showNotification(paste0(warn), type = "warning")
# },
error = function(err) {
- showNotification(paste(i18n$t("Running model assumptions checks failed with the following error:"), err), type = "error")
+ showNotification(paste(i18n$t("Running model assumptions checks failed with the following error:"), err), type = "err")
}
)
}
@@ -690,7 +690,7 @@ regression_server <- function(id,
out <- patchwork::wrap_plots(ls, ncol = if (length(ls) == 1) 1 else 2)
},
error = function(err) {
- showNotification(err, type = "error")
+ showNotification(err, type = "err")
}
)
diff --git a/R/sysdata.rda b/R/sysdata.rda
index e5718750..4e2466e6 100644
Binary files a/R/sysdata.rda and b/R/sysdata.rda differ
diff --git a/R/update-factor-ext.R b/R/update-factor-ext.R
index 7f3380cd..ad1b263c 100644
--- a/R/update-factor-ext.R
+++ b/R/update-factor-ext.R
@@ -29,26 +29,15 @@ update_factor_ui <- function(id) {
),
fluidRow(
column(
- width = 3,
+ width = 6,
shinyWidgets::virtualSelectInput(
inputId = ns("variable"),
- label = i18n$t("Choose variable:"),
+ label = i18n$t("Factor variable to reorder:"),
choices = NULL,
width = "100%",
zIndex = 50
)
),
- column(
- width = 3,
- class = "d-flex align-items-end",
- actionButton(
- disabled = TRUE,
- inputId = ns("drop_levels"),
- label = tagList(phosphoricons::ph("sort-ascending"), i18n$t("Drop empty")),
- class = "btn-outline-primary mb-3",
- width = "100%"
- )
- ),
column(
width = 3,
class = "d-flex align-items-end",
@@ -81,9 +70,7 @@ update_factor_ui <- function(id) {
class = "float-end",
shinyWidgets::prettyCheckbox(
inputId = ns("new_var"),
- label = i18n$t(
- "Create a new variable; otherwise replaces (Updating labels always creates new variable)"
- ),
+ label = i18n$t("Create a new variable; otherwise replaces (Updating labels always creates new variable)"),
value = FALSE,
status = "primary",
outline = TRUE,
@@ -138,20 +125,6 @@ update_factor_server <- function(id, data_r = reactive(NULL)) {
rv$data_grid <- grid
})
- observeEvent(rv$data_grid, {
- variable <- req(input$variable)
- if (isTRUE(has_empty_levels(rv$data[[variable]]))) {
- # browser()
- updateActionButton(inputId = "drop_levels", disabled = FALSE)
- } else {
- updateActionButton(inputId = "drop_levels", disabled = TRUE)
- }
- })
-
- observeEvent(input$drop_levels, {
- rv$data_grid <- rv$data_grid[!rv$data_grid$Freq==0,]
- })
-
observeEvent(input$sort_levels, {
if (input$sort_levels %% 2 == 1) {
decreasing <- FALSE
@@ -235,7 +208,7 @@ update_factor_server <- function(id, data_r = reactive(NULL)) {
)
data <- tryCatch({
- with_labels(data, {
+ with_labels(data,{
rlang::exec(factor_new_levels_labels,
!!!modifyList(parameters, val = list(data = data)))
})
@@ -245,7 +218,7 @@ update_factor_server <- function(id, data_r = reactive(NULL)) {
"We encountered the following error creating the new factor:",
err
),
- type = "error")
+ type = "err")
})
# browser()
@@ -397,12 +370,3 @@ unique_names <- function(new, existing = character()) {
new_names[-seq_along(existing)]
}
-
-
-has_empty_levels <- function(x) {
- if (is.factor(x)) {
- any(!levels(x) %in% x)
- } else {
- return(FALSE)
- }
-}
diff --git a/SESSION.md b/SESSION.md
index f232def3..0f0edad0 100644
--- a/SESSION.md
+++ b/SESSION.md
@@ -11,11 +11,11 @@
|collate |en_US.UTF-8 |
|ctype |en_US.UTF-8 |
|tz |Europe/Copenhagen |
-|date |2026-03-30 |
+|date |2026-03-24 |
|rstudio |2026.01.1+403 Apple Blossom (desktop) |
|pandoc |3.6.4 @ /opt/homebrew/bin/ (via rmarkdown) |
|quarto |1.7.30 @ /usr/local/bin/quarto |
-|FreesearchR |26.3.5.260330 |
+|FreesearchR |26.3.4.260324 |
--------------------------------------------------------------------------------
@@ -53,7 +53,6 @@
|colorspace |2.1-2 |2025-09-22 |CRAN (R 4.5.0) |
|commonmark |2.0.0 |2025-07-07 |CRAN (R 4.5.0) |
|crayon |1.5.3 |2024-06-20 |CRAN (R 4.5.0) |
-|curl |7.0.0 |2025-08-19 |CRAN (R 4.5.0) |
|data.table |1.18.2.1 |2026-01-27 |CRAN (R 4.5.2) |
|datamods |1.5.3 |2024-10-02 |CRAN (R 4.5.0) |
|datawizard |1.3.0 |2025-10-11 |CRAN (R 4.5.0) |
@@ -84,7 +83,7 @@
|foreach |1.5.2 |2022-02-02 |CRAN (R 4.5.0) |
|foreign |0.8-91 |2026-01-29 |CRAN (R 4.5.2) |
|Formula |1.2-5 |2023-02-24 |CRAN (R 4.5.0) |
-|FreesearchR |26.3.5 |NA |NA |
+|FreesearchR |26.3.4 |NA |NA |
|fs |1.6.7 |2026-03-06 |CRAN (R 4.5.2) |
|gdtools |0.5.0 |2026-02-09 |CRAN (R 4.5.2) |
|generics |0.1.4 |2025-05-09 |CRAN (R 4.5.0) |
@@ -107,7 +106,6 @@
|htmltools |0.5.9 |2025-12-04 |CRAN (R 4.5.2) |
|htmlwidgets |1.6.4 |2023-12-06 |CRAN (R 4.5.0) |
|httpuv |1.6.16 |2025-04-16 |CRAN (R 4.5.0) |
-|httr |1.4.8 |2026-02-13 |CRAN (R 4.5.2) |
|IDEAFilter |0.2.1 |2025-07-29 |CRAN (R 4.5.0) |
|insight |1.4.6 |2026-02-04 |CRAN (R 4.5.2) |
|iterators |1.0.14 |2022-02-05 |CRAN (R 4.5.0) |
@@ -117,7 +115,6 @@
|keyring |1.4.1 |2025-06-15 |CRAN (R 4.5.0) |
|knitr |1.51 |2025-12-20 |CRAN (R 4.5.2) |
|labeling |0.4.3 |2023-08-29 |CRAN (R 4.5.0) |
-|labelled |2.16.0 |2025-10-22 |CRAN (R 4.5.0) |
|later |1.4.8 |2026-03-05 |CRAN (R 4.5.2) |
|lattice |0.22-7 |2025-04-02 |CRAN (R 4.5.2) |
|lifecycle |1.0.5 |2026-01-08 |CRAN (R 4.5.2) |
@@ -127,6 +124,7 @@
|MASS |7.3-65 |2025-02-28 |CRAN (R 4.5.0) |
|Matrix |1.7-4 |2025-08-28 |CRAN (R 4.5.0) |
|memoise |2.0.1 |2021-11-26 |CRAN (R 4.5.0) |
+|mgcv |1.9-4 |2025-11-07 |CRAN (R 4.5.0) |
|mime |0.13 |2025-03-17 |CRAN (R 4.5.0) |
|minqa |1.2.8 |2024-08-17 |CRAN (R 4.5.0) |
|mvtnorm |1.3-2 |2024-11-04 |CRAN (R 4.5.2) |
@@ -150,6 +148,7 @@
|pkgload |1.5.0 |2026-02-03 |CRAN (R 4.5.2) |
|plyr |1.8.9 |2023-10-02 |CRAN (R 4.5.0) |
|polyclip |1.10-7 |2024-07-23 |CRAN (R 4.5.0) |
+|polylabelr |1.0.0 |2026-01-19 |CRAN (R 4.5.2) |
|pracma |2.4.6 |2025-10-22 |CRAN (R 4.5.0) |
|processx |3.8.6 |2025-02-21 |CRAN (R 4.5.0) |
|promises |1.5.0 |2025-11-01 |CRAN (R 4.5.0) |
diff --git a/app_docker/app.R b/app_docker/app.R
index 31c047b8..c18c6f99 100644
--- a/app_docker/app.R
+++ b/app_docker/app.R
@@ -1,7 +1,7 @@
########
-#### Current file: /var/folders/9l/xbc19wxx0g79jdd2sf_0v291mhwh7f/T//Rtmp1OaGW3/file656737f80bdf.R
+#### Current file: /var/folders/9l/xbc19wxx0g79jdd2sf_0v291mhwh7f/T//Rtmpn21sEQ/filec83e64988776.R
########
i18n_path <- here::here("translations")
@@ -64,7 +64,7 @@ i18n$set_translation_language("en")
#### Current file: /Users/au301842/FreesearchR/R//app_version.R
########
-app_version <- function()'26.3.5'
+app_version <- function()'26.3.4'
########
@@ -84,10 +84,7 @@ app_version <- function()'26.3.5'
#' @examples
#' mtcars |> baseline_table()
#' mtcars |> baseline_table(fun.args = list(by = "gear"))
-baseline_table <- function(data,
- fun.args = NULL,
- fun = gtsummary::tbl_summary,
- vars = NULL) {
+baseline_table <- function(data, fun.args = NULL, fun = gtsummary::tbl_summary, vars = NULL) {
out <- do.call(fun, c(list(data = data), fun.args))
return(out)
}
@@ -113,15 +110,7 @@ baseline_table <- function(data,
#' mtcars |> create_baseline(by.var = "gear", detail_level = "extended",type = list(gtsummary::all_dichotomous() ~ "categorical"),theme="nejm")
#'
#' create_baseline(default_parsing(mtcars), by.var = "am", add.p = FALSE, add.overall = FALSE, theme = "lancet")
-create_baseline <- function(data,
- ...,
- by.var,
- add.p = FALSE,
- add.diff = FALSE,
- add.overall = FALSE,
- theme = c("jama", "lancet", "nejm", "qjecon"),
- detail_level = c("minimal", "extended"),
- drop_empty = FALSE) {
+create_baseline <- function(data, ..., by.var, add.p = FALSE, add.diff=FALSE, add.overall = FALSE, theme = c("jama", "lancet", "nejm", "qjecon"), detail_level = c("minimal", "extended")) {
theme <- match.arg(theme)
detail_level <- match.arg(detail_level)
@@ -148,28 +137,31 @@ create_baseline <- function(data,
if (!any(hasName(args, c("type", "statistic")))) {
if (detail_level == "extended") {
args <-
- modifyList(args, list(
- type = list(
- gtsummary::all_continuous() ~ "continuous2",
- gtsummary::all_dichotomous() ~ "categorical"
- ),
- statistic = list(
- gtsummary::all_continuous() ~ c("{median} ({p25}, {p75})", "{mean} ({sd})", "{min}, {max}")
+ modifyList(
+ args,
+ list(
+ type = list(gtsummary::all_continuous() ~ "continuous2",
+ gtsummary::all_dichotomous() ~ "categorical"),
+ statistic = list(gtsummary::all_continuous() ~ c(
+ "{median} ({p25}, {p75})",
+ "{mean} ({sd})",
+ "{min}, {max}"))
)
- ))
+ )
}
}
- if (isTRUE(drop_empty)) {
- ## Drops empty levels if minimal
- data <- data |> REDCapCAST::fct_drop()
- }
-
- parameters <- list(data = data, fun.args = purrr::list_flatten(list(by = by.var, args)))
+ parameters <- list(
+ data = data,
+ fun.args = purrr::list_flatten(list(by = by.var, args))
+ )
# browser()
- out <- do.call(baseline_table, parameters)
+ out <- do.call(
+ baseline_table,
+ parameters
+ )
if (!is.null(by.var)) {
@@ -1129,7 +1121,7 @@ vectorSelectInput <- function(inputId,
colorSelectInput <- function(inputId,
label,
choices,
- selected = NULL,
+ selected = "",
previews = 4,
...,
placeholder = "") {
@@ -1165,43 +1157,31 @@ colorSelectInput <- function(inputId,
choices_new <- stats::setNames(vals, labels)
- if (is.null(selected) || selected == "") {
- selected <- vals[[1]]
- }
-
shiny::selectizeInput(
inputId = inputId,
label = label,
choices = choices_new,
selected = selected,
...,
- options = list(
+ options = list(
render = I(
"{
- option: function(item, escape) {
- item.data = JSON.parse(item.label);
- return '' +
- '
' + escape(item.data.name) + '
' +
- (item.data.label != '' ? '
' + escape(item.data.label) + '
' : '') +
- '
' + item.data.swatch + '
' +
- '
';
- },
- item: function(item, escape) {
- item.data = JSON.parse(item.label);
- return '' +
- '' + escape(item.data.name) + '' +
- item.data.swatch +
- '
';
- }
- }"
- ),
- onInitialize = I(
- "function() {
- var self = this;
- self.$control_input.prop('readonly', true);
- self.$control_input.css('cursor', 'default');
- self.$control.css('cursor', 'pointer');
- }"
+ option: function(item, escape) {
+ item.data = JSON.parse(item.label);
+ return '' +
+ '
' + escape(item.data.name) + '
' +
+ (item.data.label != '' ? '
' + escape(item.data.label) + '
' : '') +
+ '
' + item.data.swatch + '
' +
+ '
';
+ },
+ item: function(item, escape) {
+ item.data = JSON.parse(item.label);
+ return '' +
+ '' + escape(item.data.name) + '' +
+ item.data.swatch +
+ '
';
+ }
+ }"
)
)
)
@@ -1882,7 +1862,7 @@ cut_variable_server <- function(id, data_r = reactive(NULL)) {
rlang::exec(cut_var, !!!parameters)
},
error = function(err) {
- showNotification(paste("We encountered the following error creating the new factor:", err), type = "error")
+ showNotification(paste("We encountered the following error creating the new factor:", err), type = "err")
}
)
@@ -2488,7 +2468,7 @@ data_visuals_server <- function(id,
shiny::observeEvent(input$act_plot, {
if (NROW(data()) > 0) {
- tryCatch({
+ tryCatch({
parameters <- list(
type = rv$plot.params()[["fun"]],
pri = input$primary,
@@ -2514,7 +2494,7 @@ data_visuals_server <- function(id,
# showNotification(paste0(warn), type = "warning")
# },
error = function(err) {
- showNotification(paste0(err), type = "error")
+ showNotification(paste0(err), type = "err")
})
}
}, ignoreInit = TRUE)
@@ -2737,18 +2717,6 @@ supported_plots <- function() {
secondary.max = 4,
tertiary.type = c("dichotomous"),
secondary.extra = NULL
- ),
- plot_euler = list(
- fun = "plot_likert",
- descr = i18n$t("Likert diagram"),
- note = i18n$t(
- "Plot survey results"
- ),
- primary.type = c("dichotomous", "categorical"),
- secondary.type = c("dichotomous", "categorical"),
- secondary.multi = TRUE,
- tertiary.type = c("dichotomous", "categorical"),
- secondary.extra = NULL
)
)
}
@@ -4335,8 +4303,8 @@ default_parsing <- function(data) {
REDCapCAST::as_factor() |>
REDCapCAST::numchar2fct(numeric.threshold = 8,
character.throshold = 10) |>
- REDCapCAST::as_logical() #|>
- # REDCapCAST::fct_drop()
+ REDCapCAST::as_logical() |>
+ REDCapCAST::fct_drop()
})
# out <-
#
@@ -4946,63 +4914,12 @@ data_types <- function() {
)
}
-non_character_cols <- function(df) {
- if (shiny::is.reactive(df)) df <- df()
- df[, !sapply(df, is.character), drop = FALSE]
-}
-
-apply_idea_filter <- function(filtered_reactive, df_target, env = parent.frame()) {
- # If this ever brakes, the solution will have to be to modify the original filter function
- if (shiny::is.reactive(df_target)) df_target <- df_target()
-
- result <- if (shiny::is.reactive(filtered_reactive)) filtered_reactive() else filtered_reactive
- filter_code <- attr(result, "code")
-
- if (is.null(filter_code)) return(df_target)
-
- deparsed <- paste(deparse(filter_code), collapse = "")
-
- if (is.symbol(filter_code) || !grepl("filter(", deparsed, fixed = TRUE)) {
- return(df_target)
- }
-
- extract_filters <- function(code) {
- filters <- list()
- while (!is.symbol(code) && deparse(code[[1]]) == "%>%") {
- rhs <- code[[3]]
- if (deparse(rhs[[1]]) == "filter") {
- filters <- c(list(rhs), filters)
- }
- code <- code[[2]]
- }
- if (!is.symbol(code) && deparse(code[[1]]) == "filter") {
- filters <- c(list(code), filters)
- }
- filters
- }
-
- tryCatch({
- out <- df_target
- for (f in extract_filters(filter_code)) {
- args <- lapply(rlang::call_args(f), function(arg) {
- rlang::new_quosure(arg, env = env)
- })
- out <- dplyr::filter(out, !!!args)
- }
- out
- },
- error = function(e) {
- warning("Could not apply filter: ", conditionMessage(e))
- df_target
- })
-}
-
########
#### Current file: /Users/au301842/FreesearchR/R//hosted_version.R
########
-hosted_version <- function()'v26.3.5-260330'
+hosted_version <- function()'v26.3.4-260324'
########
@@ -5781,7 +5698,7 @@ import_file_server <- function(id,
# showNotification(warn, type = "warning")
# },
error = function(err) {
- showNotification(err, type = "error")
+ showNotification(err, type = "err")
})
})
@@ -5798,7 +5715,7 @@ import_file_server <- function(id,
minBodyHeight = 250
)
}, error = function(err) {
- showNotification(err, type = "error")
+ showNotification(err, type = "err")
})
})
@@ -5913,7 +5830,7 @@ import_xls <- function(file, sheet, skip, na.strings) {
# showNotification(paste0(warn), type = "warning")
# },
error = function(err) {
- showNotification(paste0(err), type = "error")
+ showNotification(paste0(err), type = "err")
})
}
@@ -5941,7 +5858,7 @@ import_ods <- function(file, sheet, skip, na.strings) {
# showNotification(paste0(warn), type = "warning")
# },
error = function(err) {
- ?showNotification(paste0(err), type = "error")
+ showNotification(paste0(err), type = "err")
})
}
@@ -6784,7 +6701,7 @@ data_missings_server <- function(id, data, max_level = 20, ...) {
out <- do.call(compare_missings, modifyList(parameters, list(data = df_tbl)))
})
}, error = function(err) {
- showNotification(paste0("Error: ", err), type = "error")
+ showNotification(paste0("Error: ", err), type = "err")
})
if (is.null(input$missings_var) ||
@@ -7489,62 +7406,6 @@ vertical_stacked_bars <- function(data,
}
-########
-#### Current file: /Users/au301842/FreesearchR/R//plot_likert.R
-########
-
-#' Nice horizontal bar plot centred on the central category
-#'
-#' @returns ggplot2 object
-#' @export
-#'
-#' @name data-plots
-#'
-#' @examples
-#' mtcars |> plot_likert(pri = "carb", sec = "cyl")
-#' mtcars |> plot_likert(pri = "carb", sec = "cyl", ter="am")
-#' mtcars |> plot_likert(pri = "cyl",color.palette="Blues")
-#' mtcars |> plot_likert(pri = "carb", sec = NULL,color.palette="Magma")
-#' mtcars |> plot_likert(pri = "carb", sec = c("cyl","am"),color.palette="Viridis")
-plot_likert <- function(data,
- pri,
- sec = NULL,
- ter = NULL,
- color.palette = "viridis") {
- if (!is.null(ter)) {
- ds <- split(data, data[ter])
- } else {
- ds <- list(data)
- }
- out <- lapply(ds, \(.x) {
- .x[c(pri, sec)] |>
- # na.omit() |>
- plot_likert_single(color.palette = color.palette)
- })
-
- wrap_plot_list(out, title = glue::glue(i18n$t("Grouped by {get_label(data,ter)}")))
-}
-
-
-plot_likert_single <- function(data, color.palette = "viridis") {
- ggstats::gglikert(data = data) +
- scale_fill_generate(palette=color.palette)+
- ggplot2::theme(
- # legend.position = "none",
- # panel.grid.major = element_blank(),
- # panel.grid.minor = element_blank(),
- # axis.text.y = ggplot2::element_blank(),
- # axis.title.y = ggplot2::element_blank(),
- text = ggplot2::element_text(size = 12)
- # axis.text = ggplot2::element_blank(),
- # plot.title = element_blank(),
- # panel.background = ggplot2::element_rect(fill = "white"),
- # plot.background = ggplot2::element_rect(fill = "white"),
- # panel.border = ggplot2::element_blank()
- )
-}
-
-
########
#### Current file: /Users/au301842/FreesearchR/R//plot_ridge.R
########
@@ -8129,7 +7990,10 @@ m_redcap_readUI <- function(id, title = TRUE, url = NULL) {
ns <- shiny::NS(id)
if (isTRUE(title)) {
- title <- shiny::tags$h4(i18n$t("Import data from REDCap"), class = "redcap-module-title")
+ title <- shiny::tags$h4(
+ i18n$t("Import data from REDCap"),
+ class = "redcap-module-title"
+ )
}
server_ui <- shiny::tagList(
@@ -8140,11 +8004,7 @@ m_redcap_readUI <- function(id, title = TRUE, url = NULL) {
value = if_not_missing(url, "https://redcap.your.institution/"),
width = "100%"
),
- shiny::helpText(
- i18n$t(
- "Format should be either 'https://redcap.your.institution/' or 'https://your.institution/redcap/'"
- )
- ),
+ shiny::helpText(i18n$t("Format should be either 'https://redcap.your.institution/' or 'https://your.institution/redcap/'")),
shiny::br(),
shiny::br(),
shiny::passwordInput(
@@ -8153,9 +8013,7 @@ m_redcap_readUI <- function(id, title = TRUE, url = NULL) {
value = "",
width = "100%"
),
- shiny::helpText(i18n$t(
- "The token is a string of 32 numbers and letters."
- )),
+ shiny::helpText(i18n$t("The token is a string of 32 numbers and letters.")),
shiny::br(),
shiny::br(),
shiny::actionButton(
@@ -8172,10 +8030,7 @@ m_redcap_readUI <- function(id, title = TRUE, url = NULL) {
shinyWidgets::alert(
id = ns("connect-result"),
status = "info",
- tags$p(
- phosphoricons::ph("info", weight = "bold"),
- i18n$t("Please fill in web address and API token, then press 'Connect'.")
- )
+ tags$p(phosphoricons::ph("info", weight = "bold"), i18n$t("Please fill in web address and API token, then press 'Connect'."))
),
dismissible = TRUE
),
@@ -8188,18 +8043,14 @@ m_redcap_readUI <- function(id, title = TRUE, url = NULL) {
shiny::uiOutput(outputId = ns("arms")),
shiny::textInput(
inputId = ns("filter"),
- label = i18n$t("Optional filter logic (e.g., [gender] = 'female')")
- ),
- uiOutput(ns("filter_feedback"))
+ label = i18n$t("Optional filter logic (e.g., [gender] = 'female')"
+ ))
)
params_ui <-
shiny::tagList(
shiny::tags$h4(i18n$t("Data import parameters")),
shiny::tags$div(
- ####
- #### All below was deactivated to deactivate filtering
- ####
style = htmltools::css(
display = "grid",
gridTemplateColumns = "1fr 50px",
@@ -8224,11 +8075,7 @@ m_redcap_readUI <- function(id, title = TRUE, url = NULL) {
)
)
),
- shiny::helpText(
- i18n$t(
- "Select fields/variables to import and click the funnel to apply optional filters"
- )
- ),
+ shiny::helpText(i18n$t("Select fields/variables to import and click the funnel to apply optional filters")),
shiny::tags$br(),
shiny::tags$br(),
shiny::uiOutput(outputId = ns("data_type")),
@@ -8247,10 +8094,7 @@ m_redcap_readUI <- function(id, title = TRUE, url = NULL) {
shinyWidgets::alert(
id = ns("retrieved-result"),
status = "info",
- tags$p(
- phosphoricons::ph("info", weight = "bold"),
- "Please specify data to download, then press 'Import'."
- )
+ tags$p(phosphoricons::ph("info", weight = "bold"), "Please specify data to download, then press 'Import'.")
),
dismissible = TRUE
)
@@ -8261,7 +8105,11 @@ m_redcap_readUI <- function(id, title = TRUE, url = NULL) {
title = title,
server_ui,
# shiny::uiOutput(ns("params_ui")),
- shiny::conditionalPanel(condition = "output.connect_success == true", params_ui, ns = ns),
+ shiny::conditionalPanel(
+ condition = "output.connect_success == true",
+ params_ui,
+ ns = ns
+ ),
shiny::br()
)
}
@@ -8286,19 +8134,14 @@ m_redcap_readServer <- function(id) {
dd_list = NULL,
data = NULL,
rep_fields = NULL,
- code = NULL,
- filter_valid = NULL
+ code = NULL
)
shiny::observeEvent(list(input$api, input$uri), {
shiny::req(input$api)
shiny::req(input$uri)
if (!is.null(input$uri)) {
- uri <- paste0(ifelse(
- endsWith(input$uri, "/"),
- input$uri,
- paste0(input$uri, "/")
- ), "api/")
+ uri <- paste0(ifelse(endsWith(input$uri, "/"), input$uri, paste0(input$uri, "/")), "api/")
} else {
uri <- input$uri
}
@@ -8312,68 +8155,75 @@ m_redcap_readServer <- function(id) {
})
- tryCatch({
- shiny::observeEvent(list(input$data_connect), {
- shiny::req(input$api)
- shiny::req(data_rv$uri)
+ tryCatch(
+ {
+ shiny::observeEvent(
+ list(
+ input$data_connect
+ ),
+ {
+ shiny::req(input$api)
+ shiny::req(data_rv$uri)
- parameters <- list(redcap_uri = data_rv$uri, token = input$api)
-
- # browser()
- shiny::withProgress({
- imported <- try(rlang::exec(REDCapR::redcap_metadata_read, !!!parameters),
- silent = TRUE)
- }, message = paste("Connecting to", data_rv$uri))
-
- ## TODO: Simplify error messages
- if (inherits(imported, "try-error") ||
- NROW(imported) < 1 ||
- ifelse(is.list(imported), !isTRUE(imported$success), FALSE)) {
- if (ifelse(is.list(imported),
- !isTRUE(imported$success),
- FALSE)) {
- mssg <- imported$raw_text
- } else {
- mssg <- attr(imported, "condition")$message
- }
-
- datamods:::insert_error(mssg = mssg, selector = "connect")
- data_rv$dd_status <- "error"
- data_rv$dd_list <- NULL
- } else if (isTRUE(imported$success)) {
- data_rv$dd_status <- "success"
-
- data_rv$info <- REDCapR::redcap_project_info_read(redcap_uri = data_rv$uri, token = input$api)$data
-
- datamods:::insert_alert(
- selector = ns("connect"),
- status = "success",
- include_data_alert(
- see_data_text = i18n$t("Click to see data dictionary"),
- dataIdName = "see_dd",
- extra = tags$p(
- tags$b(
- phosphoricons::ph("check", weight = "bold"),
- i18n$t("Connected to server!")
- ),
- glue::glue(
- i18n$t(
- "The {data_rv$info$project_title} project is loaded."
- )
- )
- ),
- btn_show_data = TRUE
+ parameters <- list(
+ redcap_uri = data_rv$uri,
+ token = input$api
)
- )
- data_rv$dd_list <- imported
- }
- }, ignoreInit = TRUE)
- }, warning = function(warn) {
- showNotification(paste0(warn), type = "warning")
- }, error = function(err) {
- showNotification(paste0(err), type = "error")
- })
+ # browser()
+ shiny::withProgress(
+ {
+ imported <- try(rlang::exec(REDCapR::redcap_metadata_read, !!!parameters), silent = TRUE)
+ },
+ message = paste("Connecting to", data_rv$uri)
+ )
+
+ ## TODO: Simplify error messages
+ if (inherits(imported, "try-error") || NROW(imported) < 1 || ifelse(is.list(imported), !isTRUE(imported$success), FALSE)) {
+ if (ifelse(is.list(imported), !isTRUE(imported$success), FALSE)) {
+ mssg <- imported$raw_text
+ } else {
+ mssg <- attr(imported, "condition")$message
+ }
+
+ datamods:::insert_error(mssg = mssg, selector = "connect")
+ data_rv$dd_status <- "error"
+ data_rv$dd_list <- NULL
+ } else if (isTRUE(imported$success)) {
+ data_rv$dd_status <- "success"
+
+ data_rv$info <- REDCapR::redcap_project_info_read(
+ redcap_uri = data_rv$uri,
+ token = input$api
+ )$data
+
+ datamods:::insert_alert(
+ selector = ns("connect"),
+ status = "success",
+ include_data_alert(
+ see_data_text = i18n$t("Click to see data dictionary"),
+ dataIdName = "see_dd",
+ extra = tags$p(
+ tags$b(phosphoricons::ph("check", weight = "bold"), i18n$t("Connected to server!")),
+ glue::glue(i18n$t("The {data_rv$info$project_title} project is loaded."))
+ ),
+ btn_show_data = TRUE
+ )
+ )
+
+ data_rv$dd_list <- imported
+ }
+ },
+ ignoreInit = TRUE
+ )
+ },
+ warning = function(warn) {
+ showNotification(paste0(warn), type = "warning")
+ },
+ error = function(err) {
+ showNotification(paste0(err), type = "err")
+ }
+ )
output$connect_success <- shiny::reactive(identical(data_rv$dd_status, "success"))
shiny::outputOptions(output, "connect_success", suspendWhenHidden = FALSE)
@@ -8404,7 +8254,10 @@ m_redcap_readServer <- function(id) {
shiny::req(input$api)
shiny::req(data_rv$uri)
- REDCapR::redcap_event_read(redcap_uri = data_rv$uri, token = input$api)$data
+ REDCapR::redcap_event_read(
+ redcap_uri = data_rv$uri,
+ token = input$api
+ )$data
})
output$fields <- shiny::renderUI({
@@ -8414,7 +8267,7 @@ m_redcap_readServer <- function(id) {
label = i18n$t("Select fields/variables to import:"),
choices = purrr::pluck(data_rv$dd_list, "data") |>
dplyr::select(field_name, form_name) |>
- (\(.x) {
+ (\(.x){
split(.x$field_name, REDCapCAST::as_factor(.x$form_name))
})(),
updateOn = "change",
@@ -8447,10 +8300,14 @@ m_redcap_readServer <- function(id) {
shiny::req(input$data_type)
## Get repeated field
- data_rv$rep_fields <- data_rv$dd_list$data$field_name[data_rv$dd_list$data$form_name %in% repeated_instruments(uri = data_rv$uri, token = input$api)]
+ data_rv$rep_fields <- data_rv$dd_list$data$field_name[
+ data_rv$dd_list$data$form_name %in% repeated_instruments(
+ uri = data_rv$uri,
+ token = input$api
+ )
+ ]
- if (input$data_type == "long" &&
- isTRUE(any(input$fields %in% data_rv$rep_fields))) {
+ if (input$data_type == "long" && isTRUE(any(input$fields %in% data_rv$rep_fields))) {
vectorSelectInput(
inputId = ns("fill"),
label = i18n$t("Fill missing values?"),
@@ -8486,48 +8343,12 @@ m_redcap_readServer <- function(id) {
}
})
-
- filter_validation <- reactive({
- val <- trimws(input$filter)
- if (nchar(val) == 0)
- return(NULL)
- validate_redcap_filter(val, purrr::pluck(data_rv$dd_list, "data"))
- })
-
- output$filter_feedback <- renderUI({
- result <- filter_validation()
- if (is.null(result)) {
- data_rv$filter_valid <- NULL
- return(NULL)
- }
-
- if (result$valid) {
- data_rv$filter_valid <- TRUE
- tags$span(style = "color: green;", "\u2713 Filter is valid")
- } else {
- data_rv$filter_valid <- FALSE
-
- tags$span(style = "color: red;",
- "\u2717 ",
- line_break(result$message, lineLength = 30))
- }
- })
-
shiny::observeEvent(input$data_import, {
shiny::req(input$fields)
# browser()
record_id <- purrr::pluck(data_rv$dd_list, "data")[[1]][1]
- if (!is.null(data_rv$filter_valid)) {
- if (isTRUE(data_rv$filter_valid)) {
- filter <- trimws(input$filter)
- } else {
- filter <- ""
- }
- } else {
- filter <- ""
- }
parameters <- list(
uri = data_rv$uri,
@@ -8535,8 +8356,7 @@ m_redcap_readServer <- function(id) {
fields = unique(c(record_id, input$fields)),
events = input$arms,
raw_or_label = "both",
- filter_logic = filter,
- # filter_logic = "",
+ filter_logic = input$filter,
split_forms = ifelse(
input$data_type == "long" && !is.null(input$data_type),
"none",
@@ -8545,48 +8365,31 @@ m_redcap_readServer <- function(id) {
)
shiny::withProgress(message = "Downloading REDCap data. Hold on for a moment..", {
- imported <- try({
- rlang::exec(REDCapCAST::read_redcap_tables, !!!parameters)
- # if (nrow(out)==0){
- # stop("No data was exported")
- # } else {
- # out
- # }
- }, # error = function(err) {
- # showNotification(i18n$t("An error was encountered exporting data. Please review data filter."), type = "error")
- # },
- silent = TRUE)
+ imported <- try(rlang::exec(REDCapCAST::read_redcap_tables, !!!parameters), silent = TRUE)
})
- # d <- REDCapCAST::apply_factor_labels(data = imported$survey, meta = data_rv$dd_list$data)
+ parameters_code <- parameters[c("uri", "fields", "events", "raw_or_label", "filter_logic")]
- parameters_code <- parameters[c("uri",
- "fields",
- "events",
- "raw_or_label",
- "filter_logic")]
+ code <- rlang::call2(
+ "easy_redcap",
+ !!!utils::modifyList(
+ parameters_code,
+ list(
+ data_format = ifelse(
+ input$data_type == "long" && !is.null(input$data_type),
+ "long",
+ "wide"
+ ),
+ project.name = simple_snake(data_rv$info$project_title)
+ )
+ ),
+ .ns = "REDCapCAST"
+ )
- code <- rlang::call2("easy_redcap",
- !!!utils::modifyList(
- parameters_code,
- list(
- data_format = ifelse(
- input$data_type == "long" && !is.null(input$data_type),
- "long",
- "wide"
- ),
- project.name = simple_snake(data_rv$info$project_title)
- )
- ),
- .ns = "REDCapCAST")
-
- if (inherits(imported, "try-error") |
- NROW(imported) == 0 |
- (length(imported) == 1 & !is.list(imported))) {
+ if (inherits(imported, "try-error") || NROW(imported) < 1) {
data_rv$data_status <- "error"
data_rv$data_list <- NULL
- data_rv$data_message <- i18n$t("An empty data set was imported. Please review data filter.")
- data_rv$data <- NULL
+ data_rv$data_message <- imported$raw_text
} else {
data_rv$data_status <- "success"
data_rv$data_message <- i18n$t("Requested data was retrieved!")
@@ -8595,11 +8398,12 @@ m_redcap_readServer <- function(id) {
## "wide"/"long" without re-importing data
if (parameters$split_form == "all") {
+ # browser()
out <- imported |>
# redcap_wider()
REDCapCAST::redcap_wider()
} else {
- if (identical(input$fill, "yes")) {
+ if (input$fill == "yes") {
## Repeated fields
@@ -8617,102 +8421,78 @@ m_redcap_readServer <- function(id) {
}
}
- ## Ensure correct factor labels
- ## It is a little hacky and should be included in the read_redcap_tables, but is lost along the way
- out <- REDCapCAST::apply_factor_labels(data = out, meta = data_rv$dd_list$data)
-
-
+ # browser()
in_data_check <- parameters$fields %in% names(out) |
- sapply(names(out), \(.x) any(sapply(
- parameters$fields, \(.y) startsWith(.x, .y)
- )))
+ sapply(names(out), \(.x) any(sapply(parameters$fields, \(.y) startsWith(.x, .y))))
if (!any(in_data_check[-1])) {
data_rv$data_status <- "warning"
- data_rv$data_message <- i18n$t(
- "Data retrieved, but it looks like only the ID was retrieved from the server. Please check with your REDCap administrator that you have required permissions for data access."
- )
+ data_rv$data_message <- i18n$t("Data retrieved, but it looks like only the ID was retrieved from the server. Please check with your REDCap administrator that you have required permissions for data access.")
}
if (!all(in_data_check)) {
data_rv$data_status <- "warning"
- data_rv$data_message <- i18n$t(
- "Data retrieved, but it looks like not all requested fields were retrieved from the server. Please check with your REDCap administrator that you have required permissions for data access."
- )
+ data_rv$data_message <- i18n$t("Data retrieved, but it looks like not all requested fields were retrieved from the server. Please check with your REDCap administrator that you have required permissions for data access.")
}
data_rv$code <- code
- ## Level labels nare lost at this point...
data_rv$data <- out |>
dplyr::select(-dplyr::ends_with("_complete")) |>
# dplyr::select(-dplyr::any_of(record_id)) |>
REDCapCAST::suffix2label()
-
}
})
- shiny::observeEvent(data_rv$data_status, {
- if (identical(data_rv$data_status, "error")) {
- ## The insert error wouldn't work. Inserted through regular.
- # datamods:::insert_error(mssg = data_rv$data_message,
- # selector = ns("retrieved"))
- datamods:::insert_alert(
- selector = ns("retrieved"),
- status = "danger",
- tags$p(
- tags$b(
- phosphoricons::ph("warning", weight = "bold"),
- "Warning!"
- ),
- data_rv$data_message
+ shiny::observeEvent(
+ data_rv$data_status,
+ {
+ # browser()
+ if (identical(data_rv$data_status, "error")) {
+ datamods:::insert_error(mssg = data_rv$data_message, selector = ns("retrieved"))
+ } else if (identical(data_rv$data_status, "success")) {
+ datamods:::insert_alert(
+ selector = ns("retrieved"),
+ status = data_rv$data_status,
+ # tags$p(
+ # tags$b(phosphoricons::ph("check", weight = "bold"), "Success!"),
+ # data_rv$data_message
+ # ),
+ include_data_alert(
+ see_data_text = i18n$t("Click to see the imported data"),
+ dataIdName = "see_data",
+ extra = tags$p(
+ tags$b(phosphoricons::ph("check", weight = "bold"), data_rv$data_message)
+ ),
+ btn_show_data = TRUE
+ )
)
- )
- } else if (identical(data_rv$data_status, "success")) {
- datamods:::insert_alert(
- selector = ns("retrieved"),
- status = data_rv$data_status,
- # tags$p(
- # tags$b(phosphoricons::ph("check", weight = "bold"), "Success!"),
- # data_rv$data_message
- # ),
- include_data_alert(
- see_data_text = i18n$t("Click to see the imported data"),
- dataIdName = "see_data",
- extra = tags$p(tags$b(
- phosphoricons::ph("check", weight = "bold"),
+ } else {
+ datamods:::insert_alert(
+ selector = ns("retrieved"),
+ status = data_rv$data_status,
+ tags$p(
+ tags$b(phosphoricons::ph("warning", weight = "bold"), "Warning!"),
data_rv$data_message
- )),
- btn_show_data = TRUE
+ )
)
- )
- } else {
- datamods:::insert_alert(
- selector = ns("retrieved"),
- status = data_rv$data_status,
- tags$p(
- tags$b(
- phosphoricons::ph("warning", weight = "bold"),
- "Warning!"
- ),
- data_rv$data_message
- )
- )
+ }
}
- })
-
- return(
- list(
- status = shiny::reactive(data_rv$data_status),
- name = shiny::reactive(data_rv$info$project_title),
- info = shiny::reactive(data_rv$info),
- code = shiny::reactive(data_rv$code),
- data = shiny::reactive(data_rv$data)
- )
)
+
+ return(list(
+ status = shiny::reactive(data_rv$data_status),
+ name = shiny::reactive(data_rv$info$project_title),
+ info = shiny::reactive(data_rv$info),
+ code = shiny::reactive(data_rv$code),
+ data = shiny::reactive(data_rv$data)
+ ))
}
- shiny::moduleServer(id = id, module = module)
+ shiny::moduleServer(
+ id = id,
+ module = module
+ )
}
#' @importFrom htmltools tagList tags
@@ -8723,12 +8503,14 @@ include_data_alert <- function(dataIdName = "see_data",
extra = NULL,
session = shiny::getDefaultReactiveDomain()) {
if (isTRUE(btn_show_data)) {
- success_message <- tagList(extra,
- tags$br(),
- shiny::actionLink(
- inputId = session$ns(dataIdName),
- label = tagList(phosphoricons::ph("book-open-text"), see_data_text)
- ))
+ success_message <- tagList(
+ extra,
+ tags$br(),
+ shiny::actionLink(
+ inputId = session$ns(dataIdName),
+ label = tagList(phosphoricons::ph("book-open-text"), see_data_text)
+ )
+ )
}
return(success_message)
}
@@ -8780,18 +8562,20 @@ is_valid_redcap_url <- function(url) {
#' @examples
#' token <- paste(sample(c(1:9, LETTERS[1:6]), 32, TRUE), collapse = "")
#' is_valid_token(token)
-is_valid_token <- function(token,
- pattern_env = NULL,
- nchar = 32) {
+is_valid_token <- function(token, pattern_env = NULL, nchar = 32) {
checkmate::assert_character(token, any.missing = TRUE, len = 1)
if (!is.null(pattern_env)) {
- checkmate::assert_character(pattern_env, any.missing = FALSE, len = 1)
+ checkmate::assert_character(pattern_env,
+ any.missing = FALSE,
+ len = 1
+ )
pattern <- pattern_env
} else {
pattern <- glue::glue("^([0-9A-Fa-f]{})(?:\\n)?$",
- .open = "<",
- .close = ">")
+ .open = "<",
+ .close = ">"
+ )
}
if (is.na(token)) {
@@ -8831,15 +8615,10 @@ repeated_instruments <- function(uri, token) {
#' @export
#'
drop_empty_event <- function(data, event = "redcap_event_name") {
- generics <- c(
- names(data)[1],
- "redcap_event_name",
- "redcap_repeat_instrument",
- "redcap_repeat_instance"
- )
+ generics <- c(names(data)[1], "redcap_event_name", "redcap_repeat_instrument", "redcap_repeat_instance")
filt <- split(data, data[[event]]) |>
- lapply(\(.x) {
+ lapply(\(.x){
dplyr::select(.x, -tidyselect::all_of(generics)) |>
REDCapCAST::all_na()
}) |>
@@ -8849,327 +8628,6 @@ drop_empty_event <- function(data, event = "redcap_event_name") {
}
-#' Validate a REDCap server-side filter string against a data dictionary
-#'
-#' Checks that a REDCap filter expression is syntactically correct and
-#' consistent with the field types defined in the project data dictionary.
-#' Plain text without field references is always rejected. Multi-clause
-#' filters joined by \code{AND} or \code{OR} are supported.
-#'
-#' @param filter A single character string containing the filter expression,
-#' e.g. \code{"[age] > 18"} or \code{"[cohabitation] = '1' AND [age] > 18"}.
-#' @param dictionary A data frame representing the REDCap data dictionary in
-#' API export format, as returned by e.g. \code{REDCapCAST::get_redcap_metadata()}.
-#' Must contain at least the columns \code{field_name} and \code{field_type}.
-#' The columns \code{text_validation_type_or_show_slider_number} and
-#' \code{select_choices_or_calculations} are used when present for stricter
-#' type and choice validation.
-#'
-#' @return A named list with two elements:
-#' \describe{
-#' \item{\code{valid}}{Logical. \code{TRUE} if the filter passes all checks.}
-#' \item{\code{message}}{Character. \code{"Filter is valid."} on success, or
-#' a newline-separated string of error messages describing every problem
-#' found.}
-#' }
-#'
-#' @details
-#' Validation rules by field type:
-#' \describe{
-#' \item{\code{calc}}{Numeric fields. Value must be an unquoted number.
-#' All comparison operators (\code{=}, \code{!=}, \code{<}, \code{>},
-#' \code{<=}, \code{>=}) are accepted.}
-#' \item{\code{text} with date validation}{Fields with validation type
-#' \code{date_ymd}, \code{date_dmy}, \code{datetime_*}, etc. Value must be
-#' a quoted date/datetime string in \code{'YYYY-MM-DD'} format. All
-#' comparison operators are accepted.}
-#' \item{\code{text} with time validation}{Fields with validation type
-#' \code{time_hh_mm_ss} or \code{time_mm_ss}. Value must be a quoted time
-#' string, e.g. \code{'14:30:00'}. All comparison operators are accepted.}
-#' \item{\code{radio} / \code{dropdown}}{Categorical fields. Value must be a
-#' quoted choice code (e.g. \code{'1'}) that exists in the field's choice
-#' list. Only \code{=} and \code{!=} are accepted.}
-#' \item{\code{text} (plain)}{Free-text fields. Value must be a quoted string.
-#' Only \code{=} and \code{!=} are accepted.}
-#' }
-#'
-#' @examples
-#' \dontrun{
-#' dict <- REDCapCAST::get_redcap_metadata(
-#' uri = "https://redcap.example.com/api/",
-#' token = Sys.getenv("REDCAP_TOKEN")
-#' )
-#'
-#' validate_redcap_filter("[age] > 18", dict)
-#' #> list(valid = TRUE, message = "Filter is valid.")
-#'
-#' validate_redcap_filter("only plain text", dict)
-#' #> list(valid = FALSE, message = "Filter must contain at least one field ...")
-#'
-#' validate_redcap_filter("[cohabitation] = '1' AND [age] > 18", dict)
-#' #> list(valid = TRUE, message = "Filter is valid.")
-#' }
-#'
-#' @export
-# REDCap filter validation based on data dictionary
-#
-# REDCap filter format: [field_name] operator value
-# Example: [age] > 18
-# [cohabitation] = '1'
-# [inclusion] > '2020-01-01'
-#
-# Supported field types and their allowed operators/value formats:
-# text (no validation) -> string values, = != operators only
-# text (date_ymd/date_dmy) -> quoted date strings, all comparison operators
-# text (time_hh_mm_ss) -> quoted time strings, all comparison operators
-# text (datetime_*) -> quoted datetime strings, all comparison operators
-# text (autocomplete) -> string values, = != operators only
-# calc -> numeric values, all comparison operators
-# radio/dropdown -> quoted numeric codes, = != operators only
-
-validate_redcap_filter <- function(filter, dictionary) {
- # --- Input checks ---
- if (!is.character(filter) ||
- length(filter) != 1 || nchar(trimws(filter)) == 0) {
- return(list(valid = FALSE, message = "Filter must be a non-empty string."))
- }
-
- if (!grepl("\\[.+\\]", filter)) {
- return(
- list(valid = FALSE, message = "Filter must contain at least one field reference in [brackets]. Plain text is not accepted.")
- )
- }
-
- # --- Column names (API export format) ---
- col_field <- "field_name"
- col_type <- "field_type"
- col_val_type <- "text_validation_type_or_show_slider_number"
- col_choices <- "select_choices_or_calculations"
-
- missing_cols <- setdiff(c(col_field, col_type), names(dictionary))
- if (length(missing_cols) > 0) {
- stop("Dictionary is missing required columns: ",
- paste(missing_cols, collapse = ", "))
- }
-
- # --- Build lookup index once for O(1) field access ---
- field_idx <- setNames(seq_len(nrow(dictionary)), dictionary[[col_field]])
- has_val_type <- col_val_type %in% names(dictionary)
- has_choices <- col_choices %in% names(dictionary)
-
- # --- Classify field types ---
- numeric_types <- c("calc")
- date_validations <- c(
- "date_ymd",
- "date_dmy",
- "datetime_ymd",
- "datetime_dmy",
- "datetime_seconds_ymd",
- "datetime_seconds_dmy"
- )
- time_validations <- c("time_hh_mm_ss", "time_mm_ss")
- categorical_types <- c("radio", "dropdown", "checkbox")
- text_types <- c("text", "autocomplete")
-
- num_ops <- c("=", "!=", "<", ">", "<=", ">=")
- cat_ops <- c("=", "!=")
- text_ops <- c("=", "!=")
-
- # --- Parse filter into clauses ---
- # Split on AND/OR (REDCap uses 'and'/'or' or 'AND'/'OR')
- clauses <- trimws(strsplit(filter, "(?i)\\s+(and|or)\\s+", perl = TRUE)[[1]])
-
- clause_pattern <- "^\\[([^\\]]+)\\]\\s*(=|!=|<=|>=|<|>)\\s*(.+)$"
-
- errors <- character(0)
-
- for (clause in clauses) {
- if (!grepl(clause_pattern, clause, perl = TRUE)) {
- errors <- c(
- errors,
- sprintf(
- "Clause '%s' does not match expected format: [field] operator value",
- clause
- )
- )
- next
- }
-
- parts <- regmatches(clause, regexec(clause_pattern, clause, perl = TRUE))[[1]]
- field <- parts[2]
- operator <- parts[3]
- value <- trimws(parts[4])
-
- # --- Check field exists using pre-built index ---
- row_i <- field_idx[field]
- if (is.na(row_i)) {
- errors <- c(errors, sprintf("Unknown field: [%s]", field))
- next
- }
-
- field_type <- dictionary[[col_type]][row_i]
- val_type <- if (has_val_type)
- dictionary[[col_val_type]][row_i]
- else
- ""
- if (is.na(val_type))
- val_type <- ""
-
- # --- Determine expected value format and allowed operators ---
- if (field_type %in% numeric_types ||
- grepl("^integer$|^number", val_type)) {
- if (!operator %in% num_ops) {
- errors <- c(
- errors,
- sprintf(
- "[%s] is numeric — operator '%s' is not valid. Use one of: %s",
- field,
- operator,
- paste(num_ops, collapse = ", ")
- )
- )
- }
- if (!grepl("^-?[0-9]+(\\.[0-9]+)?$", value)) {
- errors <- c(
- errors,
- sprintf(
- "[%s] is numeric — value '%s' should be an unquoted number (e.g. 18 or 3.5)",
- field,
- value
- )
- )
- }
-
- } else if (val_type %in% date_validations) {
- if (!operator %in% num_ops) {
- errors <- c(
- errors,
- sprintf(
- "[%s] is a date — operator '%s' is not valid. Use one of: %s",
- field,
- operator,
- paste(num_ops, collapse = ", ")
- )
- )
- }
- if (!grepl(
- "^'[0-9]{4}-[0-9]{2}-[0-9]{2}(\\s[0-9]{2}:[0-9]{2}(:[0-9]{2})?)?'$",
- value
- )) {
- errors <- c(
- errors,
- sprintf(
- "[%s] is a date — value '%s' should be a quoted date string, e.g. '2020-01-31'",
- field,
- value
- )
- )
- }
-
- } else if (val_type %in% time_validations) {
- if (!operator %in% num_ops) {
- errors <- c(
- errors,
- sprintf(
- "[%s] is a time — operator '%s' is not valid. Use one of: %s",
- field,
- operator,
- paste(num_ops, collapse = ", ")
- )
- )
- }
- if (!grepl("^'[0-9]{2}:[0-9]{2}(:[0-9]{2})?'$", value)) {
- errors <- c(
- errors,
- sprintf(
- "[%s] is a time — value '%s' should be a quoted time string, e.g. '14:30:00'",
- field,
- value
- )
- )
- }
-
- } else if (field_type %in% categorical_types) {
- if (!operator %in% cat_ops) {
- errors <- c(
- errors,
- sprintf(
- "[%s] is categorical — operator '%s' is not valid. Use one of: %s",
- field,
- operator,
- paste(cat_ops, collapse = ", ")
- )
- )
- }
-
- # Validate value is a known choice code
- choices_raw <- if (has_choices)
- dictionary[[col_choices]][row_i]
- else
- NA
- if (!is.na(choices_raw) && nchar(trimws(choices_raw)) > 0) {
- choice_codes <- trimws(gsub(",.+?(\\||$)", "", gsub(
- "^\\s*", "", strsplit(choices_raw, "\\|")[[1]]
- )))
- value_unquoted <- gsub("^'|'$", "", value)
- if (!value_unquoted %in% choice_codes) {
- errors <- c(
- errors,
- sprintf(
- "[%s] is categorical — '%s' is not a valid choice code. Valid codes: %s",
- field,
- value_unquoted,
- paste(choice_codes, collapse = ", ")
- )
- )
- }
- }
-
- if (!grepl("^'.*'$", value)) {
- errors <- c(errors,
- sprintf(
- "[%s] is categorical — value should be quoted, e.g. '1'",
- field
- ))
- }
-
- } else {
- # Plain text field
- if (!operator %in% text_ops) {
- errors <- c(
- errors,
- sprintf(
- "[%s] is a text field — operator '%s' is not valid. Use one of: %s",
- field,
- operator,
- paste(text_ops, collapse = ", ")
- )
- )
- }
- if (!grepl("^'.*'$", value)) {
- errors <- c(
- errors,
- sprintf(
- "[%s] is a text field — value should be quoted, e.g. 'some text'",
- field
- )
- )
- }
- }
- }
-
- if (length(errors) > 0) {
- return(list(
- valid = FALSE,
- message = paste(errors, collapse = "\n")
- ))
- }
-
- list(valid = TRUE, message = "Filter is valid.")
-}
-
-
-
#' Test app for the redcap_read_shiny_module
#'
#' @rdname redcap_read_shiny_module
@@ -9188,10 +8646,16 @@ redcap_demo_app <- function() {
server <- function(input, output, session) {
data_val <- m_redcap_readServer(id = "data")
- output$data <- DT::renderDataTable({
- shiny::req(data_val$data)
- data_val$data()
- }, options = list(scrollX = TRUE, pageLength = 5), )
+ output$data <- DT::renderDataTable(
+ {
+ shiny::req(data_val$data)
+ data_val$data()
+ },
+ options = list(
+ scrollX = TRUE,
+ pageLength = 5
+ ),
+ )
output$code <- shiny::renderPrint({
shiny::req(data_val$code)
data_val$code()
@@ -10590,7 +10054,7 @@ regression_server <- function(id,
rv$list$regression$models <- model_lists
},
error = function(err) {
- showNotification(paste(i18n$t("Creating regression models failed with the following error:"), err), type = "error")
+ showNotification(paste(i18n$t("Creating regression models failed with the following error:"), err), type = "err")
}
)
}
@@ -10655,7 +10119,7 @@ regression_server <- function(id,
showNotification(paste0(warn), type = "warning")
},
error = function(err) {
- showNotification(paste(i18n$t("Creating a regression table failed with the following error:"), err), type = "error")
+ showNotification(paste(i18n$t("Creating a regression table failed with the following error:"), err), type = "err")
}
)
}
@@ -10733,7 +10197,7 @@ regression_server <- function(id,
gg_theme_shiny()
},
error = function(err) {
- showNotification(paste0(err), type = "error")
+ showNotification(paste0(err), type = "err")
}
)
})
@@ -10793,7 +10257,7 @@ regression_server <- function(id,
# showNotification(paste0(warn), type = "warning")
# },
error = function(err) {
- showNotification(paste(i18n$t("Running model assumptions checks failed with the following error:"), err), type = "error")
+ showNotification(paste(i18n$t("Running model assumptions checks failed with the following error:"), err), type = "err")
}
)
}
@@ -10864,7 +10328,7 @@ regression_server <- function(id,
out <- patchwork::wrap_plots(ls, ncol = if (length(ls) == 1) 1 else 2)
},
error = function(err) {
- showNotification(err, type = "error")
+ showNotification(err, type = "err")
}
)
@@ -12534,26 +11998,15 @@ update_factor_ui <- function(id) {
),
fluidRow(
column(
- width = 3,
+ width = 6,
shinyWidgets::virtualSelectInput(
inputId = ns("variable"),
- label = i18n$t("Choose variable:"),
+ label = i18n$t("Factor variable to reorder:"),
choices = NULL,
width = "100%",
zIndex = 50
)
),
- column(
- width = 3,
- class = "d-flex align-items-end",
- actionButton(
- disabled = TRUE,
- inputId = ns("drop_levels"),
- label = tagList(phosphoricons::ph("sort-ascending"), i18n$t("Drop empty")),
- class = "btn-outline-primary mb-3",
- width = "100%"
- )
- ),
column(
width = 3,
class = "d-flex align-items-end",
@@ -12586,9 +12039,7 @@ update_factor_ui <- function(id) {
class = "float-end",
shinyWidgets::prettyCheckbox(
inputId = ns("new_var"),
- label = i18n$t(
- "Create a new variable; otherwise replaces (Updating labels always creates new variable)"
- ),
+ label = i18n$t("Create a new variable; otherwise replaces (Updating labels always creates new variable)"),
value = FALSE,
status = "primary",
outline = TRUE,
@@ -12643,20 +12094,6 @@ update_factor_server <- function(id, data_r = reactive(NULL)) {
rv$data_grid <- grid
})
- observeEvent(rv$data_grid, {
- variable <- req(input$variable)
- if (isTRUE(has_empty_levels(rv$data[[variable]]))) {
- # browser()
- updateActionButton(inputId = "drop_levels", disabled = FALSE)
- } else {
- updateActionButton(inputId = "drop_levels", disabled = TRUE)
- }
- })
-
- observeEvent(input$drop_levels, {
- rv$data_grid <- rv$data_grid[!rv$data_grid$Freq==0,]
- })
-
observeEvent(input$sort_levels, {
if (input$sort_levels %% 2 == 1) {
decreasing <- FALSE
@@ -12740,7 +12177,7 @@ update_factor_server <- function(id, data_r = reactive(NULL)) {
)
data <- tryCatch({
- with_labels(data, {
+ with_labels(data,{
rlang::exec(factor_new_levels_labels,
!!!modifyList(parameters, val = list(data = data)))
})
@@ -12750,7 +12187,7 @@ update_factor_server <- function(id, data_r = reactive(NULL)) {
"We encountered the following error creating the new factor:",
err
),
- type = "error")
+ type = "err")
})
# browser()
@@ -12904,15 +12341,6 @@ unique_names <- function(new, existing = character()) {
}
-has_empty_levels <- function(x) {
- if (is.factor(x)) {
- any(!levels(x) %in% x)
- } else {
- return(FALSE)
- }
-}
-
-
########
#### Current file: /Users/au301842/FreesearchR/R//update-variables-ext.R
########
@@ -15443,7 +14871,7 @@ server <- function(input, output, session) {
showNotification(paste(
i18n$t("We encountered the following error showing missingness:"),
err
- ), type = "error")
+ ), type = "err")
})
})
@@ -15700,7 +15128,6 @@ server <- function(input, output, session) {
inputId = "column_filter",
label = i18n$t("Select data types to include"),
selected = unique(data_type(rv$data)),
- #[unique(data_type(rv$data))!="text"],
choices = unique(data_type(rv$data)),
updateOn = "change",
multiple = TRUE,
@@ -15793,58 +15220,48 @@ server <- function(input, output, session) {
######### Data filter
# IDEAFilter has the least cluttered UI, but might have a License issue
# Consider using shinyDataFilter, though not on CRAN
- data_filter_raw <- IDEAFilter::IDEAFilter(
+ data_filter <- IDEAFilter::IDEAFilter(
"data_filter",
- data = shiny::reactive(non_character_cols(rv$data_variables)),
+ data = shiny::reactive(rv$data_variables),
verbose = TRUE
)
- data_filter <- reactive({
- apply_idea_filter(data_filter_raw, rv$data_variables)
+ shiny::observeEvent(list(
+ shiny::reactive(rv$data_variables),
+ shiny::reactive(rv$data_original),
+ data_filter(),
+ # regression_vars(),
+ input$complete_cutoff
+ ),
+ {
+ ### Save filtered data
+ rv$data_filtered <- data_filter()
+
+ ### Save filtered data
+ ### without empty factor levels
+ rv$list$data <- data_filter() |>
+ REDCapCAST::fct_drop() |>
+ (\(.x) {
+ .x[!sapply(.x, is.character)]
+ })()
+
+ ## This looks messy!! But it works as intended for now
+
+ out <- gsub("filter", "dplyr::filter", gsub("\\s{2,}", " ", paste0(capture.output(
+ attr(rv$data_filtered, "code")
+ ), collapse = " ")))
+
+ out <- strsplit(out, "%>%") |>
+ unlist() |>
+ (\(.x) {
+ paste(c("df <- df", .x[-1], "REDCapCAST::fct_drop()"), collapse = "|> \n ")
+ })()
+
+ rv$code <- append_list(data = out,
+ list = rv$code,
+ index = "filter")
})
- shiny::observeEvent(
- list(
- shiny::reactive(rv$data_variables),
- shiny::reactive(rv$data_original),
- data_filter_raw(),
- # regression_vars(),
- input$complete_cutoff
- ),
- {
- ### Save filtered data
- # browser()
- # rv$data_filtered <- apply_idea_filter(data_filter_raw, rv$data_variables)()
- rv$data_filtered <- data_filter()
-
- ### Save filtered data
- ### ~~without empty factor levels~~
- ### All factor levels are kept, but can be manually removed
- # browser()
- rv$list$data <- rv$data_filtered #|>
- # # REDCapCAST::fct_drop() |>
- # (\(.x) {
- # .x[!sapply(.x, is.character)]
- # })()
-
- ## This looks messy!! But it works as intended for now
- # browser()
- out <- gsub("filter", "dplyr::filter", gsub("\\s{2,}", " ", paste0(capture.output(
- attr(data_filter_raw(), "code")
- ), collapse = " ")))
-
- out <- strsplit(out, "%>%") |>
- unlist() |>
- (\(.x) {
- paste(c("df <- df", .x[-1]), collapse = "|> \n ")
- })()
-
- rv$code <- append_list(data = out,
- list = rv$code,
- index = "filter")
- }
- )
-
######### Data preview
### Overview
@@ -15862,7 +15279,7 @@ server <- function(input, output, session) {
observeEvent(input$modal_browse, {
tryCatch({
show_data(
- rv$data_filtered,
+ REDCapCAST::fct_drop(rv$data_filtered),
title = i18n$t("Uploaded data overview"),
type = "modal"
)
@@ -15870,7 +15287,7 @@ server <- function(input, output, session) {
showNotification(paste(
i18n$t("We encountered the following error browsing your data:"),
err
- ), type = "error")
+ ), type = "err")
})
})
@@ -15896,7 +15313,7 @@ server <- function(input, output, session) {
showNotification(paste(
i18n$t("We encountered the following error showing missingness:"),
err
- ), type = "error")
+ ), type = "err")
})
})
@@ -16103,7 +15520,7 @@ server <- function(input, output, session) {
# }
# },
# error = function(err) {
- # showNotification(err, type = "error")
+ # showNotification(err, type = "err")
# }
# )
@@ -16262,7 +15679,7 @@ server <- function(input, output, session) {
"We encountered the following error creating your report: "
),
err
- ), type = "error")
+ ), type = "err")
})
})
file.rename(paste0("www/report.", type), file)
diff --git a/app_docker/renv.lock b/app_docker/renv.lock
index 96709a25..567601cc 100644
--- a/app_docker/renv.lock
+++ b/app_docker/renv.lock
@@ -35,12 +35,12 @@
},
"DHARMa": {
"Package": "DHARMa",
- "Version": "0.4.7",
+ "Version": "0.4.6",
"Source": "Repository",
"Title": "Residual Diagnostics for Hierarchical (Multi-Level / Mixed) Regression Models",
- "Date": "2024-10-16",
- "Authors@R": "c(person(\"Florian\", \"Hartig\", email = \"florian.hartig@biologie.uni-regensburg.de\", role = c(\"aut\", \"cre\"), comment=c(ORCID=\"0000-0002-6255-9059\")), person(\"Lukas\", \"Lohse\", role = \"ctb\"), person(\"Melina\", \"de Souza leite\", role = \"ctb\"))",
- "Description": "The 'DHARMa' package uses a simulation-based approach to create readily interpretable scaled (quantile) residuals for fitted (generalized) linear mixed models. Currently supported are linear and generalized linear (mixed) models from 'lme4' (classes 'lmerMod', 'glmerMod'), 'glmmTMB', 'GLMMadaptive', and 'spaMM'; phylogenetic linear models from 'phylolm' (classes 'phylolm' and 'phyloglm'); generalized additive models ('gam' from 'mgcv'); 'glm' (including 'negbin' from 'MASS', but excluding quasi-distributions) and 'lm' model classes. Moreover, externally created simulations, e.g. posterior predictive simulations from Bayesian software such as 'JAGS', 'STAN', or 'BUGS' can be processed as well. The resulting residuals are standardized to values between 0 and 1 and can be interpreted as intuitively as residuals from a linear regression. The package also provides a number of plot and test functions for typical model misspecification problems, such as over/underdispersion, zero-inflation, and residual spatial, phylogenetic and temporal autocorrelation.",
+ "Date": "2022-09-08",
+ "Authors@R": "c(person(\"Florian\", \"Hartig\", email = \"florian.hartig@biologie.uni-regensburg.de\", role = c(\"aut\", \"cre\"), comment=c(ORCID=\"0000-0002-6255-9059\")), person(\"Lukas\", \"Lohse\", role = \"ctb\"))",
+ "Description": "The 'DHARMa' package uses a simulation-based approach to create readily interpretable scaled (quantile) residuals for fitted (generalized) linear mixed models. Currently supported are linear and generalized linear (mixed) models from 'lme4' (classes 'lmerMod', 'glmerMod'), 'glmmTMB' 'GLMMadaptive' and 'spaMM', generalized additive models ('gam' from 'mgcv'), 'glm' (including 'negbin' from 'MASS', but excluding quasi-distributions) and 'lm' model classes. Moreover, externally created simulations, e.g. posterior predictive simulations from Bayesian software such as 'JAGS', 'STAN', or 'BUGS' can be processed as well. The resulting residuals are standardized to values between 0 and 1 and can be interpreted as intuitively as residuals from a linear regression. The package also provides a number of plot and test functions for typical model misspecification problems, such as over/underdispersion, zero-inflation, and residual spatial and temporal autocorrelation.",
"Depends": [
"R (>= 3.0.2)"
],
@@ -59,7 +59,7 @@
],
"Suggests": [
"knitr",
- "testthat (>= 3.0.0)",
+ "testthat",
"rmarkdown",
"KernSmooth",
"sfsmisc",
@@ -68,8 +68,7 @@
"mgcViz (>= 0.1.9)",
"spaMM (>= 3.2.0)",
"GLMMadaptive",
- "glmmTMB (>= 1.1.2.3)",
- "phylolm (>= 2.6.5)"
+ "glmmTMB (>= 1.1.2.3)"
],
"Enhances": [
"phyr",
@@ -81,12 +80,11 @@
"URL": "http://florianhartig.github.io/DHARMa/",
"LazyData": "TRUE",
"BugReports": "https://github.com/florianhartig/DHARMa/issues",
- "RoxygenNote": "7.3.2",
+ "RoxygenNote": "7.2.1",
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
- "Config/testthat/edition": "3",
"NeedsCompilation": "no",
- "Author": "Florian Hartig [aut, cre] (), Lukas Lohse [ctb], Melina de Souza leite [ctb]",
+ "Author": "Florian Hartig [aut, cre] (), Lukas Lohse [ctb]",
"Maintainer": "Florian Hartig ",
"Repository": "CRAN"
},
@@ -2347,7 +2345,7 @@
},
"datamods": {
"Package": "datamods",
- "Version": "1.5.3",
+ "Version": "1.5.2",
"Source": "Repository",
"Title": "Modules to Import and Manipulate Data in 'Shiny'",
"Authors@R": "c(person(given = \"Victor\", family = \"Perrier\", role = c(\"aut\", \"cre\", \"cph\"), email = \"victor.perrier@dreamrs.fr\"), person(given = \"Fanny\", family = \"Meyer\", role = \"aut\"), person(given = \"Samra\", family = \"Goumri\", role = \"aut\"), person(given = \"Zauad Shahreer\", family = \"Abeer\", role = \"aut\", email = \"shahreyar.abeer@gmail.com\"), person(given = \"Eduard\", family = \"Szöcs\", role = \"ctb\", email = \"eduardszoecs@gmail.com\") )",
@@ -8359,7 +8357,7 @@
},
"shinybusy": {
"Package": "shinybusy",
- "Version": "0.3.3",
+ "Version": "0.3.2",
"Source": "Repository",
"Title": "Busy Indicators and Notifications for 'Shiny' Applications",
"Authors@R": "c(person(\"Fanny\", \"Meyer\", role = \"aut\"), person(\"Victor\", \"Perrier\", email = \"victor.perrier@dreamrs.fr\", role = c(\"aut\", \"cre\")), person(\"Silex Technologies\", comment = \"https://www.silex-ip.com\", role = \"fnd\"))",
@@ -8372,8 +8370,8 @@
"jsonlite",
"htmlwidgets"
],
- "RoxygenNote": "7.3.1",
- "URL": "https://github.com/dreamRs/shinybusy, https://dreamrs.github.io/shinybusy/",
+ "RoxygenNote": "7.2.3",
+ "URL": "https://github.com/dreamRs/shinybusy",
"BugReports": "https://github.com/dreamRs/shinybusy/issues",
"Suggests": [
"testthat",
diff --git a/app_docker/translations/translation_da.csv b/app_docker/translations/translation_da.csv
index 4f3752bd..ce9abc8e 100644
--- a/app_docker/translations/translation_da.csv
+++ b/app_docker/translations/translation_da.csv
@@ -55,6 +55,7 @@
"Imported data","Importeret data"
"www/intro.md","www/intro.md"
"Choose your data","Vælg dine data"
+"Factor variable to reorder:","Kategoriske variabel der skal ændres:"
"Sort by levels","Sorter efter niveauer"
"Sort by count","Sorter efter antal"
"Update factor variable","Updater faktor-variabel"
@@ -147,12 +148,16 @@
"Import data from REDCap","Importér data fra REDCap"
"REDCap server","REDCap-server"
"Web address","Serveradresse"
+"Format should be either 'https://redcap.your.institution/' or 'https://your.institution/redcap/'","Adressen skal være som 'https://redcap.your.institution/' eller 'https://your.institution/redcap/'"
"API token","API-nøgle"
+"The token is a string of 32 numbers and letters.","En API-nøgle består af ialt 32 tal og bogstaver."
"Connect","Forbind"
"Data import parameters","Data import parameters"
+"Select fields/variables to import and click the funnel to apply optional filters","Vælg variabler, der skal importeres og tryk på tragten for at anvende valgfrie filtre"
"Import","Import"
"Click to see data dictionary","Tryk for at se metadata (Data Dictionary)"
"Connected to server!","Forbindelse til serveren oprettet!"
+"The {data_rv$info$project_title} project is loaded.","{data_rv$info$project_title}-projektet er forbundet."
"Data dictionary","Data dictionary"
"Preview:","Forsmag:"
"Imported data set","Importeret datasæt"
@@ -160,6 +165,8 @@
"Specify the data format","Specificér dataformatet"
"Fill missing values?","Skal manglende observationer udfyldes?"
"Requested data was retrieved!","Det udvalgte data blev hentet!"
+"Data retrieved, but it looks like only the ID was retrieved from the server. Please check with your REDCap administrator that you have required permissions for data access.","Data er hentet, men det ser ud til kun at indeholde ID-variablen. Du skal kontakte din REDCap-administrator og sikre dig at du har adgang til faktisk at hente de udvalgte data."
+"Data retrieved, but it looks like not all requested fields were retrieved from the server. Please check with your REDCap administrator that you have required permissions for data access.","Data er hentet, men det ser ud til kun at indeholde nogle af de udvalgte variabler. Du skal kontakte din REDCap-administrator og sikre dig at du har adgang til faktisk at hente de udvalgte data."
"Click to see the imported data","Tryk for at se de importerede data"
"Regression table","Regressionstabel"
"Import a dataset from an environment","Importer et datasæt fra et kodemiljø"
@@ -284,6 +291,7 @@
"No data present.","Ingen data tilstede."
"You have provided a complete dataset with no missing values.","Data er uden manglende observationer."
"Start by loading data.","Start med at vælge data."
+"Create a new variable; otherwise replaces (Updating labels always creates new variable)","Create a new variable; otherwise replaces (Updating labels always creates new variable)"
"Data classes and missing observations","Data classes and missing observations"
"We encountered the following error showing missingness:","We encountered the following error showing missingness:"
"Please confirm data reset!","Please confirm data reset!"
@@ -315,9 +323,3 @@
"Settings","Settings"
"Create new factor","Create new factor"
"Choose color palette","Choose color palette"
-"Optional filter logic (e.g., [gender] = 'female')","Optional filter logic (e.g., [gender] = 'female')"
-"Drop empty","Drop empty"
-"Choose variable:","Choose variable:"
-"An empty data set was imported. Please review data filter.","An empty data set was imported. Please review data filter."
-"An error was encountered exporting data. Please review data filter.","An error was encountered exporting data. Please review data filter."
-"Likert diagram","Likert diagram"
diff --git a/app_docker/translations/translation_sw.csv b/app_docker/translations/translation_sw.csv
index a375e0a5..96a7a109 100644
--- a/app_docker/translations/translation_sw.csv
+++ b/app_docker/translations/translation_sw.csv
@@ -55,6 +55,7 @@
"Imported data","Data iliyoingizwa"
"www/intro.md","www/intro.md"
"Choose your data","Chagua data yako"
+"Factor variable to reorder:","Kigezo cha vipengele ili kupanga upya:"
"Sort by levels","Panga kwa viwango"
"Sort by count","Panga kwa hesabu"
"Update factor variable","Sasisha kigezo cha kipengele"
@@ -147,12 +148,16 @@
"Import data from REDCap","Ingiza data kutoka REDCap"
"REDCap server","Seva ya REDCap"
"Web address","Anwani ya wavuti"
+"Format should be either 'https://redcap.your.institution/' or 'https://your.institution/redcap/'","Muundo unapaswa kuwa 'https://redcap.your.institution/' au 'https://your.institution/redcap/'"
"API token","Tokeni ya API"
+"The token is a string of 32 numbers and letters.","Tokeni ni mfuatano wa nambari na herufi 32."
"Connect","Unganisha"
"Data import parameters","Vigezo vya kuingiza data"
+"Select fields/variables to import and click the funnel to apply optional filters","Chagua sehemu/vigezo vya kuingiza na ubofye faneli ili kutumia vichujio vya hiari"
"Import","Ingiza"
"Click to see data dictionary","Bofya ili kuona kamusi ya data"
"Connected to server!","Imeunganishwa na seva!"
+"The {data_rv$info$project_title} project is loaded.","Mradi wa {data_rv$info$project_title} umepakiwa."
"Data dictionary","Kamusi ya data"
"Preview:","Hakikisho:"
"Imported data set","Seti ya data iliyoingizwa"
@@ -160,6 +165,8 @@
"Specify the data format","Bainisha umbizo la data"
"Fill missing values?","Jaza thamani zinazokosekana?"
"Requested data was retrieved!","Data iliyoombwa ilipatikana!"
+"Data retrieved, but it looks like only the ID was retrieved from the server. Please check with your REDCap administrator that you have required permissions for data access.","Data imerejeshwa, lakini inaonekana ni kitambulisho pekee kilichorejeshwa kutoka kwa seva. Tafadhali wasiliana na msimamizi wako wa REDCap kama una ruhusa zinazohitajika kwa ufikiaji wa data."
+"Data retrieved, but it looks like not all requested fields were retrieved from the server. Please check with your REDCap administrator that you have required permissions for data access.","Data imerejeshwa, lakini inaonekana kama si sehemu zote zilizoombwa zilizorejeshwa kutoka kwa seva. Tafadhali wasiliana na msimamizi wako wa REDCap kama una ruhusa zinazohitajika kwa ufikiaji wa data."
"Click to see the imported data","Bofya ili kuona data iliyoingizwa"
"Regression table","Jedwali la urejeshaji"
"Import a dataset from an environment","Ingiza seti ya data kutoka kwa mazingira"
@@ -284,6 +291,7 @@
"No data present.","No data present."
"You have provided a complete dataset with no missing values.","You have provided a complete dataset with no missing values."
"Start by loading data.","Start by loading data."
+"Create a new variable; otherwise replaces (Updating labels always creates new variable)","Create a new variable; otherwise replaces (Updating labels always creates new variable)"
"Data classes and missing observations","Data classes and missing observations"
"We encountered the following error showing missingness:","We encountered the following error showing missingness:"
"Please confirm data reset!","Please confirm data reset!"
@@ -315,9 +323,3 @@
"Settings","Settings"
"Create new factor","Create new factor"
"Choose color palette","Choose color palette"
-"Optional filter logic (e.g., [gender] = 'female')","Optional filter logic (e.g., [gender] = 'female')"
-"Drop empty","Drop empty"
-"Choose variable:","Choose variable:"
-"An empty data set was imported. Please review data filter.","An empty data set was imported. Please review data filter."
-"An error was encountered exporting data. Please review data filter.","An error was encountered exporting data. Please review data filter."
-"Likert diagram","Likert diagram"
diff --git a/inst/apps/FreesearchR/app.R b/inst/apps/FreesearchR/app.R
index 860dcd05..1b6bf0c1 100644
--- a/inst/apps/FreesearchR/app.R
+++ b/inst/apps/FreesearchR/app.R
@@ -1,7 +1,7 @@
########
-#### Current file: /var/folders/9l/xbc19wxx0g79jdd2sf_0v291mhwh7f/T//RtmpgCu9u6/file55d839c4d43b.R
+#### Current file: /var/folders/9l/xbc19wxx0g79jdd2sf_0v291mhwh7f/T//RtmpoawSeD/fileab3b7554cf72.R
########
i18n_path <- system.file("translations", package = "FreesearchR")
@@ -64,7 +64,7 @@ i18n$set_translation_language("en")
#### Current file: /Users/au301842/FreesearchR/R//app_version.R
########
-app_version <- function()'26.3.5'
+app_version <- function()'26.3.4'
########
@@ -84,10 +84,7 @@ app_version <- function()'26.3.5'
#' @examples
#' mtcars |> baseline_table()
#' mtcars |> baseline_table(fun.args = list(by = "gear"))
-baseline_table <- function(data,
- fun.args = NULL,
- fun = gtsummary::tbl_summary,
- vars = NULL) {
+baseline_table <- function(data, fun.args = NULL, fun = gtsummary::tbl_summary, vars = NULL) {
out <- do.call(fun, c(list(data = data), fun.args))
return(out)
}
@@ -113,15 +110,7 @@ baseline_table <- function(data,
#' mtcars |> create_baseline(by.var = "gear", detail_level = "extended",type = list(gtsummary::all_dichotomous() ~ "categorical"),theme="nejm")
#'
#' create_baseline(default_parsing(mtcars), by.var = "am", add.p = FALSE, add.overall = FALSE, theme = "lancet")
-create_baseline <- function(data,
- ...,
- by.var,
- add.p = FALSE,
- add.diff = FALSE,
- add.overall = FALSE,
- theme = c("jama", "lancet", "nejm", "qjecon"),
- detail_level = c("minimal", "extended"),
- drop_empty = FALSE) {
+create_baseline <- function(data, ..., by.var, add.p = FALSE, add.diff=FALSE, add.overall = FALSE, theme = c("jama", "lancet", "nejm", "qjecon"), detail_level = c("minimal", "extended")) {
theme <- match.arg(theme)
detail_level <- match.arg(detail_level)
@@ -148,28 +137,31 @@ create_baseline <- function(data,
if (!any(hasName(args, c("type", "statistic")))) {
if (detail_level == "extended") {
args <-
- modifyList(args, list(
- type = list(
- gtsummary::all_continuous() ~ "continuous2",
- gtsummary::all_dichotomous() ~ "categorical"
- ),
- statistic = list(
- gtsummary::all_continuous() ~ c("{median} ({p25}, {p75})", "{mean} ({sd})", "{min}, {max}")
+ modifyList(
+ args,
+ list(
+ type = list(gtsummary::all_continuous() ~ "continuous2",
+ gtsummary::all_dichotomous() ~ "categorical"),
+ statistic = list(gtsummary::all_continuous() ~ c(
+ "{median} ({p25}, {p75})",
+ "{mean} ({sd})",
+ "{min}, {max}"))
)
- ))
+ )
}
}
- if (isTRUE(drop_empty)) {
- ## Drops empty levels if minimal
- data <- data |> REDCapCAST::fct_drop()
- }
-
- parameters <- list(data = data, fun.args = purrr::list_flatten(list(by = by.var, args)))
+ parameters <- list(
+ data = data,
+ fun.args = purrr::list_flatten(list(by = by.var, args))
+ )
# browser()
- out <- do.call(baseline_table, parameters)
+ out <- do.call(
+ baseline_table,
+ parameters
+ )
if (!is.null(by.var)) {
@@ -1129,7 +1121,7 @@ vectorSelectInput <- function(inputId,
colorSelectInput <- function(inputId,
label,
choices,
- selected = NULL,
+ selected = "",
previews = 4,
...,
placeholder = "") {
@@ -1165,43 +1157,31 @@ colorSelectInput <- function(inputId,
choices_new <- stats::setNames(vals, labels)
- if (is.null(selected) || selected == "") {
- selected <- vals[[1]]
- }
-
shiny::selectizeInput(
inputId = inputId,
label = label,
choices = choices_new,
selected = selected,
...,
- options = list(
+ options = list(
render = I(
"{
- option: function(item, escape) {
- item.data = JSON.parse(item.label);
- return '' +
- '
' + escape(item.data.name) + '
' +
- (item.data.label != '' ? '
' + escape(item.data.label) + '
' : '') +
- '
' + item.data.swatch + '
' +
- '
';
- },
- item: function(item, escape) {
- item.data = JSON.parse(item.label);
- return '' +
- '' + escape(item.data.name) + '' +
- item.data.swatch +
- '
';
- }
- }"
- ),
- onInitialize = I(
- "function() {
- var self = this;
- self.$control_input.prop('readonly', true);
- self.$control_input.css('cursor', 'default');
- self.$control.css('cursor', 'pointer');
- }"
+ option: function(item, escape) {
+ item.data = JSON.parse(item.label);
+ return '' +
+ '
' + escape(item.data.name) + '
' +
+ (item.data.label != '' ? '
' + escape(item.data.label) + '
' : '') +
+ '
' + item.data.swatch + '
' +
+ '
';
+ },
+ item: function(item, escape) {
+ item.data = JSON.parse(item.label);
+ return '' +
+ '' + escape(item.data.name) + '' +
+ item.data.swatch +
+ '
';
+ }
+ }"
)
)
)
@@ -1882,7 +1862,7 @@ cut_variable_server <- function(id, data_r = reactive(NULL)) {
rlang::exec(cut_var, !!!parameters)
},
error = function(err) {
- showNotification(paste("We encountered the following error creating the new factor:", err), type = "error")
+ showNotification(paste("We encountered the following error creating the new factor:", err), type = "err")
}
)
@@ -2488,7 +2468,7 @@ data_visuals_server <- function(id,
shiny::observeEvent(input$act_plot, {
if (NROW(data()) > 0) {
- tryCatch({
+ tryCatch({
parameters <- list(
type = rv$plot.params()[["fun"]],
pri = input$primary,
@@ -2514,7 +2494,7 @@ data_visuals_server <- function(id,
# showNotification(paste0(warn), type = "warning")
# },
error = function(err) {
- showNotification(paste0(err), type = "error")
+ showNotification(paste0(err), type = "err")
})
}
}, ignoreInit = TRUE)
@@ -2737,18 +2717,6 @@ supported_plots <- function() {
secondary.max = 4,
tertiary.type = c("dichotomous"),
secondary.extra = NULL
- ),
- plot_euler = list(
- fun = "plot_likert",
- descr = i18n$t("Likert diagram"),
- note = i18n$t(
- "Plot survey results"
- ),
- primary.type = c("dichotomous", "categorical"),
- secondary.type = c("dichotomous", "categorical"),
- secondary.multi = TRUE,
- tertiary.type = c("dichotomous", "categorical"),
- secondary.extra = NULL
)
)
}
@@ -4335,8 +4303,8 @@ default_parsing <- function(data) {
REDCapCAST::as_factor() |>
REDCapCAST::numchar2fct(numeric.threshold = 8,
character.throshold = 10) |>
- REDCapCAST::as_logical() #|>
- # REDCapCAST::fct_drop()
+ REDCapCAST::as_logical() |>
+ REDCapCAST::fct_drop()
})
# out <-
#
@@ -4946,63 +4914,12 @@ data_types <- function() {
)
}
-non_character_cols <- function(df) {
- if (shiny::is.reactive(df)) df <- df()
- df[, !sapply(df, is.character), drop = FALSE]
-}
-
-apply_idea_filter <- function(filtered_reactive, df_target, env = parent.frame()) {
- # If this ever brakes, the solution will have to be to modify the original filter function
- if (shiny::is.reactive(df_target)) df_target <- df_target()
-
- result <- if (shiny::is.reactive(filtered_reactive)) filtered_reactive() else filtered_reactive
- filter_code <- attr(result, "code")
-
- if (is.null(filter_code)) return(df_target)
-
- deparsed <- paste(deparse(filter_code), collapse = "")
-
- if (is.symbol(filter_code) || !grepl("filter(", deparsed, fixed = TRUE)) {
- return(df_target)
- }
-
- extract_filters <- function(code) {
- filters <- list()
- while (!is.symbol(code) && deparse(code[[1]]) == "%>%") {
- rhs <- code[[3]]
- if (deparse(rhs[[1]]) == "filter") {
- filters <- c(list(rhs), filters)
- }
- code <- code[[2]]
- }
- if (!is.symbol(code) && deparse(code[[1]]) == "filter") {
- filters <- c(list(code), filters)
- }
- filters
- }
-
- tryCatch({
- out <- df_target
- for (f in extract_filters(filter_code)) {
- args <- lapply(rlang::call_args(f), function(arg) {
- rlang::new_quosure(arg, env = env)
- })
- out <- dplyr::filter(out, !!!args)
- }
- out
- },
- error = function(e) {
- warning("Could not apply filter: ", conditionMessage(e))
- df_target
- })
-}
-
########
#### Current file: /Users/au301842/FreesearchR/R//hosted_version.R
########
-hosted_version <- function()'v26.3.5-260330'
+hosted_version <- function()'v26.3.4-260324'
########
@@ -5781,7 +5698,7 @@ import_file_server <- function(id,
# showNotification(warn, type = "warning")
# },
error = function(err) {
- showNotification(err, type = "error")
+ showNotification(err, type = "err")
})
})
@@ -5798,7 +5715,7 @@ import_file_server <- function(id,
minBodyHeight = 250
)
}, error = function(err) {
- showNotification(err, type = "error")
+ showNotification(err, type = "err")
})
})
@@ -5913,7 +5830,7 @@ import_xls <- function(file, sheet, skip, na.strings) {
# showNotification(paste0(warn), type = "warning")
# },
error = function(err) {
- showNotification(paste0(err), type = "error")
+ showNotification(paste0(err), type = "err")
})
}
@@ -5941,7 +5858,7 @@ import_ods <- function(file, sheet, skip, na.strings) {
# showNotification(paste0(warn), type = "warning")
# },
error = function(err) {
- ?showNotification(paste0(err), type = "error")
+ showNotification(paste0(err), type = "err")
})
}
@@ -6784,7 +6701,7 @@ data_missings_server <- function(id, data, max_level = 20, ...) {
out <- do.call(compare_missings, modifyList(parameters, list(data = df_tbl)))
})
}, error = function(err) {
- showNotification(paste0("Error: ", err), type = "error")
+ showNotification(paste0("Error: ", err), type = "err")
})
if (is.null(input$missings_var) ||
@@ -7489,62 +7406,6 @@ vertical_stacked_bars <- function(data,
}
-########
-#### Current file: /Users/au301842/FreesearchR/R//plot_likert.R
-########
-
-#' Nice horizontal bar plot centred on the central category
-#'
-#' @returns ggplot2 object
-#' @export
-#'
-#' @name data-plots
-#'
-#' @examples
-#' mtcars |> plot_likert(pri = "carb", sec = "cyl")
-#' mtcars |> plot_likert(pri = "carb", sec = "cyl", ter="am")
-#' mtcars |> plot_likert(pri = "cyl",color.palette="Blues")
-#' mtcars |> plot_likert(pri = "carb", sec = NULL,color.palette="Magma")
-#' mtcars |> plot_likert(pri = "carb", sec = c("cyl","am"),color.palette="Viridis")
-plot_likert <- function(data,
- pri,
- sec = NULL,
- ter = NULL,
- color.palette = "viridis") {
- if (!is.null(ter)) {
- ds <- split(data, data[ter])
- } else {
- ds <- list(data)
- }
- out <- lapply(ds, \(.x) {
- .x[c(pri, sec)] |>
- # na.omit() |>
- plot_likert_single(color.palette = color.palette)
- })
-
- wrap_plot_list(out, title = glue::glue(i18n$t("Grouped by {get_label(data,ter)}")))
-}
-
-
-plot_likert_single <- function(data, color.palette = "viridis") {
- ggstats::gglikert(data = data) +
- scale_fill_generate(palette=color.palette)+
- ggplot2::theme(
- # legend.position = "none",
- # panel.grid.major = element_blank(),
- # panel.grid.minor = element_blank(),
- # axis.text.y = ggplot2::element_blank(),
- # axis.title.y = ggplot2::element_blank(),
- text = ggplot2::element_text(size = 12)
- # axis.text = ggplot2::element_blank(),
- # plot.title = element_blank(),
- # panel.background = ggplot2::element_rect(fill = "white"),
- # plot.background = ggplot2::element_rect(fill = "white"),
- # panel.border = ggplot2::element_blank()
- )
-}
-
-
########
#### Current file: /Users/au301842/FreesearchR/R//plot_ridge.R
########
@@ -8129,7 +7990,10 @@ m_redcap_readUI <- function(id, title = TRUE, url = NULL) {
ns <- shiny::NS(id)
if (isTRUE(title)) {
- title <- shiny::tags$h4(i18n$t("Import data from REDCap"), class = "redcap-module-title")
+ title <- shiny::tags$h4(
+ i18n$t("Import data from REDCap"),
+ class = "redcap-module-title"
+ )
}
server_ui <- shiny::tagList(
@@ -8140,11 +8004,7 @@ m_redcap_readUI <- function(id, title = TRUE, url = NULL) {
value = if_not_missing(url, "https://redcap.your.institution/"),
width = "100%"
),
- shiny::helpText(
- i18n$t(
- "Format should be either 'https://redcap.your.institution/' or 'https://your.institution/redcap/'"
- )
- ),
+ shiny::helpText(i18n$t("Format should be either 'https://redcap.your.institution/' or 'https://your.institution/redcap/'")),
shiny::br(),
shiny::br(),
shiny::passwordInput(
@@ -8153,9 +8013,7 @@ m_redcap_readUI <- function(id, title = TRUE, url = NULL) {
value = "",
width = "100%"
),
- shiny::helpText(i18n$t(
- "The token is a string of 32 numbers and letters."
- )),
+ shiny::helpText(i18n$t("The token is a string of 32 numbers and letters.")),
shiny::br(),
shiny::br(),
shiny::actionButton(
@@ -8172,10 +8030,7 @@ m_redcap_readUI <- function(id, title = TRUE, url = NULL) {
shinyWidgets::alert(
id = ns("connect-result"),
status = "info",
- tags$p(
- phosphoricons::ph("info", weight = "bold"),
- i18n$t("Please fill in web address and API token, then press 'Connect'.")
- )
+ tags$p(phosphoricons::ph("info", weight = "bold"), i18n$t("Please fill in web address and API token, then press 'Connect'."))
),
dismissible = TRUE
),
@@ -8188,18 +8043,14 @@ m_redcap_readUI <- function(id, title = TRUE, url = NULL) {
shiny::uiOutput(outputId = ns("arms")),
shiny::textInput(
inputId = ns("filter"),
- label = i18n$t("Optional filter logic (e.g., [gender] = 'female')")
- ),
- uiOutput(ns("filter_feedback"))
+ label = i18n$t("Optional filter logic (e.g., [gender] = 'female')"
+ ))
)
params_ui <-
shiny::tagList(
shiny::tags$h4(i18n$t("Data import parameters")),
shiny::tags$div(
- ####
- #### All below was deactivated to deactivate filtering
- ####
style = htmltools::css(
display = "grid",
gridTemplateColumns = "1fr 50px",
@@ -8224,11 +8075,7 @@ m_redcap_readUI <- function(id, title = TRUE, url = NULL) {
)
)
),
- shiny::helpText(
- i18n$t(
- "Select fields/variables to import and click the funnel to apply optional filters"
- )
- ),
+ shiny::helpText(i18n$t("Select fields/variables to import and click the funnel to apply optional filters")),
shiny::tags$br(),
shiny::tags$br(),
shiny::uiOutput(outputId = ns("data_type")),
@@ -8247,10 +8094,7 @@ m_redcap_readUI <- function(id, title = TRUE, url = NULL) {
shinyWidgets::alert(
id = ns("retrieved-result"),
status = "info",
- tags$p(
- phosphoricons::ph("info", weight = "bold"),
- "Please specify data to download, then press 'Import'."
- )
+ tags$p(phosphoricons::ph("info", weight = "bold"), "Please specify data to download, then press 'Import'.")
),
dismissible = TRUE
)
@@ -8261,7 +8105,11 @@ m_redcap_readUI <- function(id, title = TRUE, url = NULL) {
title = title,
server_ui,
# shiny::uiOutput(ns("params_ui")),
- shiny::conditionalPanel(condition = "output.connect_success == true", params_ui, ns = ns),
+ shiny::conditionalPanel(
+ condition = "output.connect_success == true",
+ params_ui,
+ ns = ns
+ ),
shiny::br()
)
}
@@ -8286,19 +8134,14 @@ m_redcap_readServer <- function(id) {
dd_list = NULL,
data = NULL,
rep_fields = NULL,
- code = NULL,
- filter_valid = NULL
+ code = NULL
)
shiny::observeEvent(list(input$api, input$uri), {
shiny::req(input$api)
shiny::req(input$uri)
if (!is.null(input$uri)) {
- uri <- paste0(ifelse(
- endsWith(input$uri, "/"),
- input$uri,
- paste0(input$uri, "/")
- ), "api/")
+ uri <- paste0(ifelse(endsWith(input$uri, "/"), input$uri, paste0(input$uri, "/")), "api/")
} else {
uri <- input$uri
}
@@ -8312,68 +8155,75 @@ m_redcap_readServer <- function(id) {
})
- tryCatch({
- shiny::observeEvent(list(input$data_connect), {
- shiny::req(input$api)
- shiny::req(data_rv$uri)
+ tryCatch(
+ {
+ shiny::observeEvent(
+ list(
+ input$data_connect
+ ),
+ {
+ shiny::req(input$api)
+ shiny::req(data_rv$uri)
- parameters <- list(redcap_uri = data_rv$uri, token = input$api)
-
- # browser()
- shiny::withProgress({
- imported <- try(rlang::exec(REDCapR::redcap_metadata_read, !!!parameters),
- silent = TRUE)
- }, message = paste("Connecting to", data_rv$uri))
-
- ## TODO: Simplify error messages
- if (inherits(imported, "try-error") ||
- NROW(imported) < 1 ||
- ifelse(is.list(imported), !isTRUE(imported$success), FALSE)) {
- if (ifelse(is.list(imported),
- !isTRUE(imported$success),
- FALSE)) {
- mssg <- imported$raw_text
- } else {
- mssg <- attr(imported, "condition")$message
- }
-
- datamods:::insert_error(mssg = mssg, selector = "connect")
- data_rv$dd_status <- "error"
- data_rv$dd_list <- NULL
- } else if (isTRUE(imported$success)) {
- data_rv$dd_status <- "success"
-
- data_rv$info <- REDCapR::redcap_project_info_read(redcap_uri = data_rv$uri, token = input$api)$data
-
- datamods:::insert_alert(
- selector = ns("connect"),
- status = "success",
- include_data_alert(
- see_data_text = i18n$t("Click to see data dictionary"),
- dataIdName = "see_dd",
- extra = tags$p(
- tags$b(
- phosphoricons::ph("check", weight = "bold"),
- i18n$t("Connected to server!")
- ),
- glue::glue(
- i18n$t(
- "The {data_rv$info$project_title} project is loaded."
- )
- )
- ),
- btn_show_data = TRUE
+ parameters <- list(
+ redcap_uri = data_rv$uri,
+ token = input$api
)
- )
- data_rv$dd_list <- imported
- }
- }, ignoreInit = TRUE)
- }, warning = function(warn) {
- showNotification(paste0(warn), type = "warning")
- }, error = function(err) {
- showNotification(paste0(err), type = "error")
- })
+ # browser()
+ shiny::withProgress(
+ {
+ imported <- try(rlang::exec(REDCapR::redcap_metadata_read, !!!parameters), silent = TRUE)
+ },
+ message = paste("Connecting to", data_rv$uri)
+ )
+
+ ## TODO: Simplify error messages
+ if (inherits(imported, "try-error") || NROW(imported) < 1 || ifelse(is.list(imported), !isTRUE(imported$success), FALSE)) {
+ if (ifelse(is.list(imported), !isTRUE(imported$success), FALSE)) {
+ mssg <- imported$raw_text
+ } else {
+ mssg <- attr(imported, "condition")$message
+ }
+
+ datamods:::insert_error(mssg = mssg, selector = "connect")
+ data_rv$dd_status <- "error"
+ data_rv$dd_list <- NULL
+ } else if (isTRUE(imported$success)) {
+ data_rv$dd_status <- "success"
+
+ data_rv$info <- REDCapR::redcap_project_info_read(
+ redcap_uri = data_rv$uri,
+ token = input$api
+ )$data
+
+ datamods:::insert_alert(
+ selector = ns("connect"),
+ status = "success",
+ include_data_alert(
+ see_data_text = i18n$t("Click to see data dictionary"),
+ dataIdName = "see_dd",
+ extra = tags$p(
+ tags$b(phosphoricons::ph("check", weight = "bold"), i18n$t("Connected to server!")),
+ glue::glue(i18n$t("The {data_rv$info$project_title} project is loaded."))
+ ),
+ btn_show_data = TRUE
+ )
+ )
+
+ data_rv$dd_list <- imported
+ }
+ },
+ ignoreInit = TRUE
+ )
+ },
+ warning = function(warn) {
+ showNotification(paste0(warn), type = "warning")
+ },
+ error = function(err) {
+ showNotification(paste0(err), type = "err")
+ }
+ )
output$connect_success <- shiny::reactive(identical(data_rv$dd_status, "success"))
shiny::outputOptions(output, "connect_success", suspendWhenHidden = FALSE)
@@ -8404,7 +8254,10 @@ m_redcap_readServer <- function(id) {
shiny::req(input$api)
shiny::req(data_rv$uri)
- REDCapR::redcap_event_read(redcap_uri = data_rv$uri, token = input$api)$data
+ REDCapR::redcap_event_read(
+ redcap_uri = data_rv$uri,
+ token = input$api
+ )$data
})
output$fields <- shiny::renderUI({
@@ -8414,7 +8267,7 @@ m_redcap_readServer <- function(id) {
label = i18n$t("Select fields/variables to import:"),
choices = purrr::pluck(data_rv$dd_list, "data") |>
dplyr::select(field_name, form_name) |>
- (\(.x) {
+ (\(.x){
split(.x$field_name, REDCapCAST::as_factor(.x$form_name))
})(),
updateOn = "change",
@@ -8447,10 +8300,14 @@ m_redcap_readServer <- function(id) {
shiny::req(input$data_type)
## Get repeated field
- data_rv$rep_fields <- data_rv$dd_list$data$field_name[data_rv$dd_list$data$form_name %in% repeated_instruments(uri = data_rv$uri, token = input$api)]
+ data_rv$rep_fields <- data_rv$dd_list$data$field_name[
+ data_rv$dd_list$data$form_name %in% repeated_instruments(
+ uri = data_rv$uri,
+ token = input$api
+ )
+ ]
- if (input$data_type == "long" &&
- isTRUE(any(input$fields %in% data_rv$rep_fields))) {
+ if (input$data_type == "long" && isTRUE(any(input$fields %in% data_rv$rep_fields))) {
vectorSelectInput(
inputId = ns("fill"),
label = i18n$t("Fill missing values?"),
@@ -8486,48 +8343,12 @@ m_redcap_readServer <- function(id) {
}
})
-
- filter_validation <- reactive({
- val <- trimws(input$filter)
- if (nchar(val) == 0)
- return(NULL)
- validate_redcap_filter(val, purrr::pluck(data_rv$dd_list, "data"))
- })
-
- output$filter_feedback <- renderUI({
- result <- filter_validation()
- if (is.null(result)) {
- data_rv$filter_valid <- NULL
- return(NULL)
- }
-
- if (result$valid) {
- data_rv$filter_valid <- TRUE
- tags$span(style = "color: green;", "\u2713 Filter is valid")
- } else {
- data_rv$filter_valid <- FALSE
-
- tags$span(style = "color: red;",
- "\u2717 ",
- line_break(result$message, lineLength = 30))
- }
- })
-
shiny::observeEvent(input$data_import, {
shiny::req(input$fields)
# browser()
record_id <- purrr::pluck(data_rv$dd_list, "data")[[1]][1]
- if (!is.null(data_rv$filter_valid)) {
- if (isTRUE(data_rv$filter_valid)) {
- filter <- trimws(input$filter)
- } else {
- filter <- ""
- }
- } else {
- filter <- ""
- }
parameters <- list(
uri = data_rv$uri,
@@ -8535,8 +8356,7 @@ m_redcap_readServer <- function(id) {
fields = unique(c(record_id, input$fields)),
events = input$arms,
raw_or_label = "both",
- filter_logic = filter,
- # filter_logic = "",
+ filter_logic = input$filter,
split_forms = ifelse(
input$data_type == "long" && !is.null(input$data_type),
"none",
@@ -8545,48 +8365,31 @@ m_redcap_readServer <- function(id) {
)
shiny::withProgress(message = "Downloading REDCap data. Hold on for a moment..", {
- imported <- try({
- rlang::exec(REDCapCAST::read_redcap_tables, !!!parameters)
- # if (nrow(out)==0){
- # stop("No data was exported")
- # } else {
- # out
- # }
- }, # error = function(err) {
- # showNotification(i18n$t("An error was encountered exporting data. Please review data filter."), type = "error")
- # },
- silent = TRUE)
+ imported <- try(rlang::exec(REDCapCAST::read_redcap_tables, !!!parameters), silent = TRUE)
})
- # d <- REDCapCAST::apply_factor_labels(data = imported$survey, meta = data_rv$dd_list$data)
+ parameters_code <- parameters[c("uri", "fields", "events", "raw_or_label", "filter_logic")]
- parameters_code <- parameters[c("uri",
- "fields",
- "events",
- "raw_or_label",
- "filter_logic")]
+ code <- rlang::call2(
+ "easy_redcap",
+ !!!utils::modifyList(
+ parameters_code,
+ list(
+ data_format = ifelse(
+ input$data_type == "long" && !is.null(input$data_type),
+ "long",
+ "wide"
+ ),
+ project.name = simple_snake(data_rv$info$project_title)
+ )
+ ),
+ .ns = "REDCapCAST"
+ )
- code <- rlang::call2("easy_redcap",
- !!!utils::modifyList(
- parameters_code,
- list(
- data_format = ifelse(
- input$data_type == "long" && !is.null(input$data_type),
- "long",
- "wide"
- ),
- project.name = simple_snake(data_rv$info$project_title)
- )
- ),
- .ns = "REDCapCAST")
-
- if (inherits(imported, "try-error") |
- NROW(imported) == 0 |
- (length(imported) == 1 & !is.list(imported))) {
+ if (inherits(imported, "try-error") || NROW(imported) < 1) {
data_rv$data_status <- "error"
data_rv$data_list <- NULL
- data_rv$data_message <- i18n$t("An empty data set was imported. Please review data filter.")
- data_rv$data <- NULL
+ data_rv$data_message <- imported$raw_text
} else {
data_rv$data_status <- "success"
data_rv$data_message <- i18n$t("Requested data was retrieved!")
@@ -8595,11 +8398,12 @@ m_redcap_readServer <- function(id) {
## "wide"/"long" without re-importing data
if (parameters$split_form == "all") {
+ # browser()
out <- imported |>
# redcap_wider()
REDCapCAST::redcap_wider()
} else {
- if (identical(input$fill, "yes")) {
+ if (input$fill == "yes") {
## Repeated fields
@@ -8617,102 +8421,78 @@ m_redcap_readServer <- function(id) {
}
}
- ## Ensure correct factor labels
- ## It is a little hacky and should be included in the read_redcap_tables, but is lost along the way
- out <- REDCapCAST::apply_factor_labels(data = out, meta = data_rv$dd_list$data)
-
-
+ # browser()
in_data_check <- parameters$fields %in% names(out) |
- sapply(names(out), \(.x) any(sapply(
- parameters$fields, \(.y) startsWith(.x, .y)
- )))
+ sapply(names(out), \(.x) any(sapply(parameters$fields, \(.y) startsWith(.x, .y))))
if (!any(in_data_check[-1])) {
data_rv$data_status <- "warning"
- data_rv$data_message <- i18n$t(
- "Data retrieved, but it looks like only the ID was retrieved from the server. Please check with your REDCap administrator that you have required permissions for data access."
- )
+ data_rv$data_message <- i18n$t("Data retrieved, but it looks like only the ID was retrieved from the server. Please check with your REDCap administrator that you have required permissions for data access.")
}
if (!all(in_data_check)) {
data_rv$data_status <- "warning"
- data_rv$data_message <- i18n$t(
- "Data retrieved, but it looks like not all requested fields were retrieved from the server. Please check with your REDCap administrator that you have required permissions for data access."
- )
+ data_rv$data_message <- i18n$t("Data retrieved, but it looks like not all requested fields were retrieved from the server. Please check with your REDCap administrator that you have required permissions for data access.")
}
data_rv$code <- code
- ## Level labels nare lost at this point...
data_rv$data <- out |>
dplyr::select(-dplyr::ends_with("_complete")) |>
# dplyr::select(-dplyr::any_of(record_id)) |>
REDCapCAST::suffix2label()
-
}
})
- shiny::observeEvent(data_rv$data_status, {
- if (identical(data_rv$data_status, "error")) {
- ## The insert error wouldn't work. Inserted through regular.
- # datamods:::insert_error(mssg = data_rv$data_message,
- # selector = ns("retrieved"))
- datamods:::insert_alert(
- selector = ns("retrieved"),
- status = "danger",
- tags$p(
- tags$b(
- phosphoricons::ph("warning", weight = "bold"),
- "Warning!"
- ),
- data_rv$data_message
+ shiny::observeEvent(
+ data_rv$data_status,
+ {
+ # browser()
+ if (identical(data_rv$data_status, "error")) {
+ datamods:::insert_error(mssg = data_rv$data_message, selector = ns("retrieved"))
+ } else if (identical(data_rv$data_status, "success")) {
+ datamods:::insert_alert(
+ selector = ns("retrieved"),
+ status = data_rv$data_status,
+ # tags$p(
+ # tags$b(phosphoricons::ph("check", weight = "bold"), "Success!"),
+ # data_rv$data_message
+ # ),
+ include_data_alert(
+ see_data_text = i18n$t("Click to see the imported data"),
+ dataIdName = "see_data",
+ extra = tags$p(
+ tags$b(phosphoricons::ph("check", weight = "bold"), data_rv$data_message)
+ ),
+ btn_show_data = TRUE
+ )
)
- )
- } else if (identical(data_rv$data_status, "success")) {
- datamods:::insert_alert(
- selector = ns("retrieved"),
- status = data_rv$data_status,
- # tags$p(
- # tags$b(phosphoricons::ph("check", weight = "bold"), "Success!"),
- # data_rv$data_message
- # ),
- include_data_alert(
- see_data_text = i18n$t("Click to see the imported data"),
- dataIdName = "see_data",
- extra = tags$p(tags$b(
- phosphoricons::ph("check", weight = "bold"),
+ } else {
+ datamods:::insert_alert(
+ selector = ns("retrieved"),
+ status = data_rv$data_status,
+ tags$p(
+ tags$b(phosphoricons::ph("warning", weight = "bold"), "Warning!"),
data_rv$data_message
- )),
- btn_show_data = TRUE
+ )
)
- )
- } else {
- datamods:::insert_alert(
- selector = ns("retrieved"),
- status = data_rv$data_status,
- tags$p(
- tags$b(
- phosphoricons::ph("warning", weight = "bold"),
- "Warning!"
- ),
- data_rv$data_message
- )
- )
+ }
}
- })
-
- return(
- list(
- status = shiny::reactive(data_rv$data_status),
- name = shiny::reactive(data_rv$info$project_title),
- info = shiny::reactive(data_rv$info),
- code = shiny::reactive(data_rv$code),
- data = shiny::reactive(data_rv$data)
- )
)
+
+ return(list(
+ status = shiny::reactive(data_rv$data_status),
+ name = shiny::reactive(data_rv$info$project_title),
+ info = shiny::reactive(data_rv$info),
+ code = shiny::reactive(data_rv$code),
+ data = shiny::reactive(data_rv$data)
+ ))
}
- shiny::moduleServer(id = id, module = module)
+ shiny::moduleServer(
+ id = id,
+ module = module
+ )
}
#' @importFrom htmltools tagList tags
@@ -8723,12 +8503,14 @@ include_data_alert <- function(dataIdName = "see_data",
extra = NULL,
session = shiny::getDefaultReactiveDomain()) {
if (isTRUE(btn_show_data)) {
- success_message <- tagList(extra,
- tags$br(),
- shiny::actionLink(
- inputId = session$ns(dataIdName),
- label = tagList(phosphoricons::ph("book-open-text"), see_data_text)
- ))
+ success_message <- tagList(
+ extra,
+ tags$br(),
+ shiny::actionLink(
+ inputId = session$ns(dataIdName),
+ label = tagList(phosphoricons::ph("book-open-text"), see_data_text)
+ )
+ )
}
return(success_message)
}
@@ -8780,18 +8562,20 @@ is_valid_redcap_url <- function(url) {
#' @examples
#' token <- paste(sample(c(1:9, LETTERS[1:6]), 32, TRUE), collapse = "")
#' is_valid_token(token)
-is_valid_token <- function(token,
- pattern_env = NULL,
- nchar = 32) {
+is_valid_token <- function(token, pattern_env = NULL, nchar = 32) {
checkmate::assert_character(token, any.missing = TRUE, len = 1)
if (!is.null(pattern_env)) {
- checkmate::assert_character(pattern_env, any.missing = FALSE, len = 1)
+ checkmate::assert_character(pattern_env,
+ any.missing = FALSE,
+ len = 1
+ )
pattern <- pattern_env
} else {
pattern <- glue::glue("^([0-9A-Fa-f]{})(?:\\n)?$",
- .open = "<",
- .close = ">")
+ .open = "<",
+ .close = ">"
+ )
}
if (is.na(token)) {
@@ -8831,15 +8615,10 @@ repeated_instruments <- function(uri, token) {
#' @export
#'
drop_empty_event <- function(data, event = "redcap_event_name") {
- generics <- c(
- names(data)[1],
- "redcap_event_name",
- "redcap_repeat_instrument",
- "redcap_repeat_instance"
- )
+ generics <- c(names(data)[1], "redcap_event_name", "redcap_repeat_instrument", "redcap_repeat_instance")
filt <- split(data, data[[event]]) |>
- lapply(\(.x) {
+ lapply(\(.x){
dplyr::select(.x, -tidyselect::all_of(generics)) |>
REDCapCAST::all_na()
}) |>
@@ -8849,327 +8628,6 @@ drop_empty_event <- function(data, event = "redcap_event_name") {
}
-#' Validate a REDCap server-side filter string against a data dictionary
-#'
-#' Checks that a REDCap filter expression is syntactically correct and
-#' consistent with the field types defined in the project data dictionary.
-#' Plain text without field references is always rejected. Multi-clause
-#' filters joined by \code{AND} or \code{OR} are supported.
-#'
-#' @param filter A single character string containing the filter expression,
-#' e.g. \code{"[age] > 18"} or \code{"[cohabitation] = '1' AND [age] > 18"}.
-#' @param dictionary A data frame representing the REDCap data dictionary in
-#' API export format, as returned by e.g. \code{REDCapCAST::get_redcap_metadata()}.
-#' Must contain at least the columns \code{field_name} and \code{field_type}.
-#' The columns \code{text_validation_type_or_show_slider_number} and
-#' \code{select_choices_or_calculations} are used when present for stricter
-#' type and choice validation.
-#'
-#' @return A named list with two elements:
-#' \describe{
-#' \item{\code{valid}}{Logical. \code{TRUE} if the filter passes all checks.}
-#' \item{\code{message}}{Character. \code{"Filter is valid."} on success, or
-#' a newline-separated string of error messages describing every problem
-#' found.}
-#' }
-#'
-#' @details
-#' Validation rules by field type:
-#' \describe{
-#' \item{\code{calc}}{Numeric fields. Value must be an unquoted number.
-#' All comparison operators (\code{=}, \code{!=}, \code{<}, \code{>},
-#' \code{<=}, \code{>=}) are accepted.}
-#' \item{\code{text} with date validation}{Fields with validation type
-#' \code{date_ymd}, \code{date_dmy}, \code{datetime_*}, etc. Value must be
-#' a quoted date/datetime string in \code{'YYYY-MM-DD'} format. All
-#' comparison operators are accepted.}
-#' \item{\code{text} with time validation}{Fields with validation type
-#' \code{time_hh_mm_ss} or \code{time_mm_ss}. Value must be a quoted time
-#' string, e.g. \code{'14:30:00'}. All comparison operators are accepted.}
-#' \item{\code{radio} / \code{dropdown}}{Categorical fields. Value must be a
-#' quoted choice code (e.g. \code{'1'}) that exists in the field's choice
-#' list. Only \code{=} and \code{!=} are accepted.}
-#' \item{\code{text} (plain)}{Free-text fields. Value must be a quoted string.
-#' Only \code{=} and \code{!=} are accepted.}
-#' }
-#'
-#' @examples
-#' \dontrun{
-#' dict <- REDCapCAST::get_redcap_metadata(
-#' uri = "https://redcap.example.com/api/",
-#' token = Sys.getenv("REDCAP_TOKEN")
-#' )
-#'
-#' validate_redcap_filter("[age] > 18", dict)
-#' #> list(valid = TRUE, message = "Filter is valid.")
-#'
-#' validate_redcap_filter("only plain text", dict)
-#' #> list(valid = FALSE, message = "Filter must contain at least one field ...")
-#'
-#' validate_redcap_filter("[cohabitation] = '1' AND [age] > 18", dict)
-#' #> list(valid = TRUE, message = "Filter is valid.")
-#' }
-#'
-#' @export
-# REDCap filter validation based on data dictionary
-#
-# REDCap filter format: [field_name] operator value
-# Example: [age] > 18
-# [cohabitation] = '1'
-# [inclusion] > '2020-01-01'
-#
-# Supported field types and their allowed operators/value formats:
-# text (no validation) -> string values, = != operators only
-# text (date_ymd/date_dmy) -> quoted date strings, all comparison operators
-# text (time_hh_mm_ss) -> quoted time strings, all comparison operators
-# text (datetime_*) -> quoted datetime strings, all comparison operators
-# text (autocomplete) -> string values, = != operators only
-# calc -> numeric values, all comparison operators
-# radio/dropdown -> quoted numeric codes, = != operators only
-
-validate_redcap_filter <- function(filter, dictionary) {
- # --- Input checks ---
- if (!is.character(filter) ||
- length(filter) != 1 || nchar(trimws(filter)) == 0) {
- return(list(valid = FALSE, message = "Filter must be a non-empty string."))
- }
-
- if (!grepl("\\[.+\\]", filter)) {
- return(
- list(valid = FALSE, message = "Filter must contain at least one field reference in [brackets]. Plain text is not accepted.")
- )
- }
-
- # --- Column names (API export format) ---
- col_field <- "field_name"
- col_type <- "field_type"
- col_val_type <- "text_validation_type_or_show_slider_number"
- col_choices <- "select_choices_or_calculations"
-
- missing_cols <- setdiff(c(col_field, col_type), names(dictionary))
- if (length(missing_cols) > 0) {
- stop("Dictionary is missing required columns: ",
- paste(missing_cols, collapse = ", "))
- }
-
- # --- Build lookup index once for O(1) field access ---
- field_idx <- setNames(seq_len(nrow(dictionary)), dictionary[[col_field]])
- has_val_type <- col_val_type %in% names(dictionary)
- has_choices <- col_choices %in% names(dictionary)
-
- # --- Classify field types ---
- numeric_types <- c("calc")
- date_validations <- c(
- "date_ymd",
- "date_dmy",
- "datetime_ymd",
- "datetime_dmy",
- "datetime_seconds_ymd",
- "datetime_seconds_dmy"
- )
- time_validations <- c("time_hh_mm_ss", "time_mm_ss")
- categorical_types <- c("radio", "dropdown", "checkbox")
- text_types <- c("text", "autocomplete")
-
- num_ops <- c("=", "!=", "<", ">", "<=", ">=")
- cat_ops <- c("=", "!=")
- text_ops <- c("=", "!=")
-
- # --- Parse filter into clauses ---
- # Split on AND/OR (REDCap uses 'and'/'or' or 'AND'/'OR')
- clauses <- trimws(strsplit(filter, "(?i)\\s+(and|or)\\s+", perl = TRUE)[[1]])
-
- clause_pattern <- "^\\[([^\\]]+)\\]\\s*(=|!=|<=|>=|<|>)\\s*(.+)$"
-
- errors <- character(0)
-
- for (clause in clauses) {
- if (!grepl(clause_pattern, clause, perl = TRUE)) {
- errors <- c(
- errors,
- sprintf(
- "Clause '%s' does not match expected format: [field] operator value",
- clause
- )
- )
- next
- }
-
- parts <- regmatches(clause, regexec(clause_pattern, clause, perl = TRUE))[[1]]
- field <- parts[2]
- operator <- parts[3]
- value <- trimws(parts[4])
-
- # --- Check field exists using pre-built index ---
- row_i <- field_idx[field]
- if (is.na(row_i)) {
- errors <- c(errors, sprintf("Unknown field: [%s]", field))
- next
- }
-
- field_type <- dictionary[[col_type]][row_i]
- val_type <- if (has_val_type)
- dictionary[[col_val_type]][row_i]
- else
- ""
- if (is.na(val_type))
- val_type <- ""
-
- # --- Determine expected value format and allowed operators ---
- if (field_type %in% numeric_types ||
- grepl("^integer$|^number", val_type)) {
- if (!operator %in% num_ops) {
- errors <- c(
- errors,
- sprintf(
- "[%s] is numeric — operator '%s' is not valid. Use one of: %s",
- field,
- operator,
- paste(num_ops, collapse = ", ")
- )
- )
- }
- if (!grepl("^-?[0-9]+(\\.[0-9]+)?$", value)) {
- errors <- c(
- errors,
- sprintf(
- "[%s] is numeric — value '%s' should be an unquoted number (e.g. 18 or 3.5)",
- field,
- value
- )
- )
- }
-
- } else if (val_type %in% date_validations) {
- if (!operator %in% num_ops) {
- errors <- c(
- errors,
- sprintf(
- "[%s] is a date — operator '%s' is not valid. Use one of: %s",
- field,
- operator,
- paste(num_ops, collapse = ", ")
- )
- )
- }
- if (!grepl(
- "^'[0-9]{4}-[0-9]{2}-[0-9]{2}(\\s[0-9]{2}:[0-9]{2}(:[0-9]{2})?)?'$",
- value
- )) {
- errors <- c(
- errors,
- sprintf(
- "[%s] is a date — value '%s' should be a quoted date string, e.g. '2020-01-31'",
- field,
- value
- )
- )
- }
-
- } else if (val_type %in% time_validations) {
- if (!operator %in% num_ops) {
- errors <- c(
- errors,
- sprintf(
- "[%s] is a time — operator '%s' is not valid. Use one of: %s",
- field,
- operator,
- paste(num_ops, collapse = ", ")
- )
- )
- }
- if (!grepl("^'[0-9]{2}:[0-9]{2}(:[0-9]{2})?'$", value)) {
- errors <- c(
- errors,
- sprintf(
- "[%s] is a time — value '%s' should be a quoted time string, e.g. '14:30:00'",
- field,
- value
- )
- )
- }
-
- } else if (field_type %in% categorical_types) {
- if (!operator %in% cat_ops) {
- errors <- c(
- errors,
- sprintf(
- "[%s] is categorical — operator '%s' is not valid. Use one of: %s",
- field,
- operator,
- paste(cat_ops, collapse = ", ")
- )
- )
- }
-
- # Validate value is a known choice code
- choices_raw <- if (has_choices)
- dictionary[[col_choices]][row_i]
- else
- NA
- if (!is.na(choices_raw) && nchar(trimws(choices_raw)) > 0) {
- choice_codes <- trimws(gsub(",.+?(\\||$)", "", gsub(
- "^\\s*", "", strsplit(choices_raw, "\\|")[[1]]
- )))
- value_unquoted <- gsub("^'|'$", "", value)
- if (!value_unquoted %in% choice_codes) {
- errors <- c(
- errors,
- sprintf(
- "[%s] is categorical — '%s' is not a valid choice code. Valid codes: %s",
- field,
- value_unquoted,
- paste(choice_codes, collapse = ", ")
- )
- )
- }
- }
-
- if (!grepl("^'.*'$", value)) {
- errors <- c(errors,
- sprintf(
- "[%s] is categorical — value should be quoted, e.g. '1'",
- field
- ))
- }
-
- } else {
- # Plain text field
- if (!operator %in% text_ops) {
- errors <- c(
- errors,
- sprintf(
- "[%s] is a text field — operator '%s' is not valid. Use one of: %s",
- field,
- operator,
- paste(text_ops, collapse = ", ")
- )
- )
- }
- if (!grepl("^'.*'$", value)) {
- errors <- c(
- errors,
- sprintf(
- "[%s] is a text field — value should be quoted, e.g. 'some text'",
- field
- )
- )
- }
- }
- }
-
- if (length(errors) > 0) {
- return(list(
- valid = FALSE,
- message = paste(errors, collapse = "\n")
- ))
- }
-
- list(valid = TRUE, message = "Filter is valid.")
-}
-
-
-
#' Test app for the redcap_read_shiny_module
#'
#' @rdname redcap_read_shiny_module
@@ -9188,10 +8646,16 @@ redcap_demo_app <- function() {
server <- function(input, output, session) {
data_val <- m_redcap_readServer(id = "data")
- output$data <- DT::renderDataTable({
- shiny::req(data_val$data)
- data_val$data()
- }, options = list(scrollX = TRUE, pageLength = 5), )
+ output$data <- DT::renderDataTable(
+ {
+ shiny::req(data_val$data)
+ data_val$data()
+ },
+ options = list(
+ scrollX = TRUE,
+ pageLength = 5
+ ),
+ )
output$code <- shiny::renderPrint({
shiny::req(data_val$code)
data_val$code()
@@ -10590,7 +10054,7 @@ regression_server <- function(id,
rv$list$regression$models <- model_lists
},
error = function(err) {
- showNotification(paste(i18n$t("Creating regression models failed with the following error:"), err), type = "error")
+ showNotification(paste(i18n$t("Creating regression models failed with the following error:"), err), type = "err")
}
)
}
@@ -10655,7 +10119,7 @@ regression_server <- function(id,
showNotification(paste0(warn), type = "warning")
},
error = function(err) {
- showNotification(paste(i18n$t("Creating a regression table failed with the following error:"), err), type = "error")
+ showNotification(paste(i18n$t("Creating a regression table failed with the following error:"), err), type = "err")
}
)
}
@@ -10733,7 +10197,7 @@ regression_server <- function(id,
gg_theme_shiny()
},
error = function(err) {
- showNotification(paste0(err), type = "error")
+ showNotification(paste0(err), type = "err")
}
)
})
@@ -10793,7 +10257,7 @@ regression_server <- function(id,
# showNotification(paste0(warn), type = "warning")
# },
error = function(err) {
- showNotification(paste(i18n$t("Running model assumptions checks failed with the following error:"), err), type = "error")
+ showNotification(paste(i18n$t("Running model assumptions checks failed with the following error:"), err), type = "err")
}
)
}
@@ -10864,7 +10328,7 @@ regression_server <- function(id,
out <- patchwork::wrap_plots(ls, ncol = if (length(ls) == 1) 1 else 2)
},
error = function(err) {
- showNotification(err, type = "error")
+ showNotification(err, type = "err")
}
)
@@ -12534,26 +11998,15 @@ update_factor_ui <- function(id) {
),
fluidRow(
column(
- width = 3,
+ width = 6,
shinyWidgets::virtualSelectInput(
inputId = ns("variable"),
- label = i18n$t("Choose variable:"),
+ label = i18n$t("Factor variable to reorder:"),
choices = NULL,
width = "100%",
zIndex = 50
)
),
- column(
- width = 3,
- class = "d-flex align-items-end",
- actionButton(
- disabled = TRUE,
- inputId = ns("drop_levels"),
- label = tagList(phosphoricons::ph("sort-ascending"), i18n$t("Drop empty")),
- class = "btn-outline-primary mb-3",
- width = "100%"
- )
- ),
column(
width = 3,
class = "d-flex align-items-end",
@@ -12586,9 +12039,7 @@ update_factor_ui <- function(id) {
class = "float-end",
shinyWidgets::prettyCheckbox(
inputId = ns("new_var"),
- label = i18n$t(
- "Create a new variable; otherwise replaces (Updating labels always creates new variable)"
- ),
+ label = i18n$t("Create a new variable; otherwise replaces (Updating labels always creates new variable)"),
value = FALSE,
status = "primary",
outline = TRUE,
@@ -12643,20 +12094,6 @@ update_factor_server <- function(id, data_r = reactive(NULL)) {
rv$data_grid <- grid
})
- observeEvent(rv$data_grid, {
- variable <- req(input$variable)
- if (isTRUE(has_empty_levels(rv$data[[variable]]))) {
- # browser()
- updateActionButton(inputId = "drop_levels", disabled = FALSE)
- } else {
- updateActionButton(inputId = "drop_levels", disabled = TRUE)
- }
- })
-
- observeEvent(input$drop_levels, {
- rv$data_grid <- rv$data_grid[!rv$data_grid$Freq==0,]
- })
-
observeEvent(input$sort_levels, {
if (input$sort_levels %% 2 == 1) {
decreasing <- FALSE
@@ -12740,7 +12177,7 @@ update_factor_server <- function(id, data_r = reactive(NULL)) {
)
data <- tryCatch({
- with_labels(data, {
+ with_labels(data,{
rlang::exec(factor_new_levels_labels,
!!!modifyList(parameters, val = list(data = data)))
})
@@ -12750,7 +12187,7 @@ update_factor_server <- function(id, data_r = reactive(NULL)) {
"We encountered the following error creating the new factor:",
err
),
- type = "error")
+ type = "err")
})
# browser()
@@ -12904,15 +12341,6 @@ unique_names <- function(new, existing = character()) {
}
-has_empty_levels <- function(x) {
- if (is.factor(x)) {
- any(!levels(x) %in% x)
- } else {
- return(FALSE)
- }
-}
-
-
########
#### Current file: /Users/au301842/FreesearchR/R//update-variables-ext.R
########
@@ -15443,7 +14871,7 @@ server <- function(input, output, session) {
showNotification(paste(
i18n$t("We encountered the following error showing missingness:"),
err
- ), type = "error")
+ ), type = "err")
})
})
@@ -15700,7 +15128,6 @@ server <- function(input, output, session) {
inputId = "column_filter",
label = i18n$t("Select data types to include"),
selected = unique(data_type(rv$data)),
- #[unique(data_type(rv$data))!="text"],
choices = unique(data_type(rv$data)),
updateOn = "change",
multiple = TRUE,
@@ -15793,58 +15220,48 @@ server <- function(input, output, session) {
######### Data filter
# IDEAFilter has the least cluttered UI, but might have a License issue
# Consider using shinyDataFilter, though not on CRAN
- data_filter_raw <- IDEAFilter::IDEAFilter(
+ data_filter <- IDEAFilter::IDEAFilter(
"data_filter",
- data = shiny::reactive(non_character_cols(rv$data_variables)),
+ data = shiny::reactive(rv$data_variables),
verbose = TRUE
)
- data_filter <- reactive({
- apply_idea_filter(data_filter_raw, rv$data_variables)
+ shiny::observeEvent(list(
+ shiny::reactive(rv$data_variables),
+ shiny::reactive(rv$data_original),
+ data_filter(),
+ # regression_vars(),
+ input$complete_cutoff
+ ),
+ {
+ ### Save filtered data
+ rv$data_filtered <- data_filter()
+
+ ### Save filtered data
+ ### without empty factor levels
+ rv$list$data <- data_filter() |>
+ REDCapCAST::fct_drop() |>
+ (\(.x) {
+ .x[!sapply(.x, is.character)]
+ })()
+
+ ## This looks messy!! But it works as intended for now
+
+ out <- gsub("filter", "dplyr::filter", gsub("\\s{2,}", " ", paste0(capture.output(
+ attr(rv$data_filtered, "code")
+ ), collapse = " ")))
+
+ out <- strsplit(out, "%>%") |>
+ unlist() |>
+ (\(.x) {
+ paste(c("df <- df", .x[-1], "REDCapCAST::fct_drop()"), collapse = "|> \n ")
+ })()
+
+ rv$code <- append_list(data = out,
+ list = rv$code,
+ index = "filter")
})
- shiny::observeEvent(
- list(
- shiny::reactive(rv$data_variables),
- shiny::reactive(rv$data_original),
- data_filter_raw(),
- # regression_vars(),
- input$complete_cutoff
- ),
- {
- ### Save filtered data
- # browser()
- # rv$data_filtered <- apply_idea_filter(data_filter_raw, rv$data_variables)()
- rv$data_filtered <- data_filter()
-
- ### Save filtered data
- ### ~~without empty factor levels~~
- ### All factor levels are kept, but can be manually removed
- # browser()
- rv$list$data <- rv$data_filtered #|>
- # # REDCapCAST::fct_drop() |>
- # (\(.x) {
- # .x[!sapply(.x, is.character)]
- # })()
-
- ## This looks messy!! But it works as intended for now
- # browser()
- out <- gsub("filter", "dplyr::filter", gsub("\\s{2,}", " ", paste0(capture.output(
- attr(data_filter_raw(), "code")
- ), collapse = " ")))
-
- out <- strsplit(out, "%>%") |>
- unlist() |>
- (\(.x) {
- paste(c("df <- df", .x[-1]), collapse = "|> \n ")
- })()
-
- rv$code <- append_list(data = out,
- list = rv$code,
- index = "filter")
- }
- )
-
######### Data preview
### Overview
@@ -15862,7 +15279,7 @@ server <- function(input, output, session) {
observeEvent(input$modal_browse, {
tryCatch({
show_data(
- rv$data_filtered,
+ REDCapCAST::fct_drop(rv$data_filtered),
title = i18n$t("Uploaded data overview"),
type = "modal"
)
@@ -15870,7 +15287,7 @@ server <- function(input, output, session) {
showNotification(paste(
i18n$t("We encountered the following error browsing your data:"),
err
- ), type = "error")
+ ), type = "err")
})
})
@@ -15896,7 +15313,7 @@ server <- function(input, output, session) {
showNotification(paste(
i18n$t("We encountered the following error showing missingness:"),
err
- ), type = "error")
+ ), type = "err")
})
})
@@ -16103,7 +15520,7 @@ server <- function(input, output, session) {
# }
# },
# error = function(err) {
- # showNotification(err, type = "error")
+ # showNotification(err, type = "err")
# }
# )
@@ -16262,7 +15679,7 @@ server <- function(input, output, session) {
"We encountered the following error creating your report: "
),
err
- ), type = "error")
+ ), type = "err")
})
})
file.rename(paste0("www/report.", type), file)
diff --git a/inst/translations/translation_da.csv b/inst/translations/translation_da.csv
index 4f3752bd..ce9abc8e 100644
--- a/inst/translations/translation_da.csv
+++ b/inst/translations/translation_da.csv
@@ -55,6 +55,7 @@
"Imported data","Importeret data"
"www/intro.md","www/intro.md"
"Choose your data","Vælg dine data"
+"Factor variable to reorder:","Kategoriske variabel der skal ændres:"
"Sort by levels","Sorter efter niveauer"
"Sort by count","Sorter efter antal"
"Update factor variable","Updater faktor-variabel"
@@ -147,12 +148,16 @@
"Import data from REDCap","Importér data fra REDCap"
"REDCap server","REDCap-server"
"Web address","Serveradresse"
+"Format should be either 'https://redcap.your.institution/' or 'https://your.institution/redcap/'","Adressen skal være som 'https://redcap.your.institution/' eller 'https://your.institution/redcap/'"
"API token","API-nøgle"
+"The token is a string of 32 numbers and letters.","En API-nøgle består af ialt 32 tal og bogstaver."
"Connect","Forbind"
"Data import parameters","Data import parameters"
+"Select fields/variables to import and click the funnel to apply optional filters","Vælg variabler, der skal importeres og tryk på tragten for at anvende valgfrie filtre"
"Import","Import"
"Click to see data dictionary","Tryk for at se metadata (Data Dictionary)"
"Connected to server!","Forbindelse til serveren oprettet!"
+"The {data_rv$info$project_title} project is loaded.","{data_rv$info$project_title}-projektet er forbundet."
"Data dictionary","Data dictionary"
"Preview:","Forsmag:"
"Imported data set","Importeret datasæt"
@@ -160,6 +165,8 @@
"Specify the data format","Specificér dataformatet"
"Fill missing values?","Skal manglende observationer udfyldes?"
"Requested data was retrieved!","Det udvalgte data blev hentet!"
+"Data retrieved, but it looks like only the ID was retrieved from the server. Please check with your REDCap administrator that you have required permissions for data access.","Data er hentet, men det ser ud til kun at indeholde ID-variablen. Du skal kontakte din REDCap-administrator og sikre dig at du har adgang til faktisk at hente de udvalgte data."
+"Data retrieved, but it looks like not all requested fields were retrieved from the server. Please check with your REDCap administrator that you have required permissions for data access.","Data er hentet, men det ser ud til kun at indeholde nogle af de udvalgte variabler. Du skal kontakte din REDCap-administrator og sikre dig at du har adgang til faktisk at hente de udvalgte data."
"Click to see the imported data","Tryk for at se de importerede data"
"Regression table","Regressionstabel"
"Import a dataset from an environment","Importer et datasæt fra et kodemiljø"
@@ -284,6 +291,7 @@
"No data present.","Ingen data tilstede."
"You have provided a complete dataset with no missing values.","Data er uden manglende observationer."
"Start by loading data.","Start med at vælge data."
+"Create a new variable; otherwise replaces (Updating labels always creates new variable)","Create a new variable; otherwise replaces (Updating labels always creates new variable)"
"Data classes and missing observations","Data classes and missing observations"
"We encountered the following error showing missingness:","We encountered the following error showing missingness:"
"Please confirm data reset!","Please confirm data reset!"
@@ -315,9 +323,3 @@
"Settings","Settings"
"Create new factor","Create new factor"
"Choose color palette","Choose color palette"
-"Optional filter logic (e.g., [gender] = 'female')","Optional filter logic (e.g., [gender] = 'female')"
-"Drop empty","Drop empty"
-"Choose variable:","Choose variable:"
-"An empty data set was imported. Please review data filter.","An empty data set was imported. Please review data filter."
-"An error was encountered exporting data. Please review data filter.","An error was encountered exporting data. Please review data filter."
-"Likert diagram","Likert diagram"
diff --git a/inst/translations/translation_sw.csv b/inst/translations/translation_sw.csv
index a375e0a5..96a7a109 100644
--- a/inst/translations/translation_sw.csv
+++ b/inst/translations/translation_sw.csv
@@ -55,6 +55,7 @@
"Imported data","Data iliyoingizwa"
"www/intro.md","www/intro.md"
"Choose your data","Chagua data yako"
+"Factor variable to reorder:","Kigezo cha vipengele ili kupanga upya:"
"Sort by levels","Panga kwa viwango"
"Sort by count","Panga kwa hesabu"
"Update factor variable","Sasisha kigezo cha kipengele"
@@ -147,12 +148,16 @@
"Import data from REDCap","Ingiza data kutoka REDCap"
"REDCap server","Seva ya REDCap"
"Web address","Anwani ya wavuti"
+"Format should be either 'https://redcap.your.institution/' or 'https://your.institution/redcap/'","Muundo unapaswa kuwa 'https://redcap.your.institution/' au 'https://your.institution/redcap/'"
"API token","Tokeni ya API"
+"The token is a string of 32 numbers and letters.","Tokeni ni mfuatano wa nambari na herufi 32."
"Connect","Unganisha"
"Data import parameters","Vigezo vya kuingiza data"
+"Select fields/variables to import and click the funnel to apply optional filters","Chagua sehemu/vigezo vya kuingiza na ubofye faneli ili kutumia vichujio vya hiari"
"Import","Ingiza"
"Click to see data dictionary","Bofya ili kuona kamusi ya data"
"Connected to server!","Imeunganishwa na seva!"
+"The {data_rv$info$project_title} project is loaded.","Mradi wa {data_rv$info$project_title} umepakiwa."
"Data dictionary","Kamusi ya data"
"Preview:","Hakikisho:"
"Imported data set","Seti ya data iliyoingizwa"
@@ -160,6 +165,8 @@
"Specify the data format","Bainisha umbizo la data"
"Fill missing values?","Jaza thamani zinazokosekana?"
"Requested data was retrieved!","Data iliyoombwa ilipatikana!"
+"Data retrieved, but it looks like only the ID was retrieved from the server. Please check with your REDCap administrator that you have required permissions for data access.","Data imerejeshwa, lakini inaonekana ni kitambulisho pekee kilichorejeshwa kutoka kwa seva. Tafadhali wasiliana na msimamizi wako wa REDCap kama una ruhusa zinazohitajika kwa ufikiaji wa data."
+"Data retrieved, but it looks like not all requested fields were retrieved from the server. Please check with your REDCap administrator that you have required permissions for data access.","Data imerejeshwa, lakini inaonekana kama si sehemu zote zilizoombwa zilizorejeshwa kutoka kwa seva. Tafadhali wasiliana na msimamizi wako wa REDCap kama una ruhusa zinazohitajika kwa ufikiaji wa data."
"Click to see the imported data","Bofya ili kuona data iliyoingizwa"
"Regression table","Jedwali la urejeshaji"
"Import a dataset from an environment","Ingiza seti ya data kutoka kwa mazingira"
@@ -284,6 +291,7 @@
"No data present.","No data present."
"You have provided a complete dataset with no missing values.","You have provided a complete dataset with no missing values."
"Start by loading data.","Start by loading data."
+"Create a new variable; otherwise replaces (Updating labels always creates new variable)","Create a new variable; otherwise replaces (Updating labels always creates new variable)"
"Data classes and missing observations","Data classes and missing observations"
"We encountered the following error showing missingness:","We encountered the following error showing missingness:"
"Please confirm data reset!","Please confirm data reset!"
@@ -315,9 +323,3 @@
"Settings","Settings"
"Create new factor","Create new factor"
"Choose color palette","Choose color palette"
-"Optional filter logic (e.g., [gender] = 'female')","Optional filter logic (e.g., [gender] = 'female')"
-"Drop empty","Drop empty"
-"Choose variable:","Choose variable:"
-"An empty data set was imported. Please review data filter.","An empty data set was imported. Please review data filter."
-"An error was encountered exporting data. Please review data filter.","An error was encountered exporting data. Please review data filter."
-"Likert diagram","Likert diagram"
diff --git a/man/colorSelectInput.Rd b/man/colorSelectInput.Rd
index 0f673a0b..37561b0f 100644
--- a/man/colorSelectInput.Rd
+++ b/man/colorSelectInput.Rd
@@ -9,7 +9,7 @@ colorSelectInput(
inputId,
label,
choices,
- selected = NULL,
+ selected = "",
previews = 4,
...,
placeholder = ""
diff --git a/man/create_baseline.Rd b/man/create_baseline.Rd
index bca41929..23b3621f 100644
--- a/man/create_baseline.Rd
+++ b/man/create_baseline.Rd
@@ -12,8 +12,7 @@ create_baseline(
add.diff = FALSE,
add.overall = FALSE,
theme = c("jama", "lancet", "nejm", "qjecon"),
- detail_level = c("minimal", "extended"),
- drop_empty = FALSE
+ detail_level = c("minimal", "extended")
)
}
\arguments{
diff --git a/man/data-plots.Rd b/man/data-plots.Rd
index 8f6534f4..5229751a 100644
--- a/man/data-plots.Rd
+++ b/man/data-plots.Rd
@@ -1,7 +1,7 @@
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/data_plots.R, R/plot_bar.R, R/plot_box.R,
-% R/plot_hbar.R, R/plot_likert.R, R/plot_ridge.R, R/plot_sankey.R,
-% R/plot_scatter.R, R/plot_violin.R
+% R/plot_hbar.R, R/plot_ridge.R, R/plot_sankey.R, R/plot_scatter.R,
+% R/plot_violin.R
\name{data-plots}
\alias{data-plots}
\alias{data_visuals_ui}
@@ -11,7 +11,6 @@
\alias{plot_box}
\alias{plot_box_single}
\alias{plot_hbars}
-\alias{plot_likert}
\alias{plot_ridge}
\alias{sankey_ready}
\alias{plot_sankey}
@@ -49,8 +48,6 @@ plot_box_single(data, pri, sec = NULL, seed = 2103, color.palette = "viridis")
plot_hbars(data, pri, sec, ter = NULL, color.palette = "viridis")
-plot_likert(data, pri, sec = NULL, ter = NULL, color.palette = "viridis")
-
plot_ridge(data, x, y, z = NULL, color.palette = "viridis", ...)
sankey_ready(data, pri, sec, numbers = "count", ...)
@@ -110,8 +107,6 @@ ggplot2 object
ggplot2 object
-ggplot2 object
-
data.frame
ggplot2 object
@@ -133,8 +128,6 @@ Create nice box-plots
Nice horizontal stacked bars (Grotta bars)
-Nice horizontal bar plot centred on the central category
-
Plot nice ridge plot
Readying data for sankey plot
@@ -171,11 +164,6 @@ mtcars |> plot_hbars(pri = "carb", sec = "cyl", ter="am")
mtcars |> plot_hbars(pri = "carb", sec = NULL,color.palette="Blues")
mtcars |> plot_hbars(pri = "carb", sec = NULL,color.palette="Magma")
mtcars |> plot_hbars(pri = "carb", sec = NULL,color.palette="Viridis")
-mtcars |> plot_likert(pri = "carb", sec = "cyl")
-mtcars |> plot_likert(pri = "carb", sec = "cyl", ter="am")
-mtcars |> plot_likert(pri = "cyl",color.palette="Blues")
-mtcars |> plot_likert(pri = "carb", sec = NULL,color.palette="Magma")
-mtcars |> plot_likert(pri = "carb", sec = c("cyl","am"),color.palette="Viridis")
mtcars |>
default_parsing() |>
plot_ridge(x = "mpg", y = "cyl")
diff --git a/man/validate_redcap_filter.Rd b/man/validate_redcap_filter.Rd
deleted file mode 100644
index 9fb42c5d..00000000
--- a/man/validate_redcap_filter.Rd
+++ /dev/null
@@ -1,72 +0,0 @@
-% Generated by roxygen2: do not edit by hand
-% Please edit documentation in R/redcap_read_shiny_module.R
-\name{validate_redcap_filter}
-\alias{validate_redcap_filter}
-\title{Validate a REDCap server-side filter string against a data dictionary}
-\usage{
-validate_redcap_filter(filter, dictionary)
-}
-\arguments{
-\item{filter}{A single character string containing the filter expression,
-e.g. \code{"[age] > 18"} or \code{"[cohabitation] = '1' AND [age] > 18"}.}
-
-\item{dictionary}{A data frame representing the REDCap data dictionary in
-API export format, as returned by e.g. \code{REDCapCAST::get_redcap_metadata()}.
-Must contain at least the columns \code{field_name} and \code{field_type}.
-The columns \code{text_validation_type_or_show_slider_number} and
-\code{select_choices_or_calculations} are used when present for stricter
-type and choice validation.}
-}
-\value{
-A named list with two elements:
-\describe{
-\item{\code{valid}}{Logical. \code{TRUE} if the filter passes all checks.}
-\item{\code{message}}{Character. \code{"Filter is valid."} on success, or
-a newline-separated string of error messages describing every problem
-found.}
-}
-}
-\description{
-Checks that a REDCap filter expression is syntactically correct and
-consistent with the field types defined in the project data dictionary.
-Plain text without field references is always rejected. Multi-clause
-filters joined by \code{AND} or \code{OR} are supported.
-}
-\details{
-Validation rules by field type:
-\describe{
-\item{\code{calc}}{Numeric fields. Value must be an unquoted number.
-All comparison operators (\code{=}, \code{!=}, \code{<}, \code{>},
-\code{<=}, \code{>=}) are accepted.}
-\item{\code{text} with date validation}{Fields with validation type
-\code{date_ymd}, \code{date_dmy}, \code{datetime_*}, etc. Value must be
-a quoted date/datetime string in \code{'YYYY-MM-DD'} format. All
-comparison operators are accepted.}
-\item{\code{text} with time validation}{Fields with validation type
-\code{time_hh_mm_ss} or \code{time_mm_ss}. Value must be a quoted time
-string, e.g. \code{'14:30:00'}. All comparison operators are accepted.}
-\item{\code{radio} / \code{dropdown}}{Categorical fields. Value must be a
-quoted choice code (e.g. \code{'1'}) that exists in the field's choice
-list. Only \code{=} and \code{!=} are accepted.}
-\item{\code{text} (plain)}{Free-text fields. Value must be a quoted string.
-Only \code{=} and \code{!=} are accepted.}
-}
-}
-\examples{
-\dontrun{
-dict <- REDCapCAST::get_redcap_metadata(
- uri = "https://redcap.example.com/api/",
- token = Sys.getenv("REDCAP_TOKEN")
-)
-
-validate_redcap_filter("[age] > 18", dict)
-#> list(valid = TRUE, message = "Filter is valid.")
-
-validate_redcap_filter("only plain text", dict)
-#> list(valid = FALSE, message = "Filter must contain at least one field ...")
-
-validate_redcap_filter("[cohabitation] = '1' AND [age] > 18", dict)
-#> list(valid = TRUE, message = "Filter is valid.")
-}
-
-}
diff --git a/renv.lock b/renv.lock
index 96709a25..567601cc 100644
--- a/renv.lock
+++ b/renv.lock
@@ -35,12 +35,12 @@
},
"DHARMa": {
"Package": "DHARMa",
- "Version": "0.4.7",
+ "Version": "0.4.6",
"Source": "Repository",
"Title": "Residual Diagnostics for Hierarchical (Multi-Level / Mixed) Regression Models",
- "Date": "2024-10-16",
- "Authors@R": "c(person(\"Florian\", \"Hartig\", email = \"florian.hartig@biologie.uni-regensburg.de\", role = c(\"aut\", \"cre\"), comment=c(ORCID=\"0000-0002-6255-9059\")), person(\"Lukas\", \"Lohse\", role = \"ctb\"), person(\"Melina\", \"de Souza leite\", role = \"ctb\"))",
- "Description": "The 'DHARMa' package uses a simulation-based approach to create readily interpretable scaled (quantile) residuals for fitted (generalized) linear mixed models. Currently supported are linear and generalized linear (mixed) models from 'lme4' (classes 'lmerMod', 'glmerMod'), 'glmmTMB', 'GLMMadaptive', and 'spaMM'; phylogenetic linear models from 'phylolm' (classes 'phylolm' and 'phyloglm'); generalized additive models ('gam' from 'mgcv'); 'glm' (including 'negbin' from 'MASS', but excluding quasi-distributions) and 'lm' model classes. Moreover, externally created simulations, e.g. posterior predictive simulations from Bayesian software such as 'JAGS', 'STAN', or 'BUGS' can be processed as well. The resulting residuals are standardized to values between 0 and 1 and can be interpreted as intuitively as residuals from a linear regression. The package also provides a number of plot and test functions for typical model misspecification problems, such as over/underdispersion, zero-inflation, and residual spatial, phylogenetic and temporal autocorrelation.",
+ "Date": "2022-09-08",
+ "Authors@R": "c(person(\"Florian\", \"Hartig\", email = \"florian.hartig@biologie.uni-regensburg.de\", role = c(\"aut\", \"cre\"), comment=c(ORCID=\"0000-0002-6255-9059\")), person(\"Lukas\", \"Lohse\", role = \"ctb\"))",
+ "Description": "The 'DHARMa' package uses a simulation-based approach to create readily interpretable scaled (quantile) residuals for fitted (generalized) linear mixed models. Currently supported are linear and generalized linear (mixed) models from 'lme4' (classes 'lmerMod', 'glmerMod'), 'glmmTMB' 'GLMMadaptive' and 'spaMM', generalized additive models ('gam' from 'mgcv'), 'glm' (including 'negbin' from 'MASS', but excluding quasi-distributions) and 'lm' model classes. Moreover, externally created simulations, e.g. posterior predictive simulations from Bayesian software such as 'JAGS', 'STAN', or 'BUGS' can be processed as well. The resulting residuals are standardized to values between 0 and 1 and can be interpreted as intuitively as residuals from a linear regression. The package also provides a number of plot and test functions for typical model misspecification problems, such as over/underdispersion, zero-inflation, and residual spatial and temporal autocorrelation.",
"Depends": [
"R (>= 3.0.2)"
],
@@ -59,7 +59,7 @@
],
"Suggests": [
"knitr",
- "testthat (>= 3.0.0)",
+ "testthat",
"rmarkdown",
"KernSmooth",
"sfsmisc",
@@ -68,8 +68,7 @@
"mgcViz (>= 0.1.9)",
"spaMM (>= 3.2.0)",
"GLMMadaptive",
- "glmmTMB (>= 1.1.2.3)",
- "phylolm (>= 2.6.5)"
+ "glmmTMB (>= 1.1.2.3)"
],
"Enhances": [
"phyr",
@@ -81,12 +80,11 @@
"URL": "http://florianhartig.github.io/DHARMa/",
"LazyData": "TRUE",
"BugReports": "https://github.com/florianhartig/DHARMa/issues",
- "RoxygenNote": "7.3.2",
+ "RoxygenNote": "7.2.1",
"VignetteBuilder": "knitr",
"Encoding": "UTF-8",
- "Config/testthat/edition": "3",
"NeedsCompilation": "no",
- "Author": "Florian Hartig [aut, cre] (), Lukas Lohse [ctb], Melina de Souza leite [ctb]",
+ "Author": "Florian Hartig [aut, cre] (), Lukas Lohse [ctb]",
"Maintainer": "Florian Hartig ",
"Repository": "CRAN"
},
@@ -2347,7 +2345,7 @@
},
"datamods": {
"Package": "datamods",
- "Version": "1.5.3",
+ "Version": "1.5.2",
"Source": "Repository",
"Title": "Modules to Import and Manipulate Data in 'Shiny'",
"Authors@R": "c(person(given = \"Victor\", family = \"Perrier\", role = c(\"aut\", \"cre\", \"cph\"), email = \"victor.perrier@dreamrs.fr\"), person(given = \"Fanny\", family = \"Meyer\", role = \"aut\"), person(given = \"Samra\", family = \"Goumri\", role = \"aut\"), person(given = \"Zauad Shahreer\", family = \"Abeer\", role = \"aut\", email = \"shahreyar.abeer@gmail.com\"), person(given = \"Eduard\", family = \"Szöcs\", role = \"ctb\", email = \"eduardszoecs@gmail.com\") )",
@@ -8359,7 +8357,7 @@
},
"shinybusy": {
"Package": "shinybusy",
- "Version": "0.3.3",
+ "Version": "0.3.2",
"Source": "Repository",
"Title": "Busy Indicators and Notifications for 'Shiny' Applications",
"Authors@R": "c(person(\"Fanny\", \"Meyer\", role = \"aut\"), person(\"Victor\", \"Perrier\", email = \"victor.perrier@dreamrs.fr\", role = c(\"aut\", \"cre\")), person(\"Silex Technologies\", comment = \"https://www.silex-ip.com\", role = \"fnd\"))",
@@ -8372,8 +8370,8 @@
"jsonlite",
"htmlwidgets"
],
- "RoxygenNote": "7.3.1",
- "URL": "https://github.com/dreamRs/shinybusy, https://dreamrs.github.io/shinybusy/",
+ "RoxygenNote": "7.2.3",
+ "URL": "https://github.com/dreamRs/shinybusy",
"BugReports": "https://github.com/dreamRs/shinybusy/issues",
"Suggests": [
"testthat",