Cookbook / Search Debounce

Search Debounce

list

Debounced search — bind:value feeds the query, effect() debounces 300ms into a second state, derived() filters results.

id
search-debounce
since
0.5.0
file
search-debounce.aihu
stateeffectderivedbind:valueeachkeyifelseifgroupinterpolation

Run it

source · static

This recipe doesn't have a hydrated island in the demo gallery yet. An in-browser, WASM-compiled playground (edit this source and re-render live) is planned as a follow-up — read the real source below.

Source

search-debounce.aihu

Requires

concerns
stateevents

Anti-patterns

  • Do not debounce inside derived() — derivations must be pure; the timer lives in effect(), the settled value in its own state.

Related recipes