Utility

Toasts

Simple notifications utilizing a dynamic queue system.

typescript
import { Toast, toastStore } from '@skeletonlabs/skeleton';
import type { ToastSettings } from '@skeletonlabs/skeleton';
Source Page Source

Demo

Toast Component

Implement a single instance of the toast component in your app's root layout, above the App Shell (if present).

html
<Toast />

<!-- <AppShell>...</AppShell> -->

Toast Store

The Toast Store acts as a queue for your toast messages.

typescript
import { toastStore } from '@skeletonlabs/skeleton';

Trigger

To add a message to the queue, use the toastStore.trigger() method and pass a toast settings object.

Timing

Use the following setting to adjust the toast timing.

Dismiss

Use the hideDismiss option to disable the dismiss button. When using this setting autohide option enabled by default.

Hover State

Use the hoverable option to keep the toast visible while hovering with a mouse cursor.

Clear

Use toastStore.clear() to clear the entire toast store queue.

typescript
toastStore.clear();

Programmatic

Create a reference for your toast so that you may programmatically close it on demand.

Styling

We recommend applying global styles via the Toast component props. Though you can provide styles per toast instance.

Backgrounds

Custom Styles

Positioning

Skeleton takes an opinionated stance on positioning, preferring to keep toast notifications in fixed location on your page. This position can be modified globally the position property on the Toast component. However, we do not allow you to modify this per toast instance as we feel this would provide inconsistent UX.

Callbacks

You can optionally add a callback function to your ToastSettings to receive the unique ID assigned to each toast, as well as listen for when the queued and closed lifecycle events occur for that toast message.

typescript
const t: ToastSettings = {
	// ...
	callback: (response) => {
		console.log(response.id);
		if (response.status === 'queued') console.log('Toast was queued!');
		if (response.status === 'closed') console.log('Toast was closed!');
	}
};

SvelteKit SSR Warning

There are known security risks when using Svelte writable stores within SvelteKit load functions.

Details →