Inputs

Snap Columns

An equipment-node cascader whose level columns live in a scroll-snap strip: on a narrow width they scroll instead of collapsing into a stack.

  • cascader
  • equipment
  • scroll-snap
  • status

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/cascader-018?lang=en

Equipment node

Цех
Линия
Узел

Цех сборки / Линия А1в работе

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 "cascader-018" (Snap Columns) 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/cascader-018.json

Registry item: https://vibeui.ru/r/cascader-018.json
Installs to: components/vibeui/cascader-018.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
An equipment-node cascader whose level columns live in a scroll-snap strip: on a narrow width they scroll instead of collapsing into a stack.

A column cascader for tight places: the columns sit in a horizontal strip with scroll-snap and page through like slides. The equipment tree shows each node's status as a dot — running, under repair, stopped — so a work order lands on the right node straight away. Zero dependencies, one file, its own palette.

## 3. How to use it
import { Cascader018 } from "@/components/vibeui/cascader-018"

<Cascader018 label="Equipment node" />

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-cascader-018-* palette — do not swap it for your theme tokens (bg-muted, border-border and the like)
- scroll-snap-type together with the fixed column width: without snapping a column stops mid-way and reads half-cut
- rebuilding the columns from path on every render instead of storing them in state — otherwise an upper-level choice leaves ghost columns
- the sticky level heading: while scrolling a long list it stops being obvious which level you are in
- the status spelled out in the aria-label next to the coloured dot — colour is neither read aloud nor safe for colour blindness
- three status hues that differ in lightness, not only in tone
- the summary with aria-live="polite" showing the whole path and the leaf status

## 6. You may change
- label — the heading above the column strip
- tree — the equipment tree, of any depth
- defaultPath — the path expanded at first render
- levelLabels — the level captions in the column headers
- onSelect — the handler for the path as an array of strings
- accent — the highlight colour of the current node

## 7. Rules
- The column width is in rem: on very narrow screens shrink it along with the font, or less than half a row shows.
- Horizontal scrolling with a mouse is not obvious: on desktop consider adding paging buttons.
- Status arrives as a prop and does not refresh itself — live data needs a subscription.
- Beyond four levels the strip gets lost: a searchable tree suits that better.

## 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/cascader-018.json
https://vibeui.ru/r/cascader-018.json

Компонент самодостаточен: один файл, ноль зависимостей, собственная палитра в локальных переменных --vibeui-cascader-018-*. Клиентский: путь по дереву живёт одним массивом в useState. Колонки не хранятся в состоянии, а собираются проходом по path на каждом рендере, поэтому выбор на верхнем уровне автоматически отсекает лишние колонки. Полоса колонок — flex с overflow-x и scroll-snap-type: x mandatory, каждая колонка фиксированной ширины 9.5rem со scroll-snap-align: start, поэтому на телефоне колонки листаются как страницы, а не сжимаются в нечитаемые полоски. Заголовок уровня прилипает через position: sticky. Статус узла показан точкой и продублирован словами в aria-label.

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 Cascader018Status = "ok" | "repair" | "off"

export type Cascader018Node = {
  name: string
  status?: Cascader018Status
  children?: Cascader018Node[]
}

export type Cascader018Props = Omit<
  ComponentPropsWithoutRef<"section">,
  "children" | "onSelect"
> & {
  label?: string
  tree?: Cascader018Node[]
  defaultPath?: string[]
  levelLabels?: string[]
  onSelect?: (path: string[]) => void
  accent?: string
}

