Nothing
#' Tag Function
#'
#' This function creates a tag.
#' @param inputId The Id to access the tag
#' @param text The text in the tag
#' @param colour The colour of the tag. Default is navy. Other options are
#' grey, green, teal, blue, purple, magenta, red, orange and yellow
#' @return a tag HTML shiny tag object
#' @family Govstyle feedback types
#' @export
#' @examples
#' ui <- shiny::fluidPage(
#' shinyGovstyle::header(
#' org_name = "Example",
#' service_name = "User Examples",
#' logo="shinyGovstyle/images/moj_logo.png"
#' ),
#' shinyGovstyle::gov_layout(
#' size = "two-thirds",
#' shinyGovstyle::tag_Input("tag1", "Complete"),
#' shinyGovstyle::tag_Input("tag2", "Incomplete", "red")
#' ),
#' shinyGovstyle::footer(full = TRUE)
#' )
#'
#' server <- function(input, output, session) {}
#' if (interactive()) shinyApp(ui = ui, server = server)
tag_Input <- # nolint
function(
inputId, # nolint
text,
colour = "navy"
) {
#check for deprecated colours
if (colour == "light-blue") {
warning(
"'light-blue' is no longer a supported colour.
Please select an alternative from:
'navy', 'grey', 'purple', 'teal', 'blue', 'yellow',
'orange', 'red', 'magenta', or 'green'."
)
}
if (colour == "turquoise") {
warning(
"'turquoise' is no longer a supported colour.
Please select an alternative from:
'grey', 'purple', 'teal', 'blue', 'yellow',
'orange', 'red', 'magenta', or 'green'."
)
}
if (colour == "pink") {
warning(
"'pink' is no longer a supported colour.
Please select an alternative from:
'grey', 'purple', 'teal', 'blue', 'yellow',
'orange', 'red', 'magenta', or 'green'."
)
}
class_colour <- "govuk-tag"
if (colour != "navy") {
class_colour <- paste0("govuk-tag govuk-tag--", colour)
}
gov_tag <- shiny::tags$strong(
id = inputId,
class = class_colour,
text
)
attachDependency(gov_tag)
}
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.