Cascader

Lazy Level

A cascader with lazy loading: the next level arrives after a delay, and skeletons of exactly the future row height stand in its place.

What you can change

  • the panel heading through heading
  • the request duration through delay
  • the loadingText, countText, paneText, selectedText and noLeafText captions

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/cascader-012?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-cascader-012-* variables. Client-side: the chosen branch and leaf live in useState, while the loading flag is derived by comparing «what is shown» with «what is chosen» — setState is never called in the body of the effect and there is no extra render. The delay emulates a request through setTimeout inside useEffect, and the timer is cleared in the cleanup: without that, fast switching overwrites itself and the list ends up holding a branch nobody is on any more. The skeleton repeats the height of the future row, so the panel does not jump when the data arrives, and the list itself is marked aria-busy — a screen reader announces the loading instead of staying silent. The theme comes from the surrounding color-scheme through light-dark(): the panel has no surface of its own by default, it sits directly on the page background and darkens with it, the skeleton fill included.

Tags

  • cascader
  • lazy
  • loading
  • skeleton
Component source

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

Loading…