// Идея компонента: у каскадера с тремя колонками на узкой ширине выбор
// один — либо ломать колонки в столбик, либо прокручивать их горизонтально.
// Здесь колонки живут в полосе со scroll-snap: после выбора уровня следующая
// колонка встаёт по краю сама, как в файловом менеджере. У каждого узла
// оборудования есть статус точкой — по нему видно, куда вообще нельзя вешать
// заявку.
const STYLES = `
:where([data-vibeui-block="cascader-018"]){
--vibeui-cascader-018-bg:oklch(1 0 0);
--vibeui-cascader-018-fg:oklch(0.22 0.014 265);
--vibeui-cascader-018-muted:oklch(0.55 0.014 265);
--vibeui-cascader-018-border:oklch(0.9 0.008 265);
--vibeui-cascader-018-soft:oklch(0.965 0.006 265);
--vibeui-cascader-018-ok:oklch(0.6 0.13 150);
--vibeui-cascader-018-repair:oklch(0.7 0.14 75);
--vibeui-cascader-018-off:oklch(0.62 0.15 25);
--vibeui-cascader-018-accent:oklch(0.5 0.13 265);
--vibeui-cascader-018-accentsoft:oklch(0.94 0.04 265);
--vibeui-cascader-018-radius:0.625rem;
--vibeui-cascader-018-font:ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}
[data-vibeui-block="cascader-018"]{
display:flex;flex-direction:column;gap:0.5rem;
width:100%;max-width:22rem;box-sizing:border-box;padding:0.875rem;
background:var(--vibeui-cascader-018-bg);
border:1px solid var(--vibeui-cascader-018-border);
border-radius:calc(var(--vibeui-cascader-018-radius) + 0.25rem);
color:var(--vibeui-cascader-018-fg);
font-family:var(--vibeui-cascader-018-font);
}
[data-vibeui-block="cascader-018"] [data-part="title"]{
margin:0;font-size:0.875rem;font-weight:700;letter-spacing:-0.01em;
}
[data-vibeui-block="cascader-018"] [data-part="strip"]{
display:flex;gap:0.4rem;overflow-x:auto;
scroll-snap-type:x mandatory;scroll-padding-left:0.3rem;
padding:0.3rem;
border:1px solid var(--vibeui-cascader-018-border);
border-radius:var(--vibeui-cascader-018-radius);
}
[data-vibeui-block="cascader-018"] [data-part="col"]{
flex:0 0 9.5rem;min-width:0;scroll-snap-align:start;
display:flex;flex-direction:column;gap:0.2rem;
}
[data-vibeui-block="cascader-018"] [data-part="colhead"]{
position:sticky;top:0;
font-size:0.62rem;font-weight:700;letter-spacing:0.06em;text-transform:uppercase;
color:var(--vibeui-cascader-018-muted);
background:var(--vibeui-cascader-018-bg);padding:0.1rem 0.3rem;
}
[data-vibeui-block="cascader-018"] [data-part="col"] ul{
margin:0;padding:0;list-style:none;display:flex;flex-direction:column;gap:0.1rem;
max-height:11rem;overflow-y:auto;
}
[data-vibeui-block="cascader-018"] [data-part="node"]{
appearance:none;cursor:pointer;font:inherit;width:100%;
display:flex;align-items:center;gap:0.35rem;
box-sizing:border-box;padding:0.35rem 0.4rem;
border:0;border-radius:0.4rem;background:transparent;color:inherit;text-align:left;
font-size:0.78rem;
transition:background-color .16s ease;
}
[data-vibeui-block="cascader-018"] [data-part="node"]:hover{background:var(--vibeui-cascader-018-soft)}
[data-vibeui-block="cascader-018"] [data-part="node"]:focus-visible{
outline:2px solid var(--vibeui-cascader-018-accent);outline-offset:-2px;
}
[data-vibeui-block="cascader-018"] [data-part="node"][aria-current="true"]{
background:var(--vibeui-cascader-018-accentsoft);font-weight:600;
}
[data-vibeui-block="cascader-018"] [data-part="dot"]{
flex:none;width:0.5rem;height:0.5rem;border-radius:50%;
background:var(--vibeui-cascader-018-ok);
}
[data-vibeui-block="cascader-018"] [data-part="dot"][data-status="repair"]{background:var(--vibeui-cascader-018-repair)}
[data-vibeui-block="cascader-018"] [data-part="dot"][data-status="off"]{background:var(--vibeui-cascader-018-off)}
[data-vibeui-block="cascader-018"] [data-part="text"]{
min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
}
[data-vibeui-block="cascader-018"] [data-part="foot"]{
margin:0;font-size:0.8125rem;color:var(--vibeui-cascader-018-muted);
}
[data-vibeui-block="cascader-018"] [data-part="foot"] b{color:var(--vibeui-cascader-018-fg)}
@media (prefers-reduced-motion:reduce){[data-vibeui-block="cascader-018"] *{animation:none!important;transition:none!important}}
`

