添加一个块
向块库贡献组件。
我们邀请社区为 块库 做出贡献。与其他开发者共享你的组件和块,并帮助构建高质量、可重用组件库。
¥We are inviting the community to contribute to the blocks library. Share your components and blocks with other developers and help build a library of high-quality, reusable components.
我们很乐意看到所有类型的块:应用、营销、产品等。
¥We'd love to see all types of blocks: applications, marketing, products, and more.
设置你的工作区
¥Setup your workspace
分叉存储库
¥Fork the repository
git clone https://github.com/shadcn-ui/ui.git创建一个新分支
¥Create a new branch
git checkout -b username/my-new-block安装依赖
¥Install dependencies
pnpm install启动开发服务器
¥Start the dev server
pnpm www:dev添加一个块
¥Add a block
一个块可以是单个组件(例如,ui 组件的变体)或具有多个组件、钩子和实用程序的复杂组件(例如,仪表板)。
¥A block can be a single component (eg. a variation of a ui component) or a complex component (eg. a dashboard) with multiple components, hooks, and utils.
创建一个新块
¥Create a new block
在 apps/www/registry/new-york/blocks 目录中创建一个新文件夹。确保文件夹以 kebab-case 命名并位于 new-york 下。
¥Create a new folder in the apps/www/registry/new-york/blocks directory. Make sure the folder is named in kebab-case and under new-york.
apps
└── www
└── registry
└── new-york
└── blocks
└── dashboard-01注意:构建脚本将负责为 default 样式构建块。
¥Note: The build script will take care of building the block for the default style.
添加你的块文件
¥Add your block files
将你的文件添加到块文件夹。以下是带有页面、组件、钩子和实用程序的块的示例。
¥Add your files to the block folder. Here is an example of a block with a page, components, hooks, and utils.
dashboard-01
└── page.tsx
└── components
└── hello-world.tsx
└── example-card.tsx
└── hooks
└── use-hello-world.ts
└── lib
└── format-date.ts注意:你可以从一个文件开始,稍后再添加更多文件。
¥Note: You can start with one file and add more files later.
将你的块添加到注册表
¥Add your block to the registry
将你的块定义添加到 registry-blocks.tsx
¥Add your block definition to registry-blocks.tsx
要将你的块添加到注册表,你需要将你的块定义添加到 registry-blocks.ts。
¥To add your block to the registry, you need to add your block definition to registry-blocks.ts.
这遵循 https://shadcn.nodejs.cn/schema/registry-item.json 中的注册表模式。
¥This follows the registry schema at https://shadcn.nodejs.cn/schema/registry-item.json.
export const blocks = [
// ...
{
name: "dashboard-01",
author: "shadcn (https://shadcn.nodejs.cn)",
title: "Dashboard",
description: "A simple dashboard with a hello world component.",
type: "registry:block",
registryDependencies: ["input", "button", "card"],
dependencies: ["zod"],
files: [
{
path: "blocks/dashboard-01/page.tsx",
type: "registry:page",
target: "app/dashboard/page.tsx",
},
{
path: "blocks/dashboard-01/components/hello-world.tsx",
type: "registry:component",
},
{
path: "blocks/dashboard-01/components/example-card.tsx",
type: "registry:component",
},
{
path: "blocks/dashboard-01/hooks/use-hello-world.ts",
type: "registry:hook",
},
{
path: "blocks/dashboard-01/lib/format-date.ts",
type: "registry:lib",
},
],
categories: ["dashboard"],
},
]确保添加名称、描述、类型、registryDependencies、依赖、文件和类别。我们将在架构文档(即将推出)中更详细地介绍其中的每一个。
¥Make sure you add a name, description, type, registryDependencies, dependencies, files, and categories. We'll go over each of these in more detail in the schema docs (coming soon).
运行构建脚本
¥Run the build script
pnpm registry:build注意:你不需要为每次更改运行此脚本。你只需在更新块定义时运行它。
¥Note: you do not need to run this script for every change. You only need to run it when you update the block definition.
查看你的块
¥View your block
构建脚本完成后,你可以在 http://localhost:3333/blocks/[CATEGORY] 查看你的块或在 http://localhost:3333/view/styles/new-york/dashboard-01 全屏预览。
¥Once the build script is finished, you can view your block at http://localhost:3333/blocks/[CATEGORY] or a full screen preview at http://localhost:3333/view/styles/new-york/dashboard-01.

构建你的块
¥Build your block
你现在可以通过编辑块文件夹中的文件并在浏览器中查看更改来构建块。
¥You can now build your block by editing the files in the block folder and viewing the changes in the browser.
如果你添加更多文件,请确保将它们添加到块定义中的 files 数组中。
¥If you add more files, make sure to add them to the files array in the block definition.
发布你的块
¥Publish your block
准备好发布块后,你可以向主存储库提交拉取请求。
¥Once you're ready to publish your block, you can submit a pull request to the main repository.
运行构建脚本
¥Run the build script
pnpm registry:build捕获屏幕截图
¥Capture a screenshot
pnpm registry:capture注意:如果你之前运行过捕获脚本,则可能需要删除 apps/www/public/r/styles/new-york 处的现有屏幕截图(明暗)并再次运行脚本。
¥Note: If you've run the capture script before, you might need to delete the existing screenshots (both light and dark) at apps/www/public/r/styles/new-york and run the script again.
提交拉取请求
¥Submit a pull request
提交你的更改并向主存储库提交拉取请求。
¥Commit your changes and submit a pull request to the main repository.
你的块将被审查和合并。合并后,它将发布到网站并可通过 CLI 安装。
¥Your block will be reviewed and merged. Once merged it will be published to the website and available to be installed via the CLI.
类别
¥Categories
categories 属性用于在注册表中组织块。
¥The categories property is used to organize your block in the registry.
添加一个类别
¥Add a category
如果你需要添加新类别,可以通过将其添加到 apps/www/registry/registry-categories.ts 中的 registryCategories 数组来实现。
¥If you need to add a new category, you can do so by adding it to the registryCategories array in apps/www/registry/registry-categories.ts.
export const registryCategories = [
// ...
{
name: "Input",
slug: "input",
hidden: false,
},
]指南
¥Guidelines
以下是为块库做贡献时要遵循的一些准则。
¥Here are some guidelines to follow when contributing to the blocks library.
-
块定义需要以下属性:
name、description、type、files和categories。¥The following properties are required for the block definition:
name,description,type,files, andcategories. -
确保列出
registryDependencies中的所有注册表依赖。注册表依赖是注册表中组件的名称,例如input、button、card等。¥Make sure to list all registry dependencies in
registryDependencies. A registry dependency is the name of the component in the registry eg.input,button,card, etc. -
确保列出
dependencies中的所有依赖。依赖是注册表中包的名称,例如zod、sonner等。¥Make sure to list all dependencies in
dependencies. A dependency is the name of the package in the registry eg.zod,sonner, etc. -
如果你的块有一个页面(可选),它应该是
files数组中的第一个条目,并且应该具有target属性。这有助于 CLI 将页面放在正确的位置以进行基于文件的路由。¥If your block has a page (optional), it should be the first entry in the
filesarray and it should have atargetproperty. This helps the CLI place the page in the correct location for file-based routing. -
导入应始终使用
@/registry路径。例如import { Input } from "@/registry/new-york/input"¥Imports should always use the
@/registrypath. eg.import { Input } from "@/registry/new-york/input"
