forked from Novartis/tidymodules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUtilityModule.R
30 lines (28 loc) · 833 Bytes
/
UtilityModule.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#' TidyModule utility class
#'
#' @description
#' A module used by some of the utility functions to retrieve the ModStore object.
#'
#' @details
#' This utility module is a special TidyModule class that doesn't get registered in the ModStore.
#' It is used to retrieve ModStore objects, like sessions and modules.
#' @examples
#' \dontrun{
#' # Print current session Id
#' UtilityModule$new()$getSessionId()
#' }
UtilityModule <- R6::R6Class(
"UtilityModule",
inherit = TidyModule,
public = list(
#' @description
#' Initialize function.
#' @return `UtilityModule` object.
initialize = function(){
if(is.null(private$shared$store))
private$shared$store <- ModStore$new()
#### Set Shiny Session Here #######
private$shiny_session <- shiny::getDefaultReactiveDomain()
}
)
)