Charts
Progress Inside
A plan where a task bar doubles as a progress track: the fill is what is done, the dashed notch is what was expected by today, and the gap between them is the delay.
- gantt
- progress
- status
- plan
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/gantt-004?lang=en
Work progress
по плану 43% · пунктир — ожидание на сегодня
Готовность таблицей
| Задача | Недели | Готово | Ожидалось |
|---|---|---|---|
| Каркас каталога | W10 — W11 | 100% | 100% |
| Карточки блоков | W11 — W13 | 80% | 100% |
| Импорт данных | W12 — W14 | 35% | 67% |
| Экспорт для агента | W14 — W15 | 10% | 0% |
| Документация | W15 — W17 | 0% | 0% |
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 "gantt-004" (Progress Inside) 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/gantt-004.json
Registry item: https://vibeui.ru/r/gantt-004.json
Installs to: components/vibeui/gantt-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
A plan where a task bar doubles as a progress track: the fill is what is done, the dashed notch is what was expected by today, and the gap between them is the delay.
A plan with progress inside the bar: the fill is the fact, the notch is today's expectation, and the delay shows as the gap. Zero dependencies, one file.
## 3. How to use it
import { Gantt004 } from "@/components/vibeui/gantt-004"
<Gantt004
currentWeek={4}
tasks={[{ title: "Catalog", start: 2, weeks: 3, progress: 80, owner: "Ilya" }]}
/>
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-gantt-004-* palette — do not swap it for your theme tokens
- the expectation notch: without it «40% done» does not answer whether you are on time
- the percentage as a number inside the bar — 55% and 70% are indistinguishable by fill length
- the hatching on a lagging fill: red alone dies in print and for colour blindness
- the scroll container with overflow-x and tabindex=0: there are usually more weeks than fit the screen
- the <details> table with fact and expectation: a chart needs a text alternative
## 6. You may change
- the tasks array together with its progress field
- the column captions through weeks
- the current week through currentWeek
- the caption through heading and the accent through accent
## 7. Rules
- The expectation is linear across weeks: substitute your own formula for uneven tasks.
- The lag threshold is hard-coded at ten points — a convention, not a universal norm.
- A bar shorter than three weeks clips the percentage label: watch the minimum column width.
- 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/gantt-004.jsonhttps://vibeui.ru/r/gantt-004.jsonКомпонент самодостаточен: один файл, без зависимостей, собственная палитра --vibeui-gantt-004-*. Серверный: хуков нет. Полоса лежит на колонках грида (недели), внутри неё абсолютная заливка шириной calc(var(--vibeui-gantt-004-progress) * 1%) и засечка ожидаемой доли, посчитанной из currentWeek. Отставание больше десяти пунктов переключает заливку на штриховку — цвет дублируется рисунком. Текущая неделя подсвечена в шапке и в клетках, таблица в <details> повторяет план, факт и ожидание числами.
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 Gantt004Task = {
title: string
/** Смещение начала в неделях от начала плана. */
start: number
weeks: number
/** Готовность, 0–100. */
progress: number
owner?: string
}
export type Gantt004Props = Omit<
ComponentPropsWithoutRef<"section">,
"children" | "title"
> & {
heading?: string
weeks?: string[]
tasks?: Gantt004Task[]
/** Номер текущей недели, 1 — первая колонка. */
currentWeek?: number
accent?: string
}
// Идея компонента: полоса показывает срок, но не отвечает на вопрос
// «успеваем ли». Готовность рисуется заливкой ВНУТРИ полосы, а ожидаемая
// на сегодня доля — засечкой на той же полосе: отставание видно как разрыв
// между заливкой и засечкой, без второй строки «план/факт». Проценты
// продублированы числом: по длине заливки 55% от 70% не отличить.
const STYLES = `
:where([data-vibeui-block="gantt-004"]){
--vibeui-gantt-004-bg:oklch(1 0 0);
--vibeui-gantt-004-fg:oklch(0.23 0.014 265);
--vibeui-gantt-004-muted:oklch(0.6 0.014 265);
--vibeui-gantt-004-border:oklch(0.91 0.006 265);
--vibeui-gantt-004-line:oklch(0.955 0.004 265);
--vibeui-gantt-004-track:oklch(0.94 0.006 265);
--vibeui-gantt-004-accent:oklch(0.55 0.16 250);
--vibeui-gantt-004-late:oklch(0.6 0.18 25);
--vibeui-gantt-004-font:ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}
[data-vibeui-block="gantt-004"]{
width:100%;box-sizing:border-box;padding:1rem;
background:var(--vibeui-gantt-004-bg);
border:1px solid var(--vibeui-gantt-004-border);border-radius:1rem;
color:var(--vibeui-gantt-004-fg);font-family:var(--vibeui-gantt-004-font);
}
[data-vibeui-block="gantt-004"] *{box-sizing:border-box}
[data-vibeui-block="gantt-004"] [data-part="head"]{
display:flex;flex-wrap:wrap;align-items:baseline;justify-content:space-between;
gap:0.5rem;margin:0 0 0.75rem;
}
[data-vibeui-block="gantt-004"] [data-part="heading"]{
margin:0;font-size:0.9375rem;font-weight:700;letter-spacing:-0.01em;
}
[data-vibeui-block="gantt-004"] [data-part="hint"]{
margin:0;font-size:0.75rem;color:var(--vibeui-gantt-004-muted);
}
[data-vibeui-block="gantt-004"] [data-part="scroll"]{
overflow-x:auto;border:1px solid var(--vibeui-gantt-004-line);border-radius:0.625rem;
}
[data-vibeui-block="gantt-004"] [data-part="scroll"]:focus-visible{
outline:2px solid var(--vibeui-gantt-004-accent);outline-offset:2px;
}
[data-vibeui-block="gantt-004"] [data-part="grid"]{
display:grid;min-width:32rem;
grid-template-columns:11rem repeat(var(--vibeui-gantt-004-weeks,8),minmax(3rem,1fr));
}
[data-vibeui-block="gantt-004"] [data-part="cap"]{
padding:0.375rem 0.25rem;text-align:center;
border-bottom:1px solid var(--vibeui-gantt-004-border);
border-left:1px solid var(--vibeui-gantt-004-line);
font-size:0.625rem;color:var(--vibeui-gantt-004-muted);
}
[data-vibeui-block="gantt-004"] [data-part="cap"][data-current="true"]{
color:var(--vibeui-gantt-004-accent);font-weight:700;
}
[data-vibeui-block="gantt-004"] [data-part="corner"]{
position:sticky;left:0;z-index:2;background:var(--vibeui-gantt-004-bg);
border-bottom:1px solid var(--vibeui-gantt-004-border);
border-right:1px solid var(--vibeui-gantt-004-border);
}
[data-vibeui-block="gantt-004"] [data-part="name"]{
position:sticky;left:0;z-index:1;
display:flex;flex-direction:column;justify-content:center;gap:0.0625rem;
min-height:2.5rem;padding:0.3125rem 0.625rem;
background:var(--vibeui-gantt-004-bg);
border-right:1px solid var(--vibeui-gantt-004-border);
border-top:1px solid var(--vibeui-gantt-004-line);
font-size:0.75rem;font-weight:600;
}
[data-vibeui-block="gantt-004"] [data-part="name"] small{
font-size:0.625rem;font-weight:400;color:var(--vibeui-gantt-004-muted);
}
[data-vibeui-block="gantt-004"] [data-part="cell"]{
border-top:1px solid var(--vibeui-gantt-004-line);
border-left:1px solid var(--vibeui-gantt-004-line);
}
[data-vibeui-block="gantt-004"] [data-part="cell"][data-current="true"]{
background:color-mix(in oklab,var(--vibeui-gantt-004-accent) 6%,transparent);
}
/* Полоса — это дорожка: срок задаёт её ширину, готовность — заливку внутри. */
[data-vibeui-block="gantt-004"] [data-part="bar"]{
position:relative;align-self:center;z-index:1;
margin:0 0.25rem;height:1.375rem;border-radius:0.4375rem;overflow:hidden;
background:var(--vibeui-gantt-004-track);
border:1px solid var(--vibeui-gantt-004-border);
}
[data-vibeui-block="gantt-004"] [data-part="fill"]{
position:absolute;inset:0 auto 0 0;
width:calc(var(--vibeui-gantt-004-progress,0) * 1%);
background:color-mix(in oklab,var(--vibeui-gantt-004-accent) 70%,var(--vibeui-gantt-004-bg));
}
[data-vibeui-block="gantt-004"] [data-part="bar"][data-late="true"] [data-part="fill"]{
background:repeating-linear-gradient(135deg,
color-mix(in oklab,var(--vibeui-gantt-004-late) 55%,var(--vibeui-gantt-004-bg)) 0 5px,
color-mix(in oklab,var(--vibeui-gantt-004-late) 35%,var(--vibeui-gantt-004-bg)) 5px 10px);
}
/* Засечка — ожидаемая на сегодня доля. Разрыв с заливкой и есть отставание. */
[data-vibeui-block="gantt-004"] [data-part="target"]{
position:absolute;top:0;bottom:0;
left:calc(var(--vibeui-gantt-004-target,0) * 1%);
border-left:2px dashed var(--vibeui-gantt-004-fg);
}
[data-vibeui-block="gantt-004"] [data-part="value"]{
position:relative;z-index:1;display:block;
padding:0 0.4375rem;line-height:1.375rem;
font-size:0.625rem;font-weight:650;font-variant-numeric:tabular-nums;
}
[data-vibeui-block="gantt-004"] [data-part="table"]{margin:0.75rem 0 0}
[data-vibeui-block="gantt-004"] summary{
cursor:pointer;font-size:0.75rem;font-weight:600;color:var(--vibeui-gantt-004-accent);
}
[data-vibeui-block="gantt-004"] summary:focus-visible{
outline:2px solid var(--vibeui-gantt-004-accent);outline-offset:2px;border-radius:0.25rem;
}
[data-vibeui-block="gantt-004"] table{
width:100%;margin-top:0.5rem;border-collapse:collapse;font-size:0.6875rem;
}
[data-vibeui-block="gantt-004"] th,
[data-vibeui-block="gantt-004"] td{
padding:0.25rem 0.375rem;text-align:left;
border-bottom:1px solid var(--vibeui-gantt-004-line);
}
[data-vibeui-block="gantt-004"] thead th{color:var(--vibeui-gantt-004-muted);font-weight:600}
[data-vibeui-block="gantt-004"] td{font-variant-numeric:tabular-nums}
@media (prefers-reduced-motion:reduce){[data-vibeui-block="gantt-004"] *{animation:none!important;transition:none!important}}
`
const DEFAULT_WEEKS = ["W10", "W11", "W12", "W13", "W14", "W15", "W16", "W17"]
const DEFAULT_TASKS: Gantt004Task[] = [
{
title: "Каркас каталога",
start: 1,
weeks: 2,
progress: 100,
owner: "Аня",
},
{ title: "Карточки блоков", start: 2, weeks: 3, progress: 80, owner: "Илья" },
{ title: "Импорт данных", start: 3, weeks: 3, progress: 35, owner: "Ким" },
{
title: "Экспорт для агента",
start: 5,
weeks: 2,
progress: 10,
owner: "Пётр",
},
{
title: "Документация",
start: 6,
weeks: 3,
progress: 0,
owner: "не назначен",
},
]
/**
* План с прогрессом внутри полосы: заливка — сделано, засечка — ожидаемая
* на сегодня доля. Один файл, ноль зависимостей, клиентского JS нет.
*/
export function Gantt004({
heading = "Готовность работ",
weeks = DEFAULT_WEEKS,
tasks = DEFAULT_TASKS,
currentWeek = 4,
accent,
className,
style,
...props
}: Gantt004Props) {
const expected = (task: Gantt004Task) => {
const passed = currentWeek - task.start + 1
return Math.max(0, Math.min(100, Math.round((passed / task.weeks) * 100)))
}
const done = Math.round(
tasks.reduce((sum, task) => sum + task.progress * task.weeks, 0) /
tasks.reduce((sum, task) => sum + task.weeks, 0),
)
const palette = {
"--vibeui-gantt-004-weeks": weeks.length,
...(accent ? { "--vibeui-gantt-004-accent": accent } : null),
...style,
} as CSSProperties
return (
<>
<style href="vibeui-gantt-004" precedence="medium">
{STYLES}
</style>
<section
{...props}
data-vibeui-block="gantt-004"
aria-label={heading}
className={className}
style={palette}
>
<header data-part="head">
<h3 data-part="heading">{heading}</h3>
<p data-part="hint">
по плану {done}% · пунктир — ожидание на сегодня
</p>
</header>
<div
data-part="scroll"
tabIndex={0}
role="group"
aria-label={`${heading}: диаграмма, прокручивается вбок`}
>
<div data-part="grid">
<span data-part="corner" />
{weeks.map((week, index) => (
<span
key={week}
data-part="cap"
data-current={String(index + 1 === currentWeek)}
>
{week}
</span>
))}
{tasks.map((task, row) => (
<span
key={task.title}
data-part="name"
style={{ gridRow: row + 2, gridColumn: 1 } as CSSProperties}
>
{task.title}
{task.owner ? <small>{task.owner}</small> : null}
</span>
))}
{tasks.map((task, row) =>
weeks.map((week, column) => (
<span
key={`${task.title}-${week}`}
data-part="cell"
data-current={String(column + 1 === currentWeek)}
style={
{
gridRow: row + 2,
gridColumn: column + 2,
} as CSSProperties
}
/>
)),
)}
{tasks.map((task, row) => {
const target = expected(task)
const late = task.progress + 10 < target
return (
<span
key={`${task.title}-bar`}
data-part="bar"
data-late={String(late)}
role="img"
aria-label={`${task.title}: готово ${task.progress}%, ожидалось ${target}%`}
style={
{
gridRow: row + 2,
gridColumn: `${task.start + 1} / ${task.start + task.weeks + 1}`,
"--vibeui-gantt-004-progress": task.progress,
"--vibeui-gantt-004-target": target,
} as CSSProperties
}
>
<i data-part="fill" aria-hidden="true" />
<i data-part="target" aria-hidden="true" />
<b data-part="value">{task.progress}%</b>
</span>
)
})}
</div>
</div>
<details data-part="table">
<summary>Готовность таблицей</summary>
<table>
<thead>
<tr>
<th scope="col">Задача</th>
<th scope="col">Недели</th>
<th scope="col">Готово</th>
<th scope="col">Ожидалось</th>
</tr>
</thead>
<tbody>
{tasks.map((task) => (
<tr key={task.title}>
<th scope="row">{task.title}</th>
<td>
{weeks[task.start - 1]} —{" "}
{weeks[task.start + task.weeks - 2]}
</td>
<td>{task.progress}%</td>
<td>{expected(task)}%</td>
</tr>
))}
</tbody>
</table>
</details>
</section>
</>
)
}