Inputs

Duplicate Guard

Duplicate checking that does not stay silent: a repeat flashes the existing tag and explains the refusal in words.

  • tags
  • duplicate
  • validation
  • form

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.

put this in the header: https://vibeui.ru/c/tags-004?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 "tags-004" (Duplicate Guard) 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/tags-004.json

Registry item: https://vibeui.ru/r/tags-004.json
Installs to: components/vibeui/tags-004.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
Duplicate checking that does not stay silent: a repeat flashes the existing tag and explains the refusal in words.

A tag field where a duplicate highlights the existing chip and explains why nothing was added. Zero dependencies, one file.

## 3. How to use it
import { Tags004 } from "@/components/vibeui/tags-004"

<Tags004 label="Listing tags" defaultValue={["repair", "diy"]} />

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-tags-004-* palette — do not swap it for your theme tokens
- its own light surface: the field gets shown over any background
- the visible reaction to a repeat: silently dropping it reads as a broken field
- normalising before comparing: "Repair" and "repair." are one tag, not three
- keeping the first spelling: overwriting it with the new input rewrites someone's data
- clearing the flag on onAnimationEnd: without it the flash plays exactly once
- aria-live="assertive" on the message: a refusal has to be heard immediately, not queued

## 6. You may change
- label — the field caption
- defaultValue — the starting tag set
- the normalisation rule inside the normalize helper
- the duration and colour of the flash
- the accent through the accent prop

## 7. Rules
- Normalisation leaves the middle of the string alone: "do it yourself" and "doityourself" stay different tags.
- The flash is disabled under prefers-reduced-motion, which is why the text explanation is mandatory.
- The list key is the tag itself: use a stable id if tags can be renamed.
- 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/tags-004.json
https://vibeui.ru/r/tags-004.json

Компонент самодостаточен: один файл, ноль зависимостей, палитра в локальных переменных --vibeui-tags-004-*. Клиентский: список тегов, черновик и имя подсвеченного тега в состоянии. Сравнение идёт по приведённому виду — нижний регистр, схлопнутые пробелы, снятая пунктуация по краям, — поэтому «Ремонт», «ремонт» и «ремонт.» считаются одним тегом; показывается вариант, сохранённый первым. Подсветка снимается по onAnimationEnd, иначе вспышка сыграет один раз и больше не повторится. Сообщение лежит в области aria-live="assertive": отказ надо услышать сразу.

Component source

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

"use client"

import { useId, useState } from "react"
import type {
  ComponentPropsWithoutRef,
  CSSProperties,
  KeyboardEvent,
} from "react"

export type Tags004Props = Omit<
  ComponentPropsWithoutRef<"div">,
  "children" | "defaultValue"
> & {
  label?: string
  defaultValue?: string[]
  accent?: string
}

// Идея компонента: повтор не игнорируется молча, а показывается. Тихо
// отбросить второй такой же тег — значит оставить человека с ощущением, что
// поле сломалось: он нажал Enter, и ничего не произошло. Здесь существующий
// чип подсвечивается вспышкой, а под полем появляется объяснение. Сравнение
// идёт по приведённому виду — нижний регистр, схлопнутые пробелы, снятая
// пунктуация по краям, — поэтому «Ремонт», «ремонт» и «ремонт.» считаются одним
// тегом, а показывается тот вариант, который сохранён первым.
const STYLES = `
:where([data-vibeui-block="tags-004"]){
--vibeui-tags-004-surface:oklch(1 0 0);
--vibeui-tags-004-field:oklch(1 0 0);
--vibeui-tags-004-shell:oklch(0.9 0.006 265);
--vibeui-tags-004-fg:oklch(0.23 0.014 265);
--vibeui-tags-004-muted:oklch(0.55 0.014 265);
--vibeui-tags-004-border:oklch(0.88 0.008 265);
--vibeui-tags-004-chip:oklch(0.96 0.004 265);
--vibeui-tags-004-accent:oklch(0.52 0.15 190);
--vibeui-tags-004-warn:oklch(0.58 0.18 30);
--vibeui-tags-004-font:ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}
/* Своя светлая подложка: поле показывают поверх любого фона. */
[data-vibeui-block="tags-004"]{
display:flex;flex-direction:column;gap:0.5rem;
width:100%;max-width:22rem;box-sizing:border-box;padding:0.875rem;
background:var(--vibeui-tags-004-surface);
border:1px solid var(--vibeui-tags-004-shell);border-radius:0.875rem;
font-family:var(--vibeui-tags-004-font);color:var(--vibeui-tags-004-fg);
}
[data-vibeui-block="tags-004"] label{font-size:0.8125rem;font-weight:650}
[data-vibeui-block="tags-004"] [data-part="field"]{
display:flex;flex-wrap:wrap;align-items:center;gap:0.375rem;
min-height:2.75rem;padding:0.3125rem 0.5rem;box-sizing:border-box;
background:var(--vibeui-tags-004-field);
border:1px solid var(--vibeui-tags-004-border);border-radius:0.625rem;
}
[data-vibeui-block="tags-004"] [data-part="field"]:focus-within{
border-color:var(--vibeui-tags-004-accent);
box-shadow:0 0 0 2px oklch(0.52 0.15 190 / 18%);
}
[data-vibeui-block="tags-004"] [data-part="chip"]{
display:inline-flex;align-items:center;gap:0.25rem;
height:1.75rem;padding:0 0.25rem 0 0.5rem;border-radius:0.4375rem;
background:var(--vibeui-tags-004-chip);font-size:0.8125rem;
}
/* Вспышка на существующем чипе: молчание читается как поломка поля. */
[data-vibeui-block="tags-004"] [data-part="chip"][data-hit="true"]{
animation:vibeui-tags-004-flash .7s ease;
}
@keyframes vibeui-tags-004-flash{
0%,100%{background:var(--vibeui-tags-004-chip);color:var(--vibeui-tags-004-fg)}
20%,60%{background:oklch(0.58 0.18 30 / 18%);color:var(--vibeui-tags-004-warn)}
}
[data-vibeui-block="tags-004"] [data-part="chip"] button{
appearance:none;border:0;background:none;cursor:pointer;
width:1.125rem;height:1.125rem;border-radius:0.3125rem;
color:var(--vibeui-tags-004-muted);font:inherit;font-size:0.875rem;line-height:1;
}
[data-vibeui-block="tags-004"] [data-part="chip"] button:focus-visible{outline:2px solid var(--vibeui-tags-004-accent);outline-offset:1px}
[data-vibeui-block="tags-004"] input{
flex:1 1 6rem;min-width:6rem;
appearance:none;border:0;background:none;outline:none;
height:1.75rem;color:inherit;font:inherit;font-size:0.875rem;
}
[data-vibeui-block="tags-004"] [data-part="note"]{
margin:0;min-height:1.05rem;font-size:0.75rem;line-height:1.4;color:var(--vibeui-tags-004-muted);
}
[data-vibeui-block="tags-004"] [data-part="note"][data-warn="true"]{color:var(--vibeui-tags-004-warn);font-weight:650}
@media (prefers-reduced-motion:reduce){[data-vibeui-block="tags-004"] *{animation:none!important;transition:none!important}}
`

