Module offers functionalities to visualize, manipulate, and interact with report cards that have been added to a report. It includes a previewer interface to see the cards and options to modify the report before downloading.
Cards are saved by the shiny
bookmarking mechanism.
For more details see the vignette: vignette("previewerReporter", "teal.reporter")
.
Usage
reporter_previewer_ui(id)
reporter_previewer_srv(
id,
reporter,
global_knitr = getOption("teal.reporter.global_knitr"),
rmd_output = c(html = "html_document", pdf = "pdf_document", powerpoint =
"powerpoint_presentation", word = "word_document"),
rmd_yaml_args = list(author = "NEST", title = "Report", date =
as.character(Sys.Date()), output = "html_document", toc = FALSE),
previewer_buttons = c("download", "load", "reset")
)
Arguments
- id
(
character(1)
)shiny
module instance id.- reporter
(
Reporter
) instance.- global_knitr
(
list
) ofknitr
parameters (passed toknitr::opts_chunk$set
) for customizing the rendering process.- rmd_output
(
character
) vector withrmarkdown
output types, by default all possiblepdf_document
,html_document
,powerpoint_presentation
, andword_document
. If vector is named then those names will appear in theUI
.- rmd_yaml_args
(
named list
) withRmd
yaml
header fields and their default values. Thislist
will result in the custom subset of UI inputs for the download reporter functionality. Defaultlist(author = "NEST", title = "Report", date = Sys.Date(), output = "html_document", toc = FALSE)
. Thelist
must include at least"output"
field. The default value for"output"
has to be in thermd_output
argument.(
character
) set of modules to include withc("download", "load", "reset")
possible values and"download"
is required. Defaultc("download", "load", "reset")