闪亮的showshowification不再与dashboardthemes一起使用

问题描述

加载dashboardthemes后,引导通知样式似乎不再起作用(它们都显示为灰色,即认值)。

在2 Shiny应用程序下面,第一个似乎运行正常,第二个显示问题。

有人知道如何管理/修复此问题吗?

注意:dashboardthemes似乎对按钮有相同的影响,请参见this SO post

require(shiny)
require(shinydashboardplus)
require(dashboardthemes)

# APP #1: WORKING
shinyApp(
  ui = fluidPage(
    actionButton("show_default","Show Default"),actionButton("show_message","Show Message"),actionButton("show_warning","Show Warning"),actionButton("show_error","Show Error")
  ),server = function(input,output) {
    
    observeEvent(input$show_default,{
      showNotification("This is a notification.")
    })
    
    observeEvent(input$show_message,{
      showNotification("This is a notification.",type = "message")
    })
    
    observeEvent(input$show_warning,type = "warning")
    })
    
    observeEvent(input$show_error,type = "error")
    })
  }
)


# APP #2: WITH STYLING ISSUE
shinyApp(
  ui = dashboardPagePlus(
    title = "hello",header = dashboardHeaderPlus(title = "hello"),sidebar = dashboardSidebar(),body = dashboardBody(
      shinyDashboardThemes(
        theme = "grey_light"
      ),fluidPage(
        actionButton("show_default","Show Error")
      )
    )
  ),type = "error")
    })
  }
)

解决方法

问题在于,dashboardthemes程序包为所有通知设置了单一背景色,即使它们的状态不同。 我已经在该软件包的最新v1.1.2版本中修复了该问题,该版本现在可以在GitHub上找到。在CRAN上发布需要几天的时间。