// Приведённый вид: «Ремонт», «ремонт» и «ремонт.» — один и тот же тег.
function normalize(value: string) {
  return value
    .trim()
    .toLowerCase()
    .replace(/\s+/g, " ")
    .replace(/^[.,;]+|[.,;]+$/g, "")
}

/**
 * Поле тегов с проверкой дубликатов: повтор подсвечивает уже существующий тег.
 * Один файл, ноль зависимостей, собственная палитра.
 */
export function Tags004({
  label = "Теги объявления",
  defaultValue = ["ремонт", "своими руками"],
  accent,
  className,
  style,
  ...props
}: Tags004Props) {
  const id = useId()
  const [tags, setTags] = useState(defaultValue)
  const [draft, setDraft] = useState("")
  const [hit, setHit] = useState<string | null>(null)

  const add = (value: string) => {
    const key = normalize(value)
    if (!key) return
    const existing = tags.find((tag) => normalize(tag) === key)
    if (existing) {
      setHit(existing)
      return
    }
    setTags([...tags, value.trim()])
    setDraft("")
    setHit(null)
  }

  const onKeyDown = (event: KeyboardEvent<HTMLInputElement>) => {
    if (event.key !== "Enter") return
    event.preventDefault()
    add(draft)
  }

  const palette = {
    ...(accent ? { "--vibeui-tags-004-accent": accent } : null),
    ...style,
  } as CSSProperties

  return (
    <>
      <style href="vibeui-tags-004" precedence="medium">
        {STYLES}
      </style>
      <div
        {...props}
        data-vibeui-block="tags-004"
        className={className}
        style={palette}
      >
        <label htmlFor={id}>{label}</label>
        <div data-part="field">
          {tags.map((tag) => (
            <span
              key={tag}
              data-part="chip"
              data-hit={hit === tag}
              // Флаг снимается по концу анимации: иначе вспышка сыграет один раз.
              onAnimationEnd={() => setHit(null)}
            >
              {tag}
              <button
                type="button"
                aria-label={`Убрать ${tag}`}
                onClick={() => setTags(tags.filter((item) => item !== tag))}
              >
                ×
              </button>
            </span>
          ))}
          <input
            id={id}
            type="text"
            value={draft}
            placeholder="Новый тег…"
            aria-describedby={`${id}-note`}
            onChange={(event) => {
              setDraft(event.target.value)
              setHit(null)
            }}
            onKeyDown={onKeyDown}
          />
        </div>
        <p
          id={`${id}-note`}
          data-part="note"
          data-warn={hit !== null}
          aria-live="assertive"
        >
          {hit
            ? `Тег «${hit}» уже добавлен — он подсвечен выше.`
            : "Регистр и точки не считаются: «Ремонт» и «ремонт.» — один тег."}
        </p>
      </div>
    </>
  )
}