InstructionsForAI
generate-react-component-storybook.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
# Generate React Component with Storybook Stories Create a production-ready React component with comprehensive documentation and testing. ## Requirements ### 1. Component Implementation **File Structure:**```components/ ui/ component-name.tsx → Component implementation component-name.stories.tsx → Storybook stories component-name.test.tsx → Unit tests``` **Component Features:**- TypeScript with strict types- Multiple variants using class-variance-authority (cva)- Responsive design with Tailwind CSS- Accessibility (ARIA attributes, keyboard navigation)- Composable API- Forwarded refs- Default props **Example component structure:**```typescriptimport * as React from "react";import { cva, type VariantProps } from "class-variance-authority";import { cn } from "@/lib/utils"; const componentVariants = cva( "base-classes", { variants: { variant: { default: "default-classes", secondary: "secondary-classes", }, size: { sm: "sm-classes", md: "md-classes", lg: "lg-classes", }, }, defaultVariants: { variant: "default", size: "md", }, }); export interface ComponentProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof componentVariants> { // Additional props} export const Component = React.forwardRef<HTMLDivElement, ComponentProps>( ({ variant, size, className, ...props }, ref) => { return ( <div ref={ref} className={cn(componentVariants({ variant, size }), className)} {...props} /> ); }); Component.displayName = "Component";``` ### 2. Accessibility Requirements - Semantic HTML elements- ARIA labels and descriptions- Keyboard navigation support- Focus management- Screen reader friendly- Color contrast compliance (WCAG AA)- Touch target sizes (minimum 44x44px) ### 3. Storybook Stories **Create stories for:**- Default state- All variants- All sizes- Different states (loading, disabled, error)- Interactive examples- Edge cases- Responsive behavior **Story structure:**```typescriptimport type { Meta, StoryObj } from "@storybook/react";import { Component } from "./component-name"; const meta = { title: "UI/Component", component: Component, parameters: { layout: "centered", }, tags: ["autodocs"], argTypes: { // Control types },} satisfies Meta<typeof Component>; export default meta;type Story = StoryObj<typeof meta>; export const Default: Story = { args: { // Default props },}; export const Variant: Story = { args: { variant: "secondary", },};``` ### 4. Unit Tests **Test coverage:**- Rendering tests- Prop validation- User interactions- Accessibility tests- Edge cases- Error states **Testing framework:**```typescriptimport { render, screen } from "@testing-library/react";import userEvent from "@testing-library/user-event";import { Component } from "./component-name"; describe("Component", () => { it("renders correctly", () => { render(<Component />); expect(screen.getByRole("...")).toBeInTheDocument(); });  it("handles clicks", async () => { const handleClick = jest.fn(); render(<Component onClick={handleClick} />);  await userEvent.click(screen.getByRole("button")); expect(handleClick).toHaveBeenCalledTimes(1); });  it("is accessible", () => { const { container } = render(<Component />); // Test accessibility });});``` ### 5. Documentation **Include:**- Component description- Props table with descriptions- Usage examples- Accessibility notes- Best practices- Common patterns ## Example Request ```Component: DataTableDescription: A sortable, filterable data table with paginationFeatures:- Column sorting (ascending/descending)- Column filtering- Pagination- Row selection- Custom cell renderers- Loading states- Empty states- Responsive (stacks on mobile)Props: data, columns, onSort, onFilter, pageSize, currentPageAccessibility: Full keyboard navigation, ARIA table roles``` ## Deliverables 1. **Component file** with full implementation2. **Storybook stories** with all variants and states3. **Test file** with comprehensive test coverage4. **Usage documentation** with examples ## Style Guidelines - Use Tailwind CSS for styling- Follow shadcn/ui patterns- Use `cn()` utility for class merging- Implement dark mode support- Keep components composable- Use consistent spacing and sizing- Follow naming conventions Generate production-ready code that follows React and TypeScript best practices.
MarkdownMarkdown