Toast

Countdown Toast

A countdown to an automatic action: the bar and the digits run down together, hover and focus pause the countdown, and a button resets the full duration.

What you can change

  • the warning text through message and the post-expiry text through expiredMessage
  • the countdown length through seconds
  • the button captions through extendLabel and closeLabel, and the paused suffix through pausedText

A link for your AI agent: preview, code and instructions.

Preview

1440pxHost theme

Use it with AI

  1. 1. Copy the link.
  2. 2. Write to your agent in your own words and drop the link into the sentence.
  3. 3. The agent opens the link and installs the component from the registry.
AI
1Pick it here

put this on the home page as the hero:

https://vibeui.ru/c/toast-020?lang=en&theme=dark

2Paste into the chat
3Get it in your project

Not sure where to paste it? Step-by-step guide

Show the full instructions

What the link says, spelled out. Use it when your agent cannot open links — paste this text instead.

Loading…

For developers

The install command lives in the “Component source” block below — a signed link that stays valid for 24 hours.

Technical notes

The component is self-contained: one file, no dependencies, its own palette in the local --vibeui-toast-020-* variables. Client-side: "use client". The remaining milliseconds are held in useState and decrease in useEffect through setInterval, while the pause flag lies in useRef and is kept in sync with the state so that the interval is not recreated on every re-render; hover and keyboard focus (onMouseEnter/Leave, onFocus/onBlur) pause it in exactly the same way. On reaching zero, onExpire is called once (a flag in useRef guards against a repeat), and the "Stay signed in" button returns left to the original total and calls onExtend. The theme comes from the surrounding color-scheme through light-dark(), while the background prop replaces only the card surface. The "paused" suffix is drawn by ::after from the --vibeui-toast-020-paused-text variable, so its text is set by the pausedText prop rather than hardwired into the CSS.

Tags

  • toast
  • countdown
  • session
  • timer
Component source

The same file your agent installs. Here in case you would rather copy it by hand.

Loading…