Nothing
# module for table download button for given output type
mod_export_table_ui <- function(id, ext){
ns <- NS(id)
tagList(
div(downloadButton(ns("tbl_save"), label = toupper(ext), icon = icon("download")))
)
}
mod_export_table_server <- function(id, tbl, ext){
moduleServer(
id,
function(input, output, session) {
output$tbl_save <- downloadHandler(
filename = function() {
if (inherits(tbl(), "gt_group") && tolower(ext) %in% c("png", "pdf")){
paste0('tfrmt_', tolower(ext), '.zip')
} else {
paste0('tfrmt.', tolower(ext))
}
},
content = function(con) {
if (inherits(tbl(), "gt_group") && tolower(ext) %in% c("png", "pdf")){
temp_dir <- tempdir()
dir.create(temp_dir)
n_tbls <- nrow(tbl()$gt_tbls)
walk(1:n_tbls, function(x){
tbl() %>% grp_pull(x) %>% gtsave(filename = paste0("tfrmt_",x,".", tolower(ext)), path = temp_dir)
})
zip(
zipfile = con,
files = file.path(temp_dir, paste0("tfrmt_", seq_along(tbl()), ".", tolower(ext))),
flags = "-r9Xj"
)
} else{
gtobj <- tbl()
gtsave(gtobj, con)
}
}
)
}
)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.