Display
Category Usage Bars
Usage by category as a stack of bars on one shared scale: every track is normalised to the same capacity, so the lengths are comparable instead of each being its own hundred percent.
- progress
- storage
- breakdown
- display
Preview
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/progress-005?lang=en
- Видео148 GB
- Фотографии96 GB
- Документы34 GB
- Кэш приложений21 GB
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 "progress-005" (Category Usage Bars) 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/progress-005.json
Registry item: https://vibeui.ru/r/progress-005.json
Installs to: components/vibeui/progress-005.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
Usage by category as a stack of bars on one shared scale: every track is normalised to the same capacity, so the lengths are comparable instead of each being its own hundred percent.
Usage by category: several tracks on a shared scale, a hue derived from each row's name, and a progressbar role per bar. Zero dependencies, one file, server rendered.
## 3. How to use it
import { Progress005 } from "@/components/vibeui/progress-005"
<Progress005
rows={[
{ label: "Video", value: 148 },
{ label: "Photos", value: 96 },
]}
capacity={512}
unit="GB"
/>
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-progress-005-* palette — do not swap it for your theme tokens
- the shared normalisation against capacity: per-row ratios would make the bars incomparable
- a separate progressbar role on every track — one shared role hides the breakdown from screen readers
- the colour chip next to the name: it ties a row to its track without a legend
- the tabular numbers: otherwise the value column dances on updates
- the card's own light surface: without it the dark text disappears on a dark background
## 6. You may change
- the row set and the values through rows
- the full quota through capacity
- the measurement unit through unit
- the hue formula inside the hue function if you need brand colours
## 7. Rules
- A capacity of zero switches the scale to the row sum, and free space is then always zero.
- More than eight rows turn the card into a picket fence — fold the tail into "Other".
- The name hash occasionally maps two neighbouring categories to close hues: check your real list.
- 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/progress-005.jsonhttps://vibeui.ru/r/progress-005.jsonКомпонент самодостаточен: один файл, без зависимостей, собственная палитра в локальных переменных --vibeui-progress-005-*. Серверный: хуков нет. Каждая строка — grid из двух колонок (имя и число) плюс дорожка на всю ширину: числа выстраиваются в колонку без табличной разметки. Доля считается от capacity, а не от суммы строк, поэтому свободное место остаётся видимым. Оттенок строки берётся хешем из её имени — новая категория получает свой цвет сама, таблицы соответствий нет; hue передаётся строке инлайновой переменной --vibeui-progress-005-hue и подставляется в oklch. У каждой дорожки собственный role="progressbar" со шкалой в единицах ёмкости и aria-valuetext словами.
Component source
The same file your agent installs. Here in case you would rather copy it by hand.
import type { ComponentPropsWithoutRef, CSSProperties } from "react"
export type Progress005Row = {
label: string
value: number
}
export type Progress005Props = Omit<
ComponentPropsWithoutRef<"div">,
"children"
> & {
rows?: Progress005Row[]
/** Ёмкость, к которой считаются доли. Ноль — берём сумму строк. */
capacity?: number
unit?: string
}
// Идея компонента: расход по категориям читается не одной полосой, а
// столбиком полос с общей шкалой. Все дорожки нормированы на одну ёмкость,
// поэтому длины сравнимы между собой, а не каждая сама себе сто процентов.
// Оттенок каждой строки считается из её имени, поэтому список можно менять,
// не выдавая цвета руками.
const STYLES = `
:where([data-vibeui-block="progress-005"]){
--vibeui-progress-005-bg:oklch(1 0 0);
--vibeui-progress-005-fg:oklch(0.25 0.016 265);
--vibeui-progress-005-muted:oklch(0.56 0.014 265);
--vibeui-progress-005-border:oklch(0.9 0.006 265);
--vibeui-progress-005-track:oklch(0.94 0.004 265);
--vibeui-progress-005-hue:262;
--vibeui-progress-005-value:0;
--vibeui-progress-005-font:ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}
[data-vibeui-block="progress-005"]{
display:flex;flex-direction:column;gap:0.875rem;
width:100%;max-width:28rem;box-sizing:border-box;padding:1rem 1.125rem;
background:var(--vibeui-progress-005-bg);
border:1px solid var(--vibeui-progress-005-border);border-radius:1rem;
font-family:var(--vibeui-progress-005-font);color:var(--vibeui-progress-005-fg);
}
[data-vibeui-block="progress-005"] [data-part="total"]{
display:flex;align-items:baseline;justify-content:space-between;gap:0.75rem;
font-size:0.8125rem;font-weight:650;
}
[data-vibeui-block="progress-005"] [data-part="free"]{
font-weight:500;color:var(--vibeui-progress-005-muted);font-variant-numeric:tabular-nums;
}
[data-vibeui-block="progress-005"] ul{
display:flex;flex-direction:column;gap:0.625rem;margin:0;padding:0;list-style:none;
}
/* Строка: имя, значение и дорожка — сетка, чтобы числа стояли в колонку. */
[data-vibeui-block="progress-005"] li{
display:grid;grid-template-columns:1fr auto;gap:0.25rem 0.75rem;
font-size:0.75rem;
}
[data-vibeui-block="progress-005"] [data-part="name"]{
display:flex;align-items:center;gap:0.4375rem;min-width:0;
overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
}
[data-vibeui-block="progress-005"] [data-part="chip"]{
flex:none;width:0.5rem;height:0.5rem;border-radius:0.1875rem;
background:oklch(0.62 0.16 var(--vibeui-progress-005-hue));
}
[data-vibeui-block="progress-005"] [data-part="amount"]{
color:var(--vibeui-progress-005-muted);font-variant-numeric:tabular-nums;
}
[data-vibeui-block="progress-005"] [data-part="track"]{
grid-column:1 / -1;
height:0.3125rem;border-radius:9999px;overflow:hidden;
background:var(--vibeui-progress-005-track);
}
[data-vibeui-block="progress-005"] [data-part="bar"]{
height:100%;border-radius:inherit;
width:calc(var(--vibeui-progress-005-value) * 1%);
background:oklch(0.62 0.16 var(--vibeui-progress-005-hue));
transition:width .3s cubic-bezier(.32,.72,0,1);
}
@media (prefers-reduced-motion:reduce){
[data-vibeui-block="progress-005"] *{animation:none!important;transition:none!important}
}
`
const DEFAULT_ROWS: Progress005Row[] = [
{ label: "Видео", value: 148 },
{ label: "Фотографии", value: 96 },
{ label: "Документы", value: 34 },
{ label: "Кэш приложений", value: 21 },
]
function hue(name: string) {
let hash = 2166136261
for (const symbol of name) {
hash ^= symbol.codePointAt(0)!
hash = Math.imul(hash, 16777619)
}
return ((hash >>> 0) % 12) * 30
}
/**
* Расход по категориям столбиком полос с общей шкалой.
* Один файл, ноль зависимостей, собственная палитра.
*/
export function Progress005({
rows = DEFAULT_ROWS,
capacity = 512,
unit = "ГБ",
className,
style,
...props
}: Progress005Props) {
const used = rows.reduce((sum, row) => sum + Math.max(0, row.value), 0)
const scale = capacity > 0 ? capacity : used || 1
return (
<>
<style href="vibeui-progress-005" precedence="medium">
{STYLES}
</style>
<div
{...props}
data-vibeui-block="progress-005"
className={className}
style={style as CSSProperties}
>
<div data-part="total">
<span>
Занято {used} {unit}
</span>
<span data-part="free">
свободно {Math.max(0, scale - used)} {unit}
</span>
</div>
<ul>
{rows.map((row) => {
const percent = Math.min(
100,
Math.max(0, (row.value / scale) * 100),
)
return (
<li
key={row.label}
style={
{
"--vibeui-progress-005-hue": hue(row.label),
"--vibeui-progress-005-value": percent,
} as CSSProperties
}
>
<span data-part="name">
<span data-part="chip" aria-hidden="true" />
{row.label}
</span>
<span data-part="amount">
{row.value} {unit}
</span>
<div
data-part="track"
role="progressbar"
aria-label={row.label}
aria-valuemin={0}
aria-valuemax={scale}
aria-valuenow={row.value}
aria-valuetext={`${row.label}: ${row.value} ${unit} из ${scale} ${unit}`}
>
<div data-part="bar" />
</div>
</li>
)
})}
</ul>
</div>
</>
)
}