const PLANT: Cascader018Node[] = [
  {
    name: "Цех сборки",
    status: "ok",
    children: [
      {
        name: "Линия А1",
        status: "ok",
        children: [
          { name: "Конвейер", status: "ok" },
          { name: "Робот-манипулятор", status: "repair" },
          { name: "Пост контроля", status: "ok" },
        ],
      },
      {
        name: "Линия А2",
        status: "repair",
        children: [
          { name: "Пресс 40т", status: "off" },
          { name: "Сварочный узел", status: "ok" },
        ],
      },
    ],
  },
  {
    name: "Цех окраски",
    status: "repair",
    children: [
      {
        name: "Камера К1",
        status: "repair",
        children: [
          { name: "Вентиляция", status: "repair" },
          { name: "Сушка", status: "ok" },
        ],
      },
    ],
  },
  {
    name: "Склад сырья",
    status: "ok",
    children: [
      {
        name: "Зона хранения",
        status: "ok",
        children: [{ name: "Штабелёр", status: "ok" }],
      },
    ],
  },
]

const STATUS_TEXT: Record<Cascader018Status, string> = {
  ok: "в работе",
  repair: "в ремонте",
  off: "остановлен",
}

/**
 * Выбор узла оборудования: колонки уровней в полосе со scroll-snap.
 * Один файл, ноль зависимостей, собственная палитра.
 */
export function Cascader018({
  label = "Узел оборудования",
  tree = PLANT,
  defaultPath = ["Цех сборки", "Линия А1"],
  levelLabels = ["Цех", "Линия", "Узел"],
  onSelect,
  accent,
  className,
  style,
  ...props
}: Cascader018Props) {
  const [path, setPath] = useState(defaultPath)

  const columns: Cascader018Node[][] = [tree]
  let level = tree

  for (const name of path) {
    const node = level.find((entry) => entry.name === name)

    if (!node?.children?.length) break

    columns.push(node.children)
    level = node.children
  }

  const leaf = (() => {
    let found: Cascader018Node | undefined
    let cursor = tree

    for (const name of path) {
      found = cursor.find((entry) => entry.name === name)
      cursor = found?.children ?? []
    }

    return found
  })()

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

  return (
    <>
      <style href="vibeui-cascader-018" precedence="medium">
        {STYLES}
      </style>
      <section
        {...props}
        data-vibeui-block="cascader-018"
        className={className}
        style={palette}
      >
        <h3 data-part="title">{label}</h3>
        <div data-part="strip">
          {columns.map((nodes, depth) => (
            <div key={levelLabels[depth] ?? depth} data-part="col">
              <span data-part="colhead">
                {levelLabels[depth] ?? `Уровень ${depth + 1}`}
              </span>
              <ul aria-label={levelLabels[depth] ?? `Уровень ${depth + 1}`}>
                {nodes.map((node) => (
                  <li key={node.name}>
                    <button
                      type="button"
                      data-part="node"
                      aria-current={path[depth] === node.name}
                      aria-label={`${node.name}, ${STATUS_TEXT[node.status ?? "ok"]}`}
                      onClick={() => {
                        const next = [...path.slice(0, depth), node.name]

                        setPath(next)
                        onSelect?.(next)
                      }}
                    >
                      <span
                        data-part="dot"
                        data-status={node.status ?? "ok"}
                        aria-hidden="true"
                      />
                      <span data-part="text">{node.name}</span>
                    </button>
                  </li>
                ))}
              </ul>
            </div>
          ))}
        </div>
        <p data-part="foot" aria-live="polite">
          {leaf ? (
            <>
              <b>{path.join(" / ")}</b> — {STATUS_TEXT[leaf.status ?? "ok"]}
            </>
          ) : (
            "Узел не выбран"
          )}
        </p>
      </section>
    </>
  )
}