# Toast
A Toast is a notification designed to inform the user. Toasts are used to direct the user’s attention to a specific action that happened within the system without the user having to navigate to a notifications page or component and away from the current screen.
# Setup
First, you must tell your Vue application to use the CiToastrPlugin
. Toastr is used to mount toasts on top of the current UI. Create a file called ci-setup.js
in a /plugins
directory.
// ci-setup.js
import Vue from "vue";
import { CiToastrPlugin } from "@ci/stratus-components";
Vue.use(CiToastrPlugin);
Then define this plugin in your app.
plugins: [
'~plugins/ci-setup.js'
],
# Opening a Toast
Use the global function this.$toastr.show()
from the Toastr plugin to open a toast. It accepts an object with your Toast's options.
# Variants
Use the variant
prop to change the appearance of your toast. info
and success
toasts will last for 5 seconds, while warning
and error
toasts will persist until dismissed.
# Action
Toasts have an optional action
which only accepts the ToastAction
object. The toast will automatically include an actionable link for the user that will execute the ToastAction.callback
function.
# Closing a Toast
The toast plugin exposes a hide()
method that can be used to hide the toast manually.
# Bottom offset
By default toast has offset of 30px
from bottom of page, but if it is needed to change bottomOffset
property can be used and passed number will be used as bottom offset value.
# Queue Functionality
When multiple toasts are triggered, they are queued and displayed one on top of the other. The text showing the toast's position in the queue and the total number of toasts can be customized.
# Custom Closing and Queue Text
You can customize the closing text and queue text on your toasts by using the customClosingText and customQueueText options respectively.
# Persistent Toasts
If you want a toast to persist until the user manually dismisses it, you can set the persistent option to true.
# Non-Persistent Toasts
Non-persistent toasts will disappear after a certain period of time. By default, this time is 5 seconds.
← Timepicker Toggle →