1
- # ' Report previewer module
2
- # '
1
+ # ' Reporter Previewer User Interface
3
2
# ' @description `r lifecycle::badge("experimental")`
4
- # '
5
- # ' Module offers functionalities to visualize, manipulate,
6
- # ' and interact with report cards that have been added to a report.
7
- # ' It includes a previewer interface to see the cards and options to modify the report before downloading.
8
- # '
9
- # ' For more details see the vignette: `vignette("previewerReporter", "teal.reporter")`.
10
- # '
11
- # ' @details `r global_knitr_details()`
12
- # '
13
- # ' @name reporter_previewer
14
- # '
15
- # ' @param id (`character(1)`) `shiny` module instance id.
16
- # ' @param reporter (`Reporter`) instance.
17
- # ' @param global_knitr (`list`) of `knitr` parameters (passed to `knitr::opts_chunk$set`)
18
- # ' for customizing the rendering process.
19
- # ' @inheritParams reporter_download_inputs
20
- # '
21
- # ' @return `NULL`.
22
- NULL
23
-
24
- # ' @rdname reporter_previewer
3
+ # ' reporter previewer user interface to visualize and manipulate the already added report Cards
4
+ # ' @param id `character(1)` this `shiny` module's id.
25
5
# ' @export
26
6
reporter_previewer_ui <- function (id ) {
27
7
ns <- shiny :: NS(id )
@@ -45,7 +25,17 @@ reporter_previewer_ui <- function(id) {
45
25
)
46
26
}
47
27
48
- # ' @rdname reporter_previewer
28
+ # ' Reporter Previewer Server
29
+ # ' @description `r lifecycle::badge("experimental")`
30
+ # ' server supporting the functionalities of the reporter previewer
31
+ # ' For more details see the vignette: `vignette("previewerReporter", "teal.reporter")`.
32
+ # ' @param id `character(1)` this `shiny` module's id.
33
+ # ' @param reporter `Reporter` instance
34
+ # ' @param global_knitr `list` a of `knitr` parameters (passed to `knitr::opts_chunk$set`)
35
+ # ' for customizing the rendering process.
36
+ # ' @inheritParams reporter_download_inputs
37
+ # ' @details `r global_knitr_details()`
38
+ # '
49
39
# ' @export
50
40
reporter_previewer_srv <- function (id ,
51
41
reporter ,
0 commit comments