###
###
###
#' @export
#'
PipelineA_Description_conf <- function(){
Config(
fullname = 'PipelineA_Description',
mode = 'process'
)
}
#' @export
PipelineA_Description_ui <- function(id){
ns <- NS(id)
}
#' @export
PipelineA_Description_server <- function(id,
dataIn = reactive({NULL}),
steps.enabled = reactive({NULL}),
remoteReset = reactive({FALSE}),
steps.status = reactive({NULL}),
current.pos = reactive({1}),
path = NULL
){
# Define default selected values for widgets
# By default, this list is empty for the Description module
# but it can be customized
widgets.default.values <- NULL
rv.custom.default.values <- NULL
###-------------------------------------------------------------###
### ###
### ------------------- MODULE SERVER --------------------------###
### ###
###-------------------------------------------------------------###
moduleServer(id, function(input, output, session) {
ns <- session$ns
# Insert necessary code which is hosted by MagellanNTK
# DO NOT MODIFY THIS LINE
core.code <- Get_Workflow_Core_Code(
mode = 'process',
name = id,
w.names = names(widgets.default.values),
rv.custom.names = names(rv.custom.default.values)
)
eval(str2expression(core.code))
###### ------------------- Code for Description (step 0) ------------------------- #####
output$Description <- renderUI({
md.file <- paste0(id, '.md')
file <- file.path('md', md.file)
tagList(
if (file.exists(file))
includeMarkdown(file)
else
p('No Description available'),
uiOutput(ns('datasetDescription_ui')),
# Insert validation button
uiOutput(ns('Description_btn_validate_ui'))
)
})
output$datasetDescription_ui <- renderUI({
# Insert your own code to vizualise some information
# about your dataset. It will appear once the 'Start' button
# has been clicked
})
output$Description_btn_validate_ui <- renderUI({
widget <- actionButton(ns("Description_btn_validate"),
"Start",
class = GlobalSettings$btn_success_color)
toggleWidget(widget, rv$steps.enabled['Description'])
})
observeEvent(input$Description_btn_validate, {
rv$dataIn <- dataIn()
dataOut$trigger <- Timestamp()
dataOut$value <- rv$dataIn
rv$steps.status['Description'] <- global$VALIDATED
})
# Insert necessary code which is hosted by MagellanNTK
# DO NOT MODIFY THIS LINE
eval(parse(text = Module_Return_Func()))
}
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.