Code Playground
Editeur de code interactif avec apercu en direct. Installez Code Playground depuis le registre VLLNT UI avec la CLI shadcn.
Editeur de code interactif avec apercu en direct. Fait partie de la famille content dans VLLNT UI, il est publie comme entree de registre lisible par machine — copiez la source directement dans votre application avec la CLI shadcn et possedez-la, sans dependance d'execution a une bibliotheque de composants.
Apercu
Basculez entre clair et sombre pour inspecter l'apercu Storybook integre.
Installation
Ajoutez Code Playground a votre projet avec la CLI shadcn. La source arrive dans votre code, prete a etre adaptee :
pnpm dlx shadcn@latest add https://ui.vllnt.ai/r/code-playground.jsonSource
"use client";
import { Check, Code, Copy, FileCode } from "lucide-react";
import type { ReactNode } from "react";
import type { HeadingTag } from "../../lib/types";
import { cn } from "../../lib/utils";
import { Button } from "../button/button";
import { useCopyToClipboard } from "../copy-button/copy-button";
type CodeLineProps = {
highlightLines: number[];
line: string;
lineNumber: number;
};
function CodeLine({ highlightLines, line, lineNumber }: CodeLineProps) {
const isHighlighted = highlightLines.includes(lineNumber);
return (
<div className={cn("flex", isHighlighted && "bg-primary/10 -mx-4 px-4")}>
<span className="select-none w-8 text-right pr-4 text-muted-foreground/50">
{lineNumber}
</span>
<span>{line}</span>
</div>
);
}
export type CodePlaygroundProps = {
/** Heading tag for the title. Defaults to `h4`. */
as?: HeadingTag;
children: ReactNode;
description?: string;
filename?: string;
highlightLines?: number[];
language?: string;
showLineNumbers?: boolean;
title: string;
};
const EMPTY_HIGHLIGHT_LINES: number[] = [];
function extractCode(node: ReactNode): string {
return typeof node === "string" ? node : "";
}
export function CodePlayground({
as: Heading = "h4",
children,
description,
filename,
highlightLines = EMPTY_HIGHLIGHT_LINES,
language = "typescript",
showLineNumbers = false,
title,
}: CodePlaygroundProps) {
const { copied, copy } = useCopyToClipboard();
const code = extractCode(children);
const lines = code.split("\n");
const handleCopy = () => {
void copy(code);
};
return (
<div className="my-6 rounded-lg border bg-card overflow-hidden">
<div className="flex items-center justify-between px-4 py-3 border-b bg-muted/30">
<div className="flex items-center gap-3">
<div className="flex size-8 items-center justify-center rounded bg-primary/10">
<Code className="size-4 text-primary" />
</div>
<div>
<Heading className="font-semibold text-sm">{title}</Heading>
{description ? (
<p className="text-xs text-muted-foreground">{description}</p>
) : null}
</div>
</div>
<div className="flex items-center gap-2">
{filename ? (
<div className="flex items-center gap-1 text-xs text-muted-foreground">
<FileCode className="size-3" />
<span className="font-mono">{filename}</span>
</div>
) : null}
<Button
aria-label={copied ? "Copied" : "Copy code"}
className="size-8"
onClick={handleCopy}
size="icon"
variant="ghost"
>
{copied ? (
<Check className="size-3" />
) : (
<Copy className="size-3" />
)}
</Button>
</div>
</div>
<div className="relative overflow-x-auto">
<pre className="p-4 text-sm font-mono">
{showLineNumbers ? (
<code>
{lines.map((line, index) => (
<CodeLine
highlightLines={highlightLines}
key={`${line}-${index + 1}`}
line={line}
lineNumber={index + 1}
/>
))}
</code>
) : (
<code>{code}</code>
)}
</pre>
</div>
<div className="px-4 py-2 border-t bg-muted/30">
<span className="text-xs font-mono text-muted-foreground uppercase tracking-wider">
{language}
</span>
</div>
</div>
);
}
export type FileTreeProps = {
children: ReactNode;
title?: string;
};
export function FileTree({
children,
title = "File Structure",
}: FileTreeProps) {
return (
<div className="my-6 rounded-lg border bg-card overflow-hidden">
<div className="px-4 py-2 border-b bg-muted/30">
<h4 className="font-semibold text-sm flex items-center gap-2">
<FileCode className="size-4" />
{title}
</h4>
</div>
<div className="p-4 font-mono text-sm [&>ul]:m-0 [&>ul]:list-none [&_ul]:ml-4 [&_ul]:list-none [&_li]:text-muted-foreground">
{children}
</div>
</div>
);
}
Stories
Explorez chaque variante et etat dans le Storybook interactif :
Apercu
Basculez entre clair et sombre pour inspecter l'apercu Storybook integre.