如何更新文件更改的UI

时间:2015-11-02 14:42:59

标签: r shinydashboard

您好我正在使用多个excel文件构建一个shinydashboard。

我在框的页脚中插入了这些文件的链接,我想在更改excel文件中的内容时刷新 shinydashboard。 我不想每次都运行整个R代码。

如果文件内容发生变化,如何重新呈现输出?

这是一个例子:

sidebar <- dashboardSidebar(
sidebarMenu( menuItem("Hello", tabName = "Hello", icon = icon("dashboard"))
          ))

body <- dashboardBody(
 tabItems(

tabItem(tabName = "Hello",


        box(title = "my file", 
            footer = a("df.xlsx", href="df.xlsx" ) ,
            DT::dataTableOutput("df1"),style = "font-size: 100%; overflow: auto;",
            width = 12, hight = NULL, solidHeader = TRUE, collapsible = TRUE, collapsed = TRUE, status = "primary")
)))


ui <- dashboardPage(
 dashboardHeader(title = "My Dashboard"),
 sidebar,
body)


server <- function(input, output) {
  output$df1 <- renderDataTable({ 
df <- read_excel("df.xlsx")
DT::datatable(df, escape = FALSE, rownames=FALSE,class = "cell-border",
              options =list(bSort = FALSE, paging = FALSE, info = FALSE)
  )
  })
}



shinyApp(ui, server)

2 个答案:

答案 0 :(得分:1)

要监控文件中的更改,您可以使用文件的cheksum,如下所示:

library(shiny)
library(digest)

# Create data to read
write.csv(file="~/iris.csv",iris)

shinyApp(ui=shinyUI(
  fluidPage(
    sidebarLayout(
      sidebarPanel(
        textInput("path","Enter path: "),
        actionButton("readFile","Read File"),
        tags$hr()
      ),
      mainPanel(
        tableOutput('contents')
      )))
),
server = shinyServer(function(input,output,session){
  file <- reactiveValues(path=NULL,md5=NULL,rendered=FALSE)

  # Read file once button is pressed
  observeEvent(input$readFile,{
    if ( !file.exists(input$path) ){
      print("No such file")
      return(NULL)
    }
    tryCatch({
      read.csv(input$path)
      file$path <- input$path
      file$md5  <- digest(file$path,algo="md5",file=TRUE)
      file$rendered <- FALSE
    },
    error = function(e) print(paste0('Error: ',e)) )
  })

  observe({
    invalidateLater(1000,session)
    print('check')

    if (is.null(file$path)) return(NULL)

    f   <- read.csv(file$path)
    # Calculate ckeksum
    md5 <- digest(file$path,algo="md5",file=TRUE)

    # If no change in cheksum, do nothing
    if (file$md5 == md5 && file$rendered == TRUE) return(NULL)

    output$contents <- renderTable({

      print('render')
      file$rendered <- TRUE
      f
    })
  })

}))

答案 1 :(得分:1)

如果我正确理解了这个问题,我说你需要reactiveFileReader功能。

function's reference page的说明:

  

给定文件路径和读取功能,返回响应数据源   对于文件的内容。

文件阅读器将轮询文件以进行更改,一旦检测到更改,UI就会被动地更新。

使用gallery example作为指南,我将示例中的服务器功能更新为以下内容:

server <- function(input, output) {                                                                                                                                                                                                                                   
  fileReaderData <- reactiveFileReader(500,filePath="df.xlsx", readFunc=read_excel)
  output$df1 <- renderDataTable({                                                                                                                                                                                                                                              
    DT::datatable(fileReaderData(), escape = FALSE, rownames=FALSE,class = "cell-border",                                                                                                                                                                                      
              options =list(bSort = FALSE, paging = FALSE, info = FALSE)                                                                                                                                                                                                       
  )                                                                                                                                                                                                                                                                            
  })                                                                                                                                                                                                                                                                           
}

这样,我保存到&#39; df.xlsx&#39;几乎立即传播到用户界面。