繁体   English   中英

在 Shiny 中仅显示一个通知

[英]Show only one notification in Shiny

我想通过显示通知来控制电话号码:

  • 如果用户输入了错误的数字(如“aaaa”)
  • 如果用户输入一个长数字(大于 10 位)

我使用了 function showNotification来自shinycloseButton = FALSEduration = NULL

当用户输入错误的数字时,会弹出通知,但当他输入长数字时,通知也会弹出,但前一个不会消失

我只想显示一个通知(错误号码或长号码),但不能同时显示两者。 我们怎么能做到这一点? 这是我的应用程序:

library(shiny)
library(shinydashboard)
library(shinydashboardPlus)

############# UI ############
body <- dashboardBody(
  tabItems(
    tabItem(tabName = "tab1",
            fluidRow(
              tags$h1('my title'),
              
              textInput("phone_number", "enter your phone number", value = ""),
              
              actionButton("button", "go")
              
            )
    )
  )
  
  
)

ui <- dashboardPage(
  
  title = "Example",
  options = list(sidebarExpandOnHover = TRUE),
  header = dashboardHeader(disable = FALSE),
  sidebar = dashboardSidebar(
    minified = TRUE, collapsed = TRUE,
    sidebarMenu(id="menu",
                menuItem("first tab", tabName =  "mytab", icon = icon("fas fa-acorn"),
                         menuSubItem('menu1',
                                     tabName = 'tab1',
                                     icon = icon('fas fa-hand-point-right'))
                )
    )
  ),
  body
)


############# SERVER ############
server <- function(input, output) {
  
  
  
  observeEvent(
    input$button,
    {
      if(is.na(as.numeric(input$phone_number))) {
        showNotification(type = "error",
                         duration = NULL,
                         closeButton = FALSE,
                         "wrong number")
        
      } else if(nchar(input$phone_number)<10) {
        showNotification(type = "error",
                         duration = NULL,
                         closeButton = FALSE,
                         "too long (10 digits required)")
        
      }
    }
  )
  
  
}

############# RUN THE APP ############
shinyApp(ui = ui, server = server)

一些帮助将不胜感激

我不会在这里使用通知,因为它们将始终显示固定的持续时间,并且在 window 的不同 position 上显示,这可能会使用户感到困惑。 我只会使用textOutput呈现消息:

library(shiny)
library(shinyjs)

ui <- fluidPage(
  useShinyjs(),
  textInput("phone_number", "phone number"),
  textOutput("phone_notification")
)

server <- function(input, output, session) {
  output$phone_notification <- renderText({
    if(input$phone_number == "") {
      "" # empty is ok
    }
    else if(is.na(as.numeric(input$phone_number))) {
      "wrong number"
    } else if (nchar(input$phone_number) > 10) {
      "too long"
    } else {
      "" # correct number
    }
  })
}

shinyApp(ui, server)

在此处输入图像描述

您还可以设置文本样式,例如将其设置为红色:

ui <- fluidPage(
  useShinyjs(),
  textInput("phone_number", "phone number"),
  tagAppendAttributes(
    textOutput("phone_notification"),
    style = "color:red"
  )
)

我需要OP要求的解决方案。 我发现以下代码片段适用于我的情况:

    removeNotification(id = "onlyOnce", session = getDefaultReactiveDomain())
    showNotification("Show me once", id = "onlyOnce")

另见: https://search.r-project.org/CRAN/refmans/shiny/html/showNotification.html

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM