BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/aurora/aurora-ai-queue

Aurora AI Queue

aurora-dinglebear-ai/aurora-ai-queue
UnverifiedBlock

Aurora-native queue parity surface from AI Elements.

Install it

npx shadcn@latest add https://raw.githubusercontent.com/dinglebear-ai/aurora/main/aurora-ai-queue.json

Source

registry/aurora/blocks/ai/elements/queue.tsxraw.githubusercontent.com/dinglebear-ai/aurora/main/aurora-ai-queue.json · first 6 KB
1"use client"
2
3import * as React from "react"
4import { CheckCircle2, ListChecks, LoaderCircle } from "lucide-react"
5import { Badge } from "@/registry/aurora/ui/badge"
6
7/**
8 * Queue — a live processing queue: a titled panel with a running-count summary
9 * and a list of jobs. Each job carries a status:
10 * - `done` dimmed title, teal check ring, outlined "DONE" badge
11 * - `running` the "head" job — highlighted with Axon-orange automation
12 * identity and a live "RUNNING" badge
13 * - `queued` numbered by queue position, plain muted "QUEUED" trailing label
14 *
15 * Self-contained, CD-parity implementation. No violet/purple AI emphasis.
16 */
17
18export type QueueStatus = "done" | "running" | "queued"
19
20export interface QueueItem {
21 id: string | number
22 title: string
23 status: QueueStatus
24 /** Secondary line under the title (counts, ETA, timing). */
25 meta?: string
26}
27
28export interface QueueProps extends React.HTMLAttributes<HTMLDivElement> {
29 title: string
30 items: QueueItem[]
31}
32
33const Queue = ({ ref, title, items, className, style, ...props }: QueueProps & { ref?: React.Ref<HTMLDivElement> }) => {
34 const runningCount = items.filter((i) => i.status === "running").length
35 const queuedCount = items.filter((i) => i.status === "queued").length
36
37 // Queue positions: the running "head" is 1; queued items number from there.
38 const positionBase = runningCount > 0 ? runningCount : 0
39
40 return (
41 <div
42 ref={ref}
43 className={["aurora-queue", className].filter(Boolean).join(" ")}
44 style={
45 {
46 boxSizing: "border-box",
47 display: "grid",
48 gap: "14px",
49 width: "100%",
50 minWidth: 0,
51 padding: "20px 22px",
52 background: "var(--aurora-panel-medium)",
53 border: "1px solid var(--aurora-border-default)",
54 borderRadius: "var(--aurora-radius-3)",
55 boxShadow: "var(--aurora-shadow-medium), var(--aurora-highlight-medium)",
56 ...style,
57 } as React.CSSProperties
58 }
59 {...props}
60 >
61 {/* Header: list icon + title, running/queued summary */}
62 <div
63 style={{
64 display: "flex",
65 alignItems: "center",
66 justifyContent: "space-between",
67 gap: "16px",
68 }}
69 >
70 <div style={{ display: "flex", alignItems: "center", gap: "10px", minWidth: 0 }}>
71// … truncated

What it pulls in

npm packages

  • lucide-react@^0.487.0

Other registry items

  • @aurora/aurora-tokens
  • @aurora/aurora-ai-elements

Files it writes

  • registry/aurora/blocks/ai/elements/queue.tsx

Facts

Registry
aurora
Type
registry:block
Access
Unverified
Files written
1
Licence
AGPL-3.0
In the index
at or before 2026-08-08
Last confirmed
today

Go to the source

aurora.dinglebear.ai dinglebear-ai/aurora on GitHub Raw registry item This item as JSON

More from aurora

All 176 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
Aurora AI Actionaurora-ai-actionauroraBlocksUnverified1 dep
Aurora AI Actionsaurora-ai-actionsauroraBlocksUnverified1 dep
Aurora AI Agentaurora-ai-agentauroraBlocksUnverified1 dep
Aurora AI Image Gridaurora-ai-ai-image-gridauroraBlocksUnverified1 dep
Aurora AI Attachmentsaurora-ai-attachmentsauroraBlocksUnverified1 dep
Aurora AI Audio Playeraurora-ai-audio-playerauroraBlocksUnverified1 dep
Aurora AI Branchaurora-ai-branchauroraBlocksUnverified1 dep
Aurora AI Canvasaurora-ai-canvasauroraBlocksUnverified1 dep

Also from Kynth Studios

Built for the same person as BlockDex

SkillWorks

Claude Code skills and plugins, scored

skillworks.kynth.studio

RuleStack

AGENTS.md gallery and agent-config comparison

rulestack.kynth.studio

ToolDrift

What the AI coding tools changed last night

tooldrift.kynth.studio

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex