R/parser-csv.R

Defines functions new_csv_block

Documented in new_csv_block

#' @section CSV block:
#' Files in CSV format provided for example by a block created via
#' [new_file_block()] may be parsed into `data.frame` by CSV blocks.
#'
#' @param sep,quote Forwarded to [utils::read.table()]
#'
#' @rdname new_parser_block
#' @export
new_csv_block <- function(sep = ",", quote = "\"", ...) {
  new_parser_block(
    function(id, file) {
      moduleServer(
        id,
        function(input, output, session) {

          sp <- reactiveVal(sep)
          qo <- reactiveVal(quote)

          observeEvent(input$sep, sp(input$sep))
          observeEvent(input$quote, qo(input$quote))

          list(
            expr = reactive(
              bquote(
                utils::read.table(file, header = TRUE, sep = .(sp),
                                  quote = .(qo), dec = ".", fill = TRUE,
                                  comment.char = ""),
                list(sp = sp(), qo = qo())
              )
            ),
            state = list(sep = sp, quote = qo)
          )
        }
      )
    },
    function(id) {
      tagList(
        textInput(
          inputId = NS(id, "sep"),
          label = "Field separator",
          value = sep
        ),
        textInput(
          inputId = NS(id, "quote"),
          label = "Quoting characters",
          value = quote
        )
      )
    },
    class = "csv_block",
    ...
  )
}

Try the blockr.core package in your browser

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

blockr.core documentation built on June 8, 2025, 1:43 p.m.