feat(ui): 重构核心 UI 组件库,新增 shadcn/ui 组件

- 重构 Button、Card、Badge、Input、Textarea 等基础组件
- 新增 Accordion、Alert、Dialog、Dropdown、Form 等 shadcn/ui 组件
- 新增 AnimatedCounter、StatsShowcase、MetricCard 等数据展示组件
- 新增 ScrollReveal 滚动动画组件
- 重构 Toast 通知系统与 Tooltip 提示组件
- 更新设计令牌系统,对齐新品牌视觉
This commit is contained in:
张翔
2026-07-07 06:52:38 +08:00
parent 9053f69123
commit e78df62cd1
62 changed files with 4024 additions and 822 deletions
+13 -7
View File
@@ -21,8 +21,9 @@ describe('Loading Skeleton Components', () => {
it('should apply default styles', () => {
const { container } = render(<Skeleton />);
const skeleton = container.firstChild as HTMLElement;
expect(skeleton).toHaveClass('animate-pulse');
expect(skeleton).toHaveClass('bg-[var(--color-primary-lighter)]');
// loading-skeleton.tsx 使用 skeleton-brand 自定义类
expect(skeleton).toHaveClass('skeleton-brand');
expect(skeleton).toHaveClass('rounded-md');
});
it('should apply custom className', () => {
@@ -40,7 +41,8 @@ describe('Loading Skeleton Components', () => {
it('should have correct structure', () => {
const { container } = render(<CardSkeleton />);
const skeletonElements = container.querySelectorAll('.animate-pulse');
// CardSkeleton 包含 4 个子 Skeleton,使用 skeleton-brand 类
const skeletonElements = container.querySelectorAll('.skeleton-brand');
expect(skeletonElements.length).toBeGreaterThan(0);
});
});
@@ -106,8 +108,11 @@ describe('Loading Skeleton Components', () => {
it('should render multiple service card skeletons', () => {
const { container } = render(<SectionSkeleton />);
const cards = container.querySelectorAll('.bg-white');
expect(cards.length).toBe(4);
// SectionSkeleton 渲染 4 个 ServiceCardSkeleton
// ServiceCardSkeleton 容器使用 var(--color-bg-primary)
const cards = container.querySelectorAll('.skeleton-brand');
// 每个 ServiceCardSkeleton 包含 4 个 Skeleton4 个卡片共 16 个
expect(cards.length).toBeGreaterThanOrEqual(4);
});
});
@@ -132,12 +137,13 @@ describe('Loading Skeleton Components', () => {
it('should have pulse animation', () => {
const { container } = render(<Skeleton />);
const skeleton = container.firstChild as HTMLElement;
expect(skeleton).toHaveClass('animate-pulse');
// loading-skeleton.tsx 使用 skeleton-brand 自定义类(CSS 中包含动画)
expect(skeleton).toHaveClass('skeleton-brand');
});
it('should apply animation to all skeleton elements', () => {
const { container } = render(<CardSkeleton />);
const skeletons = container.querySelectorAll('.animate-pulse');
const skeletons = container.querySelectorAll('.skeleton-brand');
expect(skeletons.length).toBeGreaterThan(0);
});
});