mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2026-01-10 07:19:02 +08:00
- Changed the main CSS file reference from `globals.css` to `theme.css` in `components.json` for better theme management. - Introduced `index.css` to export only CSS variables, allowing npm users to utilize design tokens without overriding Tailwind defaults. - Removed `globals.css` as it is no longer needed with the new structure. - Updated `package.json` to reflect changes in CSS file paths. - Enhanced `README.md` to clarify installation and configuration steps for the new styling approach.
234 lines
4.4 KiB
Markdown
234 lines
4.4 KiB
Markdown
# @cherrystudio/ui
|
||
|
||
Cherry Studio UI 组件库 - 为 Cherry Studio 设计的 React 组件集合
|
||
|
||
## ✨ 特性
|
||
|
||
- 🎨 **设计系统**: 完整的 CherryStudio 设计令牌(17种颜色 × 11个色阶 + 语义化主题)
|
||
- 🌓 **Dark Mode**: 开箱即用的深色模式支持
|
||
- 🚀 **Tailwind v4**: 基于最新 Tailwind CSS v4 构建
|
||
- 📦 **灵活导入**: 3种样式导入方式,满足不同使用场景
|
||
- 🔷 **TypeScript**: 完整的类型定义和智能提示
|
||
- 🎯 **零冲突**: CSS 变量隔离,不覆盖用户主题
|
||
|
||
---
|
||
|
||
## 🚀 快速开始
|
||
|
||
### 安装
|
||
|
||
```bash
|
||
npm install @cherrystudio/ui
|
||
# peer dependencies
|
||
npm install @heroui/react framer-motion react react-dom tailwindcss
|
||
```
|
||
|
||
### 三种使用方式
|
||
|
||
根据你的需求选择一种:
|
||
|
||
#### 方式 1:完整主题(推荐给主包)
|
||
|
||
```css
|
||
/* app.css */
|
||
@import '@cherrystudio/ui/styles/theme.css';
|
||
```
|
||
|
||
- ✅ 使用标准 Tailwind 类名(`bg-primary`、`bg-red-500`)
|
||
- ✅ 所有颜色使用设计师定义的值
|
||
- ⚠️ 会覆盖 Tailwind 默认颜色
|
||
|
||
```tsx
|
||
<Button className="bg-primary text-red-500 p-md">
|
||
{/* bg-primary → CherryStudio 品牌色(lime-500) */}
|
||
{/* text-red-500 → 设计师定义的红色 */}
|
||
{/* p-md → 2.5rem(设计师定义) */}
|
||
</Button>
|
||
```
|
||
|
||
#### 方式 2:仅变量(推荐给 npm 用户)
|
||
|
||
```css
|
||
/* app.css */
|
||
@import 'tailwindcss';
|
||
@import '@cherrystudio/ui/styles/index.css';
|
||
```
|
||
|
||
- ✅ 不覆盖你的 Tailwind 主题
|
||
- ✅ 通过 CSS 变量使用(`var(--cs-primary)`)
|
||
- ✅ 你的 `bg-red-500` 不受影响
|
||
|
||
```tsx
|
||
<button style={{ backgroundColor: 'var(--cs-primary)' }}>
|
||
{/* 使用 CherryStudio 品牌色 */}
|
||
</button>
|
||
|
||
<div className="bg-red-500">
|
||
{/* 使用你自己的红色,不受影响 */}
|
||
</div>
|
||
```
|
||
|
||
#### 方式 3:选择性覆盖
|
||
|
||
```css
|
||
/* app.css */
|
||
@import 'tailwindcss';
|
||
@import '@cherrystudio/ui/styles/tokens.css';
|
||
|
||
/* 只使用部分设计系统 */
|
||
@theme {
|
||
--color-primary: var(--cs-primary); /* 用 CS 的主色 */
|
||
--color-red-500: oklch(...); /* 用自己的红色 */
|
||
}
|
||
```
|
||
|
||
### Provider 配置
|
||
|
||
在你的 App 根组件中添加 HeroUI Provider:
|
||
|
||
```tsx
|
||
import { HeroUIProvider } from '@heroui/react'
|
||
|
||
function App() {
|
||
return (
|
||
<HeroUIProvider>
|
||
{/* 你的应用内容 */}
|
||
</HeroUIProvider>
|
||
)
|
||
}
|
||
```
|
||
|
||
## 使用
|
||
|
||
### 基础组件
|
||
|
||
```tsx
|
||
import { Button, Input } from '@cherrystudio/ui'
|
||
|
||
function App() {
|
||
return (
|
||
<div>
|
||
<Button variant="primary" size="md">
|
||
点击我
|
||
</Button>
|
||
<Input
|
||
type="text"
|
||
placeholder="请输入内容"
|
||
onChange={(value) => console.log(value)}
|
||
/>
|
||
</div>
|
||
)
|
||
}
|
||
```
|
||
|
||
### 分模块导入
|
||
|
||
```tsx
|
||
// 只导入组件
|
||
import { Button } from '@cherrystudio/ui/components'
|
||
|
||
// 只导入 hooks
|
||
import { useDebounce, useLocalStorage } from '@cherrystudio/ui/hooks'
|
||
|
||
// 只导入工具函数
|
||
import { cn, formatFileSize } from '@cherrystudio/ui/utils'
|
||
```
|
||
|
||
## 开发
|
||
|
||
```bash
|
||
# 安装依赖
|
||
yarn install
|
||
|
||
# 开发模式(监听文件变化)
|
||
yarn dev
|
||
|
||
# 构建
|
||
yarn build
|
||
|
||
# 类型检查
|
||
yarn type-check
|
||
|
||
# 运行测试
|
||
yarn test
|
||
```
|
||
|
||
## 目录结构
|
||
|
||
```text
|
||
src/
|
||
├── components/ # React 组件
|
||
│ ├── Button/ # 按钮组件
|
||
│ ├── Input/ # 输入框组件
|
||
│ └── index.ts # 组件导出
|
||
├── hooks/ # React Hooks
|
||
├── utils/ # 工具函数
|
||
├── types/ # 类型定义
|
||
└── index.ts # 主入口文件
|
||
```
|
||
|
||
## 组件列表
|
||
|
||
### Button 按钮
|
||
|
||
支持多种变体和尺寸的按钮组件。
|
||
|
||
**Props:**
|
||
|
||
- `variant`: 'primary' | 'secondary' | 'outline' | 'ghost' | 'danger'
|
||
- `size`: 'sm' | 'md' | 'lg'
|
||
- `loading`: boolean
|
||
- `fullWidth`: boolean
|
||
- `leftIcon` / `rightIcon`: React.ReactNode
|
||
|
||
### Input 输入框
|
||
|
||
带有错误处理和密码显示切换的输入框组件。
|
||
|
||
**Props:**
|
||
|
||
- `type`: 'text' | 'password' | 'email' | 'number'
|
||
- `error`: boolean
|
||
- `errorMessage`: string
|
||
- `onChange`: (value: string) => void
|
||
|
||
## Hooks
|
||
|
||
### useDebounce
|
||
|
||
防抖处理,延迟执行状态更新。
|
||
|
||
### useLocalStorage
|
||
|
||
本地存储的 React Hook 封装。
|
||
|
||
### useClickOutside
|
||
|
||
检测点击元素外部区域。
|
||
|
||
### useCopyToClipboard
|
||
|
||
复制文本到剪贴板。
|
||
|
||
## 工具函数
|
||
|
||
### cn(...inputs)
|
||
|
||
基于 clsx 的类名合并工具,支持条件类名。
|
||
|
||
### formatFileSize(bytes)
|
||
|
||
格式化文件大小显示。
|
||
|
||
### debounce(func, delay)
|
||
|
||
防抖函数。
|
||
|
||
### throttle(func, delay)
|
||
|
||
节流函数。
|
||
|
||
## 许可证
|
||
|
||
MIT
|