Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tillat tomme rader i csv-fil #524

Merged
merged 6 commits into from
Feb 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ export(publish_app)
export(publish_server)
export(publish_ui)
export(registry_status_report)
export(remove_empty_rows)
export(report_app)
export(report_server)
export(report_ui)
Expand Down
6 changes: 3 additions & 3 deletions R/checks.R
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
#' is displayed.
#'
#' @rdname checks
#' @internal
#' @noRd
#' @param input Shiny input object
#' @param conf get_config() output
levels_consistent_check <- function(input, conf) {
Expand All @@ -59,31 +59,31 @@
if (input$level_direction) {
if (input$level_green >= input$level_yellow) {
shinyjs::html("message", "")
return(TRUE)

Check warning on line 62 in R/checks.R

View workflow job for this annotation

GitHub Actions / lint

file=R/checks.R,line=62,col=9,[return_linter] Use implicit return behavior; explicit return() is not needed.
} else {
shinyjs::html("message", "")
shinyjs::html(
"message",
conf$indicator$level_inconsistent_message
)
return(FALSE)

Check warning on line 69 in R/checks.R

View workflow job for this annotation

GitHub Actions / lint

file=R/checks.R,line=69,col=9,[return_linter] Use implicit return behavior; explicit return() is not needed.
}
} else {
if (input$level_yellow >= input$level_green) {
shinyjs::html("message", "")
return(TRUE)

Check warning on line 74 in R/checks.R

View workflow job for this annotation

GitHub Actions / lint

file=R/checks.R,line=74,col=9,[return_linter] Use implicit return behavior; explicit return() is not needed.
} else {
shinyjs::html("message", "")
shinyjs::html(
"message",
conf$indicator$level_inconsistent_message
)
return(FALSE)

Check warning on line 81 in R/checks.R

View workflow job for this annotation

GitHub Actions / lint

file=R/checks.R,line=81,col=9,[return_linter] Use implicit return behavior; explicit return() is not needed.
}
}
} else {
shinyjs::html("message", "")
return(TRUE)

Check warning on line 86 in R/checks.R

View workflow job for this annotation

GitHub Actions / lint

file=R/checks.R,line=86,col=5,[return_linter] Use implicit return behavior; explicit return() is not needed.
}
}

