dbcToast: Toast component

View source: R/dashBootstrapComponents.R

dbcToastR Documentation

Toast component

Description

Toasts can be used to push messages and notifactions to users. Control visibility of the toast with the 'is_open' prop, or use 'duration' to set a timer for auto-dismissal.

Usage

dbcToast(children=NULL, id=NULL, style=NULL, class_name=NULL,
className=NULL, header_style=NULL, header_class_name=NULL,
headerClassName=NULL, body_style=NULL, body_class_name=NULL,
bodyClassName=NULL, tag=NULL, is_open=NULL, key=NULL,
header=NULL, dismissable=NULL, duration=NULL,
n_dismiss=NULL, n_dismiss_timestamp=NULL, icon=NULL,
color=NULL, loading_state=NULL)

Arguments

children

A list of or a singular dash component, string or number. The children of this component

id

Character. The ID of this component, used to identify dash components in callbacks. The ID needs to be unique across all of the components in an app.

style

Named list. Defines CSS styles which will override styles previously set.

class_name

Character. Often used with CSS to style elements with common properties.

className

Character. **DEPRECATED** Use 'class_name' instead.

Often used with CSS to style elements with common properties.

header_style

Named list. Defines CSS styles which will override styles previously set. The styles set here apply to the header of the toast.

header_class_name

Character. Often used with CSS to style elements with common properties. The classes specified with this prop will be applied to the header of the toast.

headerClassName

Character. **DEPRECATED** - use 'header_class_name' instead

Often used with CSS to style elements with common properties. The classes specified with this prop will be applied to the header of the toast.

body_style

Named list. Defines CSS styles which will override styles previously set. The styles set here apply to the body of the toast.

body_class_name

Character. Often used with CSS to style elements with common properties. The classes specified with this prop will be applied to the body of the toast.

bodyClassName

Character. **DEPRECATED** - use 'body_class_name' instead.

Often used with CSS to style elements with common properties. The classes specified with this prop will be applied to the body of the toast.

tag

Character. HTML tag to use for the Toast, default: div

is_open

Logical. Whether Toast is currently open.

key

Character. A unique identifier for the component, used to improve performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

header

Character. Text to populate the header with

dismissable

Logical. Set to True to add a dismiss button to the header which will close the toast on click

duration

Numeric. Duration in milliseconds after which the Alert dismisses itself.

n_dismiss

Numeric. An integer that represents the number of times that the dismiss button has been clicked on.

n_dismiss_timestamp

Numeric. Use of *_timestamp props has been deprecated in Dash in favour of dash.callback_context. See "How do I determine which Input has changed?" in the Dash FAQs https://dash.plot.ly/faqs.

An integer that represents the time (in ms since 1970) at which n_dismiss changed. This can be used to tell which button was changed most recently.

icon

Character. Add a contextually coloured icon to the header of the toast. Options are: "primary", "secondary", "success", "warning", "danger", "info", "light" or "dark".

color

Character. Toast color, options: primary, secondary, success, info, warning, danger, light, dark. Default: secondary.

loading_state

Lists containing elements 'is_loading', 'prop_name', 'component_name'. those elements have the following types: - is_loading (logical; optional): determines if the component is loading or not - prop_name (character; optional): holds which property is loading - component_name (character; optional): holds the name of the component that is loading. Object that holds the loading state object coming from dash-renderer

Value

named list of JSON elements corresponding to React.js properties and their values


plotly/dashR documentation built on June 12, 2022, 9:08 a.m.