Inputs
Filter Builder
A condition builder: field, operator and value in a row, with the "and" spelled out rather than implied.
- filters
- query
- conditions
- table
Preview
1440pxHost theme
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/filters-001?lang=en
Условия отбора
42 of 255 found
где
и
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 "filters-001" (Filter Builder) 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/filters-001.json
Registry item: https://vibeui.ru/r/filters-001.json
Installs to: components/vibeui/filters-001.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
A condition builder: field, operator and value in a row, with the "and" spelled out rather than implied.
A set of filter conditions: field-operator-value rows, a spelled-out join, a result counter, add and clear. Zero dependencies, one file.
## 3. How to use it
import { Filters001 } from "@/components/vibeui/filters-001"
<Filters001 fields={["Category"]} rules={[{ id: "1", field: "Category", operator: "is", value: "Forms" }]} />
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-filters-001-* palette — do not swap it for your theme tokens
- spelling out the "and": otherwise a stack of conditions reads as "or" just as often
- naming the condition in the remove button rather than its row number
- aria-live on the result counter: it changes from the user's own actions
- a real empty state instead of a bare list with no rows
- native selects and inputs — keyboard and mobile pickers come free
## 6. You may change
- the fields and operators lists
- the initial rules and the found text
- the accent through the accent prop
- the block width
## 7. Rules
- No filtering happens: the component builds conditions, the caller runs the query.
- Value types are unchecked — swap in your own inputs for dates and numbers.
- Bracketed grouping is unsupported: it needs your own expression tree.
- 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/filters-001.jsonhttps://vibeui.ru/r/filters-001.jsonКомпонент самодостаточен: один файл, без зависимостей, собственная палитра в локальных переменных --vibeui-filters-001-*. Клиентский: "use client" ради набора условий. Строка условия собрана из нативных select и input, поэтому клавиатура и мобильный выбор работают сами. Кнопка удаления называет условие целиком, а не «удалить строку 2».
Component source
The same file your agent installs. Here in case you would rather copy it by hand.
"use client"
import { useState } from "react"
import type { ComponentPropsWithoutRef, CSSProperties } from "react"
export type Filters001Rule = {
id: string
field: string
operator: string
value: string
}
export type Filters001Props = Omit<
ComponentPropsWithoutRef<"div">,
"children" | "onChange"
> & {
fields?: string[]
operators?: string[]
rules?: Filters001Rule[]
found?: string
onChange?: (rules: Filters001Rule[]) => void
accent?: string
}
// Идея компонента: строитель условий вместо набора отдельных полей. Условие —
// это тройка «поле, оператор, значение», и она собрана из нативных select и
// input, поэтому клавиатура и мобильный выбор работают сами. Связка между
// условиями показана словом «и» между строками, а не подразумевается: без неё
// набор фильтров читается как «или» ровно так же часто, как «и». Удаление
// строки — кнопка с именем условия, чтобы не пришлось считать строки на слух.
const STYLES = `
:where([data-vibeui-block="filters-001"]){
--vibeui-filters-001-bg:oklch(1 0 0);
--vibeui-filters-001-fg:oklch(0.24 0.014 265);
--vibeui-filters-001-muted:oklch(0.56 0.014 265);
--vibeui-filters-001-border:oklch(0.9 0.006 265);
--vibeui-filters-001-hover:oklch(0.55 0.02 265 / 8%);
--vibeui-filters-001-accent:oklch(0.55 0.2 262);
--vibeui-filters-001-font:ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}
[data-vibeui-block="filters-001"]{
width:100%;max-width:34rem;box-sizing:border-box;padding:0.875rem;
background:var(--vibeui-filters-001-bg);
border:1px solid var(--vibeui-filters-001-border);border-radius:0.875rem;
font-family:var(--vibeui-filters-001-font);color:var(--vibeui-filters-001-fg);
}
[data-vibeui-block="filters-001"] *{box-sizing:border-box}
[data-vibeui-block="filters-001"] [data-part="head"]{
display:flex;align-items:baseline;justify-content:space-between;gap:0.75rem;margin-bottom:0.625rem;
}
[data-vibeui-block="filters-001"] h3{margin:0;font-size:0.875rem;font-weight:650}
[data-vibeui-block="filters-001"] [data-part="found"]{
margin:0;font-size:0.75rem;color:var(--vibeui-filters-001-muted);font-variant-numeric:tabular-nums;
}
[data-vibeui-block="filters-001"] [data-part="rule"]{
display:grid;grid-template-columns:auto 1fr 1fr 1fr auto;align-items:center;gap:0.375rem;
margin-bottom:0.375rem;
}
/* Связка словом: без неё набор условий читается как «или» так же часто. */
[data-vibeui-block="filters-001"] [data-part="join"]{
width:1.75rem;font-size:0.6875rem;color:var(--vibeui-filters-001-muted);text-align:right;
}
[data-vibeui-block="filters-001"] select,
[data-vibeui-block="filters-001"] input{
min-width:0;width:100%;height:2rem;padding:0 0.5rem;
background:var(--vibeui-filters-001-bg);color:inherit;
border:1px solid var(--vibeui-filters-001-border);border-radius:0.5rem;
font:inherit;font-size:0.75rem;
}
[data-vibeui-block="filters-001"] select:focus-visible,
[data-vibeui-block="filters-001"] input:focus-visible{outline:2px solid var(--vibeui-filters-001-accent);outline-offset:1px}
[data-vibeui-block="filters-001"] [data-part="drop"]{
appearance:none;border:0;background:none;cursor:pointer;
width:1.75rem;height:1.75rem;border-radius:0.375rem;
color:var(--vibeui-filters-001-muted);font:inherit;font-size:0.875rem;line-height:1;
}
[data-vibeui-block="filters-001"] [data-part="drop"]:hover{background:var(--vibeui-filters-001-hover);color:var(--vibeui-filters-001-fg)}
[data-vibeui-block="filters-001"] [data-part="drop"]:focus-visible{outline:2px solid var(--vibeui-filters-001-accent);outline-offset:1px}
[data-vibeui-block="filters-001"] [data-part="actions"]{display:flex;gap:0.5rem;margin-top:0.625rem}
[data-vibeui-block="filters-001"] [data-part="add"],
[data-vibeui-block="filters-001"] [data-part="clear"]{
appearance:none;cursor:pointer;height:2rem;padding:0 0.75rem;border-radius:0.5rem;
font:inherit;font-size:0.75rem;font-weight:650;
}
[data-vibeui-block="filters-001"] [data-part="add"]{border:0;background:var(--vibeui-filters-001-accent);color:oklch(1 0 0)}
[data-vibeui-block="filters-001"] [data-part="clear"]{
border:1px solid var(--vibeui-filters-001-border);background:none;color:inherit;
}
[data-vibeui-block="filters-001"] [data-part="empty"]{
margin:0;padding:0.75rem 0;font-size:0.8125rem;color:var(--vibeui-filters-001-muted);
}
@media (prefers-reduced-motion:reduce){[data-vibeui-block="filters-001"] *{animation:none!important;transition:none!important}}
`
const DEFAULT_FIELDS = ["Категория", "Автор", "Установок", "Обновлён"]
const DEFAULT_OPERATORS = ["равно", "не равно", "содержит", "больше", "меньше"]
const DEFAULT_RULES: Filters001Rule[] = [
{ id: "1", field: "Категория", operator: "равно", value: "Формы" },
{ id: "2", field: "Установок", operator: "больше", value: "100" },
]
/**
* Строитель условий: поле, оператор и значение в строке, связка словом.
* Один файл, ноль зависимостей, собственная палитра.
*/
export function Filters001({
fields = DEFAULT_FIELDS,
operators = DEFAULT_OPERATORS,
rules = DEFAULT_RULES,
found = "Найдено 42 из 255",
onChange,
accent,
className,
style,
...props
}: Filters001Props) {
const [list, setList] = useState(rules)
const apply = (next: Filters001Rule[]) => {
setList(next)
onChange?.(next)
}
const patch = (id: string, part: Partial<Filters001Rule>) =>
apply(list.map((rule) => (rule.id === id ? { ...rule, ...part } : rule)))
const palette = {
...(accent ? { "--vibeui-filters-001-accent": accent } : null),
...style,
} as CSSProperties
return (
<>
<style href="vibeui-filters-001" precedence="medium">
{STYLES}
</style>
<div
{...props}
data-vibeui-block="filters-001"
className={className}
style={palette}
>
<div data-part="head">
<h3>Условия отбора</h3>
<p data-part="found" aria-live="polite">
{found}
</p>
</div>
{list.length === 0 ? (
<p data-part="empty">
Условий нет — показаны все записи. Добавьте первое условие.
</p>
) : (
list.map((rule, index) => (
<div key={rule.id} data-part="rule">
<span data-part="join">{index === 0 ? "где" : "и"}</span>
<select
value={rule.field}
aria-label={`Поле условия ${index + 1}`}
onChange={(event) =>
patch(rule.id, { field: event.target.value })
}
>
{fields.map((field) => (
<option key={field} value={field}>
{field}
</option>
))}
</select>
<select
value={rule.operator}
aria-label={`Оператор условия ${index + 1}`}
onChange={(event) =>
patch(rule.id, { operator: event.target.value })
}
>
{operators.map((operator) => (
<option key={operator} value={operator}>
{operator}
</option>
))}
</select>
<input
type="text"
value={rule.value}
aria-label={`Значение условия ${index + 1}`}
onChange={(event) =>
patch(rule.id, { value: event.target.value })
}
/>
<button
type="button"
data-part="drop"
aria-label={`Убрать условие: ${rule.field} ${rule.operator} ${rule.value}`}
onClick={() =>
apply(list.filter((item) => item.id !== rule.id))
}
>
×
</button>
</div>
))
)}
<div data-part="actions">
<button
type="button"
data-part="add"
onClick={() =>
apply([
...list,
{
id: String(Date.now()),
field: fields[0],
operator: operators[0],
value: "",
},
])
}
>
Добавить условие
</button>
{list.length > 0 ? (
<button type="button" data-part="clear" onClick={() => apply([])}>
Очистить
</button>
) : null}
</div>
</div>
</>
)
}