Expand All @@ -94,7 +94,7 @@
#' @param rv A shiny::reactiveValues object
#'
#' @rdname checks
#' @internal
#' @noRd
update_check <- function(input, conf, ns, rv, level_consistent) {
if (any(c(
is.null(input$indicator),
Expand Down Expand Up @@ -131,10 +131,10 @@
)
)
if (all(no_new_values)) {
return(NULL)

Check warning on line 134 in R/checks.R

View workflow job for this annotation

GitHub Actions / lint

file=R/checks.R,line=134,col=7,[return_linter] Use implicit return behavior; explicit return() is not needed.
} else {
if (level_consistent()) {
return(

Check warning on line 137 in R/checks.R

View workflow job for this annotation

GitHub Actions / lint

file=R/checks.R,line=137,col=9,[return_linter] Use implicit return behavior; explicit return() is not needed.
shiny::actionButton(
ns("update_val"),
"Oppdat\u00e9r verdier",
Expand All @@ -142,7 +142,7 @@
)
)
} else {
return(NULL)

Check warning on line 145 in R/checks.R

View workflow job for this annotation

GitHub Actions / lint

file=R/checks.R,line=145,col=9,[return_linter] Use implicit return behavior; explicit return() is not needed.
}
}
}
Expand All @@ -156,7 +156,7 @@
#' @param rv A shiny::reactiveValues object
#'
#' @rdname checks
#' @internal
#' @noRd
update_indicator_txt_check <- function(input, conf, ns, rv) {
if (any(c(rv$title_oversize, rv$short_oversize, rv$long_oversize))) {
NULL
Expand All @@ -167,7 +167,7 @@
identical(input$ind_long, rv$ind_data$long_description)
)
if (all(no_new_text)) {
return(NULL)

Check warning on line 170 in R/checks.R

View workflow job for this annotation

GitHub Actions / lint

file=R/checks.R,line=170,col=7,[return_linter] Use implicit return behavior; explicit return() is not needed.
} else if (nrow(rv$ind_data != 0)) {
shiny::actionButton(
ns("update_txt"),
Expand Down
15 changes: 13 additions & 2 deletions R/misc.R
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ natural <- function(vals, tolerance = .Machine$double.eps^0.5) {
abs(vals - round(vals)) < tolerance
}


#' @rdname misc
#' @export
md5_checksum <- function(df, ind = "") {
Expand All @@ -52,6 +51,18 @@ md5_checksum <- function(df, ind = "") {
digest::digest(t, algo = "md5", serialize = FALSE)
}

#' Function for removing empty rows in csv input.
#' In a row ";;;;;" the values will translate to
#' NA or an empty string depending on whether the columns
#' are numeric or strings.
#'
#' @rdname misc
#' @export
remove_empty_rows <- function(df) {
return(
df[rowSums(is.na(df) | df == "") != ncol(df), ]
)
}

#' @rdname misc
#' @export
Expand Down Expand Up @@ -188,7 +199,7 @@ invalidate_cache <- function() {
}

#' @rdname misc
#' @internal
#' @noRd
validateName <- function(x, existing_names) {
if (is.null(x)) {
return(NULL)
Expand Down
2 changes: 1 addition & 1 deletion R/mod_status.R
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#'
#' @return Shiny objects for the imongr app
#'
#' #' @name mod_status
#' @name mod_status
#' @aliases status_ui status_server status_app
NULL

Expand Down
47 changes: 33 additions & 14 deletions R/mod_upload.R
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ upload_ui <- function(id) {
)
}


#' @rdname mod_upload
#' @export
upload_server <- function(id, registry_tracker, pool_verify) {
Expand All @@ -109,21 +108,23 @@ upload_server <- function(id, registry_tracker, pool_verify) {

rv_return <- shiny::reactiveValues()

## observers
# When you choose a registry
shiny::observeEvent(input$registry, {
rv_return$registry_id <- input$registry
if (!is.null(input$upload_file)) {
rv$inv_data <- rv$inv_data + 1
}
})

# When you click on the submit button
shiny::observeEvent(input$submit, {
insert_data_verify(
pool = pool_verify,
df = df(),
df = input_data(),
update = input$latest_update,
affirm = input$latest_affirm
)
insert_agg_data(pool_verify, df())
insert_agg_data(pool_verify, input_data())
rv$inv_data <- rv$inv_data + 1
shinyalert::shinyalert(conf$upload$reciept$title,
conf$upload$reciept$body,
Expand All @@ -133,15 +134,17 @@ upload_server <- function(id, registry_tracker, pool_verify) {
)
})

## reactives
df <- shiny::reactive({
# The indicator data
input_data <- shiny::reactive({
if (is.null(input$upload_file)) {
data.frame()
} else {
csv_to_df(input$upload_file$datapath, input$sep, input$dec_sep)
csv_to_df(input$upload_file$datapath, input$sep, input$dec_sep) |>
remove_empty_rows()
}
})

# Indicator parameters and descriptions
ind <- shiny::reactive({
if (is.null(input$registry)) {
data.frame()
Expand All @@ -150,7 +153,11 @@ upload_server <- function(id, registry_tracker, pool_verify) {
}
})

## ui sidebar panel
###########################
##### On the side bar #####
###########################

# The registry drop down menu
output$select_registry <- shiny::renderUI({
select_registry_ui(pool_verify, conf,
input_id = ns("registry"),
Expand All @@ -159,6 +166,7 @@ upload_server <- function(id, registry_tracker, pool_verify) {
)
})

# The file upload menu
output$upload_file <- shiny::renderUI({
shiny::fileInput(
ns("upload_file"),
Expand All @@ -174,60 +182,70 @@ upload_server <- function(id, registry_tracker, pool_verify) {
)
})

# The submit button
output$submit <- shiny::renderUI({
rv$inv_data
submit_ui(
ns("submit"), conf, pool_verify, input$upload_file,
input$registry, df(), ind(), "verify"
input$registry, input_data(), ind(), "verify"
)
})

# The wait spinner
output$spinner <- shiny::renderText({
input$submit
paste("")
})

#############################
##### On the main panel #####
#############################

## ui main panel
# The error and warning messages
output$error_report <- shiny::renderText({
rv$inv_data
error_report_ui(
pool_verify, df(), ind(),
pool_verify, input_data(), ind(),
input$upload_file, input$registry
)
})

output$warning_report <- shiny::renderText({
rv$inv_data
warning_report_ui(pool_verify, df(), input$upload_file, input$registry)
warning_report_ui(pool_verify, input_data(), input$upload_file, input$registry)
})

# The instructions
output$upload_sample_text <- shiny::renderText({
shiny::req(input$registry)
if (input$registry == "") {
NULL
} else {
upload_sample_text_ui(pool_verify, conf, input$upload_file,
input$registry,
indicators = unique(df()$ind_id)
indicators = unique(input_data()$ind_id)
)
}
})

# A sample of the selected data file
output$upload_sample <- shiny::renderTable({
rv$inv_data
upload_sample_ui(
df(), input$upload_file, input$registry,
input_data(), input$upload_file, input$registry,
input$sample_size, input$sample_type
)
})

# More instructions
output$main_doc <- shiny::renderText(conf$upload$doc$main)

# Bullet points with valid column names
output$var_doc <- shiny::renderText({
var_doc_ui(conf)
})

# Numbered list with valid indicator ids
output$valid_ind <- shiny::renderText({
paste0(
"<h4>", conf$upload$doc$valid_ind, " <i>",
Expand All @@ -244,6 +262,7 @@ upload_server <- function(id, registry_tracker, pool_verify) {
colnames = FALSE
)

# A table with example data
output$sample_data <- shiny::renderTable(
get_table(pool_verify, "data",
sample = 0.00001
Expand Down
1 change: 1 addition & 0 deletions _pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ reference:
- mod_upload
- mod_download
- mod_review
- mod_status

- title: Data
desc: >
Expand Down
2 changes: 1 addition & 1 deletion man/check_no_dg.Rd

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

17 changes: 17 additions & 0 deletions man/checks.Rd

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

20 changes: 0 additions & 20 deletions man/levels_consistent_check.Rd

This file was deleted.

11 changes: 8 additions & 3 deletions man/misc.Rd

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

31 changes: 31 additions & 0 deletions man/mod_status.Rd

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

2 changes: 1 addition & 1 deletion man/oversize_check.Rd

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

12 changes: 12 additions & 0 deletions tests/testthat/test-misc.R
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,18 @@ test_that("a consistent md5 checksum of a data frame can be provided", {
)
})

test_that("empty rows are removed from a data frame", {
test_data <- data.frame(
x = c(1, 2, 3, NA, 5, NA, 6, NA, NA),
y = c("a", "b", "c", "", "e", "f", "g", "", ""),
z = c(1, 2, 3, NA, 5, 6, 7, NA, NA)
)

expected_output <- test_data[c(-4, -8, -9), ]

expect_equal(remove_empty_rows(test_data), expected_output)
})

# For the remianing tests we need a test database
## first off with no data
if (is.null(check_db(is_test_that = FALSE))) {
Expand Down
Loading
Loading