showToast

Displays a toast notification when invoked from a dashboard page or widget within a page.

を使用する。 config parameter to:

  • Control the toast's appearance.
  • Set callback functions to run when the user sees or clicks on the toast.
  • Display a clickable call-to-action that is displayed inside the toast.

Only one toast can be shown at a time. Requests to display toasts may be queued and the toast may not be displayed immediately, if another toast is currently shown.

注: When the timeout parameter is set to none (a toast that the user needs to close manually, or removed via code) the toast is rendered into the page layout and pushes the rest of the page down. When timeout is set to normal, the toast appears on top of other content on the page.

署名

コピー
1

Parameters

名称タイプ説明
configToastConfigToast configuration options.

ToastConfig Object

名称タイプ説明
actionToastActionOptional. Object representing a call-to-action that's displayed in the toast.
メッセージストリングText that appears in the toast.
onCloseClickFunctionOptional. Callback function to run when the toast is closed by clicking its close button.
onToastSeenFunctionOptional. Callback function to run when the toast is seen by the user.
priorityストリングPriority of the toast. If several toasts are triggered at the same time, they're displayed in the order of their priority levels. Default: normal.
Options: low, normal, high.
timeoutストリングWhether the toast should disappear after a predefined timeout (6 seconds).
Options: none, normal.
タイプストリングToast color and message type. Default: standard.
Options:
standard: Blue notification toast.
success: Green success toast.
warning: Yellow warning toast.
error: Red error toast.

ToastAction Object

名称タイプ説明
onClickFunctionCallback function to run after the call-to-action is clicked.
removeToastOnClickbooleanWhether to remove the toast after the call-to-action is clicked.
テキストストリングText that appears in the call-to-action.
uiTypeストリングThe type of call-to-action. Options: button, link

リターン

コピー
1

The object returned by showToast contains a function that can be used to remove the toast.

To set up a dashboard client, refer to the setup guide.

Display a success toast when a product is updated

コピー
1
コピー
1

Remove a displayed toast

コピー
1
役に立ちましたか?
はい
いいえ