Skip to content

Commit

Permalink
v2.0.7.9020
Browse files Browse the repository at this point in the history
* refactor: Added config file display name
   + Main Functions - Run Functions
   + Main Functions - QC Thresholds - Upload Custom Thresholds
  • Loading branch information
leppott committed Sep 14, 2023
1 parent 9666e56 commit 2e1b437
Show file tree
Hide file tree
Showing 8 changed files with 56 additions and 6 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: ContDataQC
Title: Quality Control (QC) of Continous Monitoring Data
Version: 2.0.7.9019
Version: 2.0.7.9020
Authors@R: c(
person("Erik W", "Leppo", email="Erik.Leppo@tetratech.com",role=c("aut","cre")),
person("Ann","Roseberry Lincoln", role="ctb"),
Expand Down
10 changes: 9 additions & 1 deletion NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,22 @@ NEWS-ContDataQC

<!-- NEWS.md is generated from NEWS.Rmd. Please edit that file -->

#> Last Update: 2023-09-14 16:55:51.688632
#> Last Update: 2023-09-14 17:11:42.524289

# Version History

## v2.0.7.9019

2023-09-14

- refactor: Added config file display name
- Main Functions - Run Functions
- Main Functions - QC Thresholds - Upload Custom Thresholds

## v2.0.7.9019

2023-09-14

- refactor: Edits to Shiny tabs

## v2.0.7.9018
Expand Down
10 changes: 9 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,22 @@ NEWS-ContDataQC

<!-- NEWS.md is generated from NEWS.Rmd. Please edit that file -->

#> Last Update: 2023-09-14 16:55:51.688632
#> Last Update: 2023-09-14 17:11:42.524289

# Version History

## v2.0.7.9019

2023-09-14

- refactor: Added config file display name
- Main Functions - Run Functions
- Main Functions - QC Thresholds - Upload Custom Thresholds

## v2.0.7.9019

2023-09-14

- refactor: Edits to Shiny tabs

## v2.0.7.9018
Expand Down
7 changes: 7 additions & 0 deletions NEWS.rmd
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,13 @@ cat(paste0("Last Update: ",Sys.time()))

# Version History

## v2.0.7.9020
2023-09-14

* refactor: Added config file display name
+ Main Functions - Run Functions
+ Main Functions - QC Thresholds - Upload Custom Thresholds

## v2.0.7.9019
2023-09-14

Expand Down
2 changes: 1 addition & 1 deletion inst/shiny-examples/ContDataQC/external/tab_3_MainFunc.R
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function(){
sidebarPanel(
p("1. Upload customized QC test thresholds if desired; otherwise, the default thresholds will be used.")
, p("2. Confirm correct configuration file is being used.")
, p(textOutput("fn_input_display_config"))
, p(textOutput("fn_input_display_config_main"))
, p("3. Upload input files.")
#The selected input file
#Tool tip code from https://stackoverflow.com/questions/16449252/tooltip-on-shiny-r
Expand Down
2 changes: 2 additions & 0 deletions inst/shiny-examples/ContDataQC/external/tab_3c_QCThresh.R
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ function() {
, accept = ".R")
) # tag$div ~ END
, br()
, p("Configuration file being used.")
, p(textOutput("fn_input_display_config_config"))
, br()

#Only shows the "Default configuration" button after a user-selected file has been used
Expand Down
27 changes: 26 additions & 1 deletion inst/shiny-examples/ContDataQC/server.R
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,8 @@ shinyServer(function(input, output, session) {

# Display Import FileNames----

output$fn_input_display_config <- renderText({
output$fn_input_display_config_main <- renderText({
#**SAME CODE AS CONFIG**

#Allows users to use their own configuration/threshold files for QC.
#Copies the status of the config file to this event.
Expand All @@ -123,6 +124,30 @@ shinyServer(function(input, output, session) {
return(paste0(config_type, "; ", basename(config)))


})## fn_input_display_config

output$fn_input_display_config_config <- renderText({
#**SAME CODE AS MAIN**

#Allows users to use their own configuration/threshold files for QC.
#Copies the status of the config file to this event.
config_type <- config$x

if (config_type == "uploaded") {
#If a configuration file has been uploaded, the app uses it

config <- file.path("data", input$configFile$name)

} else {
#If no configuration file has been uploaded, the default is used

config <- system.file("extdata", "Config.ORIG.R", package="ContDataQC")

}## IF ~ config_type ~ END

return(paste0(config_type, "; ", basename(config)))


})## fn_input_display_config

# Reactive, Main ----
Expand Down
2 changes: 1 addition & 1 deletion inst/shiny-examples/ContDataQC/ui.R
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ tab_5b_Console <- source("external/tab_5b_Console.R", local = TRUE)$value

shinyUI(
# VERSION, 1, current [non-EPA] ----
navbarPage("Continuous data QC, summary, and statistics - v2.0.7.9019",
navbarPage("Continuous data QC, summary, and statistics - v2.0.7.9020",
theme = shinytheme("spacelab")
,tab_1_About()
#,tab_1a_Overview()
Expand Down

0 comments on commit 2e1b437

Please sign in to comment.