Skip to content

Releases: devOpifex/communicate

Error Handling

09 Mar 20:56
Compare
Choose a tag to compare

Added ability to handle errors R-side.

library(shiny)
library(communicate)

add <- \(x, y){
  x + y + "error" # this will cause an error
} 

err <- \(error){
  cat("Aaaaah, an error!\n")
  print(error)
}

# more on JavaScript error handling in the JavaScript page
script <- "
  $('#btn').on('click', () => {
    communicate.com('add', {x: 1})
      .then(res => alert(`equals: ${res}`))
      .catch(error => alert('There was an error')); # catch error
  })
"

ui <- fluidPage(
  # import dependencies
  useCommunicate(),
  h1("Hello"),
  tags$a("Communicate", id = "btn"),
  tags$script(HTML(script))
)

server <- \(input, output, session){
  com("add", add)(x = Integer, y = Numeric)(y = 1.1)(err)
}

shinyApp(ui, server)

Initial Version

31 Oct 19:35
Compare
Choose a tag to compare

Initial version