Autocomplete
Async Suggestions
Server-side suggestions: a pause before the request, an honest "searching", and stale responses thrown away.
- autocomplete
- async
- debounce
- loading
Preview
Use it with AI
- 1. Copy the link.
- 2. Write to your agent in your own words and drop the link into the sentence.
- 3. The agent opens the link and installs the component from the registry.
put this in the header: https://vibeui.ru/c/autocomplete-005?lang=en
Show the full instructions
What the link says, spelled out. Use it when your agent cannot open links — paste this text instead.
# Install and place "autocomplete-005" (Async Suggestions) from VibeUI
## 1. Install first — do not skip, do not recreate
Run this exact command before writing any code:
npx shadcn@latest add https://vibeui.ru/r/autocomplete-005.json
Registry item: https://vibeui.ru/r/autocomplete-005.json
Installs to: components/vibeui/autocomplete-005.tsx (the exact path follows this project's components.json aliases).
npm dependencies: none.
Registry dependencies: none.
Install it from the registry. Do not recreate it from the description,
do not substitute a similar component from another library, and do not
rewrite it to match the project's existing style.
## 2. What it is
Server-side suggestions: a pause before the request, an honest "searching", and stale responses thrown away.
A field fed by an external source: a debounce before the request, a spinner while waiting, separate copy for an empty result, and protection against out-of-order responses. Zero dependencies, one file, its own palette.
## 3. How to use it
import { Autocomplete005 } from "@/components/vibeui/autocomplete-005"
<Autocomplete005
label="Delivery city"
search={(query) => fetch(`/api/cities?q=${query}`).then((r) => r.json())}
/>
Read the installed file for the full prop list.
## 4. Where to place it
This is a small inline component. Put it exactly where the user asked,
inside the existing markup. Do not create a new page, section or
wrapper for it. If a similar control already sits in that spot,
replace it instead of adding a second one.
Placement: ___
(The user fills this line in. If it is still blank, ask where to put it
instead of guessing.)
## 5. Keep exactly as installed
- the local --vibeui-autocomplete-005-* palette — do not swap it for your theme tokens
- the pause before the request: without it every word costs six round trips
- the alive flag: a slow answer to a shorter query would otherwise overwrite the fresh one
- three distinct states — waiting, found, nothing: a single "no results" lies while loading
- aria-busy and role="status": waiting has to be heard, not only seen
- the prefers-reduced-motion rule that stops the spinner
## 6. You may change
- the search function — your own API call
- delay to match your backend
- the label, placeholder and state copy
- the accent through the accent prop
## 7. Rules
- The default search is a delayed local list for the showcase; pass your own in a project.
- Network errors are not rendered: wrap your search in try/catch and decide what to show.
- Cancellation here is logical only. For a real abort pass an AbortController inside your search.
- Do not lift the CSS variables into globals.css: the component has to stay a single file.
## 8. Verify
- it renders with no console errors;
- it looks like the preview on the VibeUI page you copied this from;
- if it does not, you changed something listed in section 5 — put it back.For developers
npx shadcn@latest add https://vibeui.ru/r/autocomplete-005.jsonhttps://vibeui.ru/r/autocomplete-005.jsonКомпонент самодостаточен: один файл, без зависимостей, собственная палитра в локальных переменных --vibeui-autocomplete-005-*. Клиентский: "use client". Запрос откладывается на delay миллисекунд, таймер снимается в cleanup эффекта, флаг alive отбрасывает ответ отменённого запроса. Состояние ожидания объявлено через aria-busy на поле и role="status" на строке снизу. Спиннер — бордюр с keyframes, погашен в prefers-reduced-motion.
Component source
The same file your agent installs. Here in case you would rather copy it by hand.
"use client"
import { useEffect, useId, useState } from "react"
import type { ComponentPropsWithoutRef, CSSProperties } from "react"
export type Autocomplete005Props = Omit<
ComponentPropsWithoutRef<"div">,
"children" | "onSelect"
> & {
label?: string
placeholder?: string
/** Откуда брать подсказки. По умолчанию — задержанный локальный список. */
search?: (query: string) => Promise<string[]>
defaultQuery?: string
delay?: number
onSelect?: (value: string) => void
accent?: string
}
// Идея компонента: подсказки приходят с сервера, и поле честно показывает три
// состояния — ждём, нашли, не нашли. Запрос уходит не на каждую букву:
// пауза в 320 мс отсекает промежуточные слова, иначе на «казань» уходит шесть
// запросов вместо одного. Ответ на устаревший запрос отбрасывается — иначе
// медленный ответ на «ка» перезапишет быстрый ответ на «казань».
const STYLES = `
:where([data-vibeui-block="autocomplete-005"]){
--vibeui-autocomplete-005-bg:oklch(1 0 0);
--vibeui-autocomplete-005-fg:oklch(0.22 0.014 265);
--vibeui-autocomplete-005-muted:oklch(0.52 0.014 265);
--vibeui-autocomplete-005-border:oklch(0.9 0.006 265);
--vibeui-autocomplete-005-field:oklch(0.985 0.002 265);
--vibeui-autocomplete-005-active:oklch(0.95 0.02 265);
--vibeui-autocomplete-005-accent:oklch(0.55 0.17 265);
--vibeui-autocomplete-005-radius:0.625rem;
--vibeui-autocomplete-005-font:ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}
[data-vibeui-block="autocomplete-005"]{
display:flex;flex-direction:column;gap:0.375rem;
width:100%;max-width:22rem;box-sizing:border-box;padding:0.875rem;
background:var(--vibeui-autocomplete-005-bg);
border:1px solid var(--vibeui-autocomplete-005-border);
border-radius:calc(var(--vibeui-autocomplete-005-radius) + 0.25rem);
color:var(--vibeui-autocomplete-005-fg);
font-family:var(--vibeui-autocomplete-005-font);
}
[data-vibeui-block="autocomplete-005"] label{font-size:0.8125rem;font-weight:600}
[data-vibeui-block="autocomplete-005"] [data-part="field"]{position:relative}
[data-vibeui-block="autocomplete-005"] input{
box-sizing:border-box;width:100%;height:2.5rem;padding:0 2.25rem 0 0.75rem;
border:1px solid var(--vibeui-autocomplete-005-border);
border-radius:var(--vibeui-autocomplete-005-radius);
background:var(--vibeui-autocomplete-005-field);
color:inherit;font:inherit;font-size:0.875rem;
}
[data-vibeui-block="autocomplete-005"] input::placeholder{color:var(--vibeui-autocomplete-005-muted)}
[data-vibeui-block="autocomplete-005"] input:focus-visible{
outline:2px solid var(--vibeui-autocomplete-005-accent);outline-offset:1px;border-color:transparent;
}
/* Кольцо ожидания: спиннер из бордюра, без картинки и без пакета. */
[data-vibeui-block="autocomplete-005"] [data-part="spinner"]{
position:absolute;right:0.75rem;top:50%;width:0.875rem;height:0.875rem;margin-top:-0.4375rem;
border:2px solid var(--vibeui-autocomplete-005-border);
border-top-color:var(--vibeui-autocomplete-005-accent);
border-radius:9999px;animation:vibeui-autocomplete-005-spin .7s linear infinite;
}
@keyframes vibeui-autocomplete-005-spin{to{transform:rotate(360deg)}}
[data-vibeui-block="autocomplete-005"] [data-part="list"]{
margin:0;padding:0.25rem;list-style:none;max-height:10rem;overflow-y:auto;
border:1px solid var(--vibeui-autocomplete-005-border);
border-radius:var(--vibeui-autocomplete-005-radius);
background:var(--vibeui-autocomplete-005-bg);
}
[data-vibeui-block="autocomplete-005"] [data-part="option"]{
display:flex;align-items:center;min-height:2rem;padding:0 0.5rem;
border-radius:0.375rem;font-size:0.875rem;cursor:pointer;
}
[data-vibeui-block="autocomplete-005"] [data-part="option"]:hover{background:var(--vibeui-autocomplete-005-active)}
[data-vibeui-block="autocomplete-005"] [data-part="status"]{font-size:0.75rem;color:var(--vibeui-autocomplete-005-muted)}
@media (prefers-reduced-motion:reduce){
[data-vibeui-block="autocomplete-005"] *{animation:none!important;transition:none!important}
[data-vibeui-block="autocomplete-005"] [data-part="spinner"]{border-top-color:var(--vibeui-autocomplete-005-border)}
}
`
const CITIES = [
"Анапа",
"Ангарск",
"Астрахань",
"Барнаул",
"Казань",
"Калуга",
"Краснодар",
"Курск",
"Мурманск",
"Тула",
]
const localSearch = (query: string) =>
new Promise<string[]>((resolve) => {
const needle = query.trim().toLowerCase()
setTimeout(
() =>
resolve(CITIES.filter((city) => city.toLowerCase().startsWith(needle))),
520,
)
})
/**
* Подсказки с сервера: пауза перед запросом и три честных состояния.
* Один файл, ноль зависимостей, собственная палитра.
*/
export function Autocomplete005({
label = "Город доставки",
placeholder = "Начните вводить",
search = localSearch,
defaultQuery = "",
delay = 320,
onSelect,
accent,
className,
style,
...props
}: Autocomplete005Props) {
const id = useId()
const [query, setQuery] = useState(defaultQuery)
const [items, setItems] = useState<string[]>([])
const [loading, setLoading] = useState(Boolean(defaultQuery))
useEffect(() => {
if (!query.trim()) return
let alive = true
const timer = setTimeout(() => {
search(query).then((found) => {
// Ответ на устаревший запрос отбрасываем: гонка перезапишет свежий.
if (!alive) return
setItems(found)
setLoading(false)
})
}, delay)
return () => {
alive = false
clearTimeout(timer)
}
}, [delay, query, search])
const palette = {
...(accent ? { "--vibeui-autocomplete-005-accent": accent } : null),
...style,
} as CSSProperties
const empty = !loading && Boolean(query.trim()) && items.length === 0
return (
<>
<style href="vibeui-autocomplete-005" precedence="medium">
{STYLES}
</style>
<div
{...props}
data-vibeui-block="autocomplete-005"
className={className}
style={palette}
>
<label htmlFor={id}>{label}</label>
<div data-part="field">
<input
id={id}
type="text"
role="combobox"
autoComplete="off"
placeholder={placeholder}
value={query}
aria-expanded={items.length > 0}
aria-controls={`${id}-list`}
aria-autocomplete="list"
aria-busy={loading}
onChange={(event) => {
const next = event.target.value
setQuery(next)
setLoading(Boolean(next.trim()))
if (!next.trim()) setItems([])
}}
/>
{loading ? <span data-part="spinner" aria-hidden="true" /> : null}
</div>
{items.length ? (
<ul
id={`${id}-list`}
role="listbox"
aria-label={label}
data-part="list"
>
{items.map((item) => (
<li
key={item}
role="option"
aria-selected="false"
data-part="option"
onMouseDown={(event) => {
event.preventDefault()
setQuery(item)
setItems([])
onSelect?.(item)
}}
>
{item}
</li>
))}
</ul>
) : null}
<span data-part="status" role="status">
{loading
? "Ищем…"
: empty
? "Ничего не нашлось — проверьте написание"
: "Подсказки приходят с сервера"}
</span>
</div>
</>
)
}