-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from allaway/fix-lv
fixed a couple of bugs and cleaned ui
- Loading branch information
Showing
10 changed files
with
122 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Module UI | ||
|
||
#' @title mod_drug_screening_ui and mod_drug_screening_server | ||
#' @description A shiny Module. | ||
#' | ||
#' @param id shiny id | ||
#' @param input internal | ||
#' @param output internal | ||
#' @param session internal | ||
#' | ||
#' @rdname mod_drug_screening | ||
#' | ||
#' @keywords internal | ||
#' @export | ||
#' @importFrom shiny NS tagList | ||
mod_drug_screening_ui <- function(id){ | ||
ns <- NS(id) | ||
tagList( | ||
h2("Drug Screening Analysis"), | ||
box(h4('Module Summary'), | ||
p("Altera inimicus sed no. Congue consul eripuit est in. Ut blandit interesset mea, hinc congue quo ex, qui ad laudem volumus. Ius at everti torquatos. Eum aeque verear ei, postea sensibus te his. Quo viderer epicuri postulant cu, essent appareat efficiantur nec eu. Libris lobortis vix no. Vim at elit quas ullum. Elaboraret dissentiet ius ei, vix verterem scriptorem intellegebat in, vix case inimicus ne. Ea mea tale clita. Ne oblique invenire ius, ubique laboramus est an, usu ad oblique tractatos maluisset. Vide facilisis definitiones ei vim, in viris salutatus philosophia sit."), | ||
width = 12) | ||
) | ||
} | ||
|
||
# Module Server | ||
|
||
#' @rdname mod_drug_screening | ||
#' @export | ||
#' @keywords internal | ||
|
||
mod_drug_screening_server <- function(input, output, session, specimens){ | ||
ns <- session$ns | ||
} | ||
|
||
## To be copied in the UI | ||
# mod_drug_screening_ui("drug_screening_ui_1") | ||
|
||
## To be copied in the server | ||
# callModule(mod_drug_screening_server, "drug_screening_ui_1") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.