R/workflowServerLogic.R

Defines functions WorkflowServerLogic

Documented in WorkflowServerLogic

#' Server function for workflow module in Shiny application
#' @param id Shiny module identifier

WorkflowServerLogic <- function(id) {
  shiny::moduleServer(id, function(input, output, session) {

    shiny::observeEvent(input$helpWorkflow, {
      rintrojs::introjs(
        session,
        options = list(
          "showBullets" = TRUE,
          "showProgress" = TRUE,
          "showStepNumbers" = FALSE,
          "nextLabel" = "Next",
          "prevLabel" = "Prev",
          "skipLabel" = "Skip"
        )
      )
    })

  })
}

Try the inDAGO package in your browser

Any scripts or data that you put into this service are public.

inDAGO documentation built on Aug. 8, 2025, 7:47 p.m.