Tables
Sortable Table
Sorting by column: the header is a button, the direction is announced by aria-sort and drawn as an arrow in the markup.
- table
- sort
- data
- a11y
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/table-004?lang=en
| Главная | 18 402 | 46,1 % | 12 марта |
| Услуги | 7 118 | 17,8 % | 9 марта |
| Портфолио | 6 940 | 17,4 % | 2 марта |
| Блог | 4 233 | 10,6 % | 27 февраля |
| Контакты | 3 211 | 8,1 % | 20 февраля |
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 "table-004" (Sortable Table) 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/table-004.json
Registry item: https://vibeui.ru/r/table-004.json
Installs to: components/vibeui/table-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
Sorting by column: the header is a button, the direction is announced by aria-sort and drawn as an arrow in the markup.
A sortable table: clicking a header switches the column, clicking again flips the direction, the arrow shows the current one. Zero dependencies, one file.
## 3. How to use it
import { Table004 } from "@/components/vibeui/table-004"
<Table004 rows={[{ name: "Home", views: 18402, share: 46.1, updated: "12 March" }]} />
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-table-004-* palette — do not swap it for your theme tokens
- aria-sort on the header cell — otherwise the order stays invisible to screen readers
- the button inside th: sorting must work from the keyboard
- the arrow as text rather than a rotated background
- localeCompare for strings: byte comparison mangles non-Latin alphabets
- tabular figures in the numeric columns
## 6. You may change
- the rows array and the column set
- caption — the table caption
- the initial sort column
- the accent through the accent prop
## 7. Rules
- Sorting runs client-side over the whole array: for server pages sort in the query.
- Copying the array is mandatory: sort mutates, and props must not be mutated.
- Past seven columns a table stops reading — move rare fields into row details.
- 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/table-004.jsonhttps://vibeui.ru/r/table-004.jsonКомпонент самодостаточен: один файл, без зависимостей, собственная палитра в локальных переменных --vibeui-table-004-*. Клиентский: "use client" ради сортировки. Заголовок колонки — кнопка, состояние объявлено атрибутом aria-sort на ячейке. Числа сравниваются вычитанием, строки — localeCompare с русской локалью, поэтому «ё» встаёт на своё место.
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 Table004Row = {
name: string
views: number
share: number
updated: string
}
export type Table004Props = Omit<
ComponentPropsWithoutRef<"div">,
"children"
> & {
rows?: Table004Row[]
caption?: string
accent?: string
}
type Column = "name" | "views" | "share" | "updated"
// Идея компонента: сортировка по колонке. Заголовок — кнопка, а состояние
// объявлено через aria-sort: без него скринридер не сообщит, по чему
// отсортировано. Стрелка направления выводится текстом в разметке, а не
// поворотом фона, поэтому она читается вслух вместе с названием колонки.
const STYLES = `
:where([data-vibeui-block="table-004"]){
--vibeui-table-004-bg:oklch(1 0 0);
--vibeui-table-004-fg:oklch(0.24 0.014 265);
--vibeui-table-004-muted:oklch(0.56 0.014 265);
--vibeui-table-004-border:oklch(0.92 0.006 265);
--vibeui-table-004-head:oklch(0.975 0.003 265);
--vibeui-table-004-hover:oklch(0.55 0.02 265 / 5%);
--vibeui-table-004-accent:oklch(0.55 0.2 262);
--vibeui-table-004-font:ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}
[data-vibeui-block="table-004"]{
width:100%;box-sizing:border-box;overflow-x:auto;
background:var(--vibeui-table-004-bg);
border:1px solid var(--vibeui-table-004-border);border-radius:0.875rem;
font-family:var(--vibeui-table-004-font);color:var(--vibeui-table-004-fg);
}
[data-vibeui-block="table-004"] table{width:100%;border-collapse:collapse;font-size:0.8125rem}
[data-vibeui-block="table-004"] caption{
padding:0.75rem 0.875rem;text-align:left;
font-size:0.875rem;font-weight:650;
}
[data-vibeui-block="table-004"] th,
[data-vibeui-block="table-004"] td{
padding:0.5rem 0.875rem;text-align:left;white-space:nowrap;
border-top:1px solid var(--vibeui-table-004-border);
}
[data-vibeui-block="table-004"] thead th{background:var(--vibeui-table-004-head);font-weight:600;padding:0}
[data-vibeui-block="table-004"] [data-align="end"]{text-align:right;font-variant-numeric:tabular-nums}
/* Заголовок — кнопка: сортировка должна работать и с клавиатуры. */
[data-vibeui-block="table-004"] thead button{
display:flex;align-items:center;gap:0.25rem;width:100%;
appearance:none;border:0;background:none;cursor:pointer;
padding:0.5rem 0.875rem;color:inherit;font:inherit;font-weight:600;
}
[data-vibeui-block="table-004"] th[data-align="end"] button{justify-content:flex-end}
[data-vibeui-block="table-004"] thead button:hover{background:var(--vibeui-table-004-hover)}
[data-vibeui-block="table-004"] thead button:focus-visible{outline:2px solid var(--vibeui-table-004-accent);outline-offset:-2px}
/* Стрелка текстом: её читают вслух вместе с названием колонки. */
[data-vibeui-block="table-004"] [data-part="arrow"]{color:var(--vibeui-table-004-accent);font-size:0.6875rem}
[data-vibeui-block="table-004"] th[aria-sort="none"] [data-part="arrow"]{color:var(--vibeui-table-004-muted);opacity:.4}
[data-vibeui-block="table-004"] tbody tr:hover{background:var(--vibeui-table-004-hover)}
@media (prefers-reduced-motion:reduce){[data-vibeui-block="table-004"] *{animation:none!important;transition:none!important}}
`
const DEFAULT_ROWS: Table004Row[] = [
{ name: "Главная", views: 18402, share: 46.1, updated: "12 марта" },
{ name: "Услуги", views: 7118, share: 17.8, updated: "9 марта" },
{ name: "Портфолио", views: 6940, share: 17.4, updated: "2 марта" },
{ name: "Блог", views: 4233, share: 10.6, updated: "27 февраля" },
{ name: "Контакты", views: 3211, share: 8.1, updated: "20 февраля" },
]
const COLUMNS: { key: Column; title: string; numeric?: boolean }[] = [
{ key: "name", title: "Страница" },
{ key: "views", title: "Просмотры", numeric: true },
{ key: "share", title: "Доля", numeric: true },
{ key: "updated", title: "Изменена" },
]
/**
* Таблица с сортировкой по колонке: заголовок-кнопка и aria-sort.
* Один файл, ноль зависимостей, собственная палитра.
*/
export function Table004({
rows = DEFAULT_ROWS,
caption = "Страницы сайта за март",
accent,
className,
style,
...props
}: Table004Props) {
const [column, setColumn] = useState<Column>("views")
const [descending, setDescending] = useState(true)
const sorted = [...rows].sort((a, b) => {
const left = a[column]
const right = b[column]
const result =
typeof left === "number" && typeof right === "number"
? left - right
: String(left).localeCompare(String(right), "ru")
return descending ? -result : result
})
const toggle = (key: Column) => {
if (key === column) return setDescending(!descending)
setColumn(key)
setDescending(key !== "name" && key !== "updated")
}
const palette = {
...(accent ? { "--vibeui-table-004-accent": accent } : null),
...style,
} as CSSProperties
return (
<>
<style href="vibeui-table-004" precedence="medium">
{STYLES}
</style>
<div
{...props}
data-vibeui-block="table-004"
className={className}
style={palette}
>
<table>
<caption>{caption}</caption>
<thead>
<tr>
{COLUMNS.map((item) => (
<th
key={item.key}
scope="col"
data-align={item.numeric ? "end" : undefined}
aria-sort={
item.key === column
? descending
? "descending"
: "ascending"
: "none"
}
>
<button type="button" onClick={() => toggle(item.key)}>
{item.title}
<span data-part="arrow" aria-hidden="true">
{item.key === column ? (descending ? "▼" : "▲") : "▼"}
</span>
</button>
</th>
))}
</tr>
</thead>
<tbody>
{sorted.map((row) => (
<tr key={row.name}>
<td>{row.name}</td>
<td data-align="end">{row.views.toLocaleString("ru-RU")}</td>
<td data-align="end">{row.share.toLocaleString("ru-RU")} %</td>
<td>{row.updated}</td>
</tr>
))}
</tbody>
</table>
</div>
</>
)
}