@mandujs/mcp 0.13.0 → 0.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -7
- package/package.json +3 -2
- package/src/adapters/index.ts +20 -20
- package/src/adapters/monitor-adapter.ts +100 -100
- package/src/adapters/tool-adapter.ts +88 -88
- package/src/executor/error-handler.ts +250 -250
- package/src/executor/index.ts +22 -22
- package/src/executor/tool-executor.ts +148 -148
- package/src/hooks/config-watcher.ts +174 -174
- package/src/hooks/index.ts +23 -23
- package/src/hooks/mcp-hooks.ts +227 -227
- package/src/logging/index.ts +15 -15
- package/src/logging/mcp-transport.ts +134 -134
- package/src/registry/index.ts +13 -13
- package/src/registry/mcp-tool-registry.ts +298 -298
- package/src/resources/skills/guides.ts +1136 -1136
- package/src/resources/skills/index.ts +12 -12
- package/src/resources/skills/loader.ts +218 -218
- package/src/resources/skills/mandu-composition/SKILL.md +91 -91
- package/src/resources/skills/mandu-composition/metadata.json +13 -13
- package/src/resources/skills/mandu-composition/rules/_sections.md +26 -26
- package/src/resources/skills/mandu-composition/rules/_template.md +77 -77
- package/src/resources/skills/mandu-composition/rules/comp-arch-avoid-boolean-props.md +146 -146
- package/src/resources/skills/mandu-composition/rules/comp-arch-compound-components.md +164 -164
- package/src/resources/skills/mandu-composition/rules/comp-island-event.md +161 -161
- package/src/resources/skills/mandu-composition/rules/comp-island-slot-split.md +167 -167
- package/src/resources/skills/mandu-composition/rules/comp-pattern-children.md +149 -149
- package/src/resources/skills/mandu-composition/rules/comp-state-context-interface.md +148 -148
- package/src/resources/skills/mandu-composition/rules/comp-state-lift-state.md +150 -150
- package/src/resources/skills/mandu-deployment/SKILL.md +92 -92
- package/src/resources/skills/mandu-deployment/_sections.md +41 -41
- package/src/resources/skills/mandu-deployment/_template.md +38 -38
- package/src/resources/skills/mandu-deployment/metadata.json +13 -13
- package/src/resources/skills/mandu-deployment/rules/deploy-build-bun.md +109 -109
- package/src/resources/skills/mandu-deployment/rules/deploy-build-output.md +115 -115
- package/src/resources/skills/mandu-deployment/rules/deploy-cicd-github.md +219 -219
- package/src/resources/skills/mandu-deployment/rules/deploy-docker-bun.md +150 -150
- package/src/resources/skills/mandu-deployment/rules/deploy-docker-compose.md +223 -223
- package/src/resources/skills/mandu-deployment/rules/deploy-platform-fly.md +152 -152
- package/src/resources/skills/mandu-deployment/rules/deploy-platform-render.md +179 -179
- package/src/resources/skills/mandu-deployment/rules/deploy-platform-supabase.md +323 -323
- package/src/resources/skills/mandu-deployment/rules/deploy-platform-vercel.md +140 -140
- package/src/resources/skills/mandu-fs-routes/SKILL.md +82 -82
- package/src/resources/skills/mandu-fs-routes/metadata.json +12 -12
- package/src/resources/skills/mandu-fs-routes/rules/_sections.md +36 -36
- package/src/resources/skills/mandu-fs-routes/rules/_template.md +69 -69
- package/src/resources/skills/mandu-fs-routes/rules/routes-api-methods.md +65 -65
- package/src/resources/skills/mandu-fs-routes/rules/routes-dynamic-param.md +93 -93
- package/src/resources/skills/mandu-fs-routes/rules/routes-naming-page.md +55 -55
- package/src/resources/skills/mandu-guard/SKILL.md +129 -129
- package/src/resources/skills/mandu-guard/metadata.json +12 -12
- package/src/resources/skills/mandu-guard/rules/_sections.md +36 -36
- package/src/resources/skills/mandu-guard/rules/_template.md +82 -82
- package/src/resources/skills/mandu-guard/rules/guard-config-rules.md +100 -100
- package/src/resources/skills/mandu-guard/rules/guard-layer-direction.md +76 -76
- package/src/resources/skills/mandu-guard/rules/guard-preset-mandu.md +81 -81
- package/src/resources/skills/mandu-guard/rules/guard-validate-import.md +80 -80
- package/src/resources/skills/mandu-hydration/SKILL.md +91 -91
- package/src/resources/skills/mandu-hydration/metadata.json +12 -12
- package/src/resources/skills/mandu-hydration/rules/_sections.md +31 -31
- package/src/resources/skills/mandu-hydration/rules/_template.md +72 -72
- package/src/resources/skills/mandu-hydration/rules/hydration-data-event.md +109 -109
- package/src/resources/skills/mandu-hydration/rules/hydration-directive-use-client.md +55 -55
- package/src/resources/skills/mandu-hydration/rules/hydration-island-setup.md +113 -113
- package/src/resources/skills/mandu-hydration/rules/hydration-priority-visible.md +68 -68
- package/src/resources/skills/mandu-performance/SKILL.md +85 -85
- package/src/resources/skills/mandu-performance/metadata.json +14 -14
- package/src/resources/skills/mandu-performance/rules/_sections.md +31 -31
- package/src/resources/skills/mandu-performance/rules/_template.md +64 -64
- package/src/resources/skills/mandu-performance/rules/perf-async-defer-await.md +103 -103
- package/src/resources/skills/mandu-performance/rules/perf-async-parallel.md +95 -95
- package/src/resources/skills/mandu-performance/rules/perf-bun-file.md +124 -124
- package/src/resources/skills/mandu-performance/rules/perf-bun-serve.md +125 -125
- package/src/resources/skills/mandu-performance/rules/perf-bundle-imports.md +80 -80
- package/src/resources/skills/mandu-performance/rules/perf-bundle-island-lazy.md +145 -145
- package/src/resources/skills/mandu-performance/rules/perf-cache-react.md +98 -98
- package/src/resources/skills/mandu-performance/rules/perf-render-transitions.md +154 -154
- package/src/resources/skills/mandu-security/SKILL.md +87 -87
- package/src/resources/skills/mandu-security/metadata.json +13 -13
- package/src/resources/skills/mandu-security/rules/_sections.md +31 -31
- package/src/resources/skills/mandu-security/rules/_template.md +74 -74
- package/src/resources/skills/mandu-security/rules/sec-auth-guard.md +127 -127
- package/src/resources/skills/mandu-security/rules/sec-env-management.md +133 -133
- package/src/resources/skills/mandu-security/rules/sec-input-validate.md +148 -148
- package/src/resources/skills/mandu-security/rules/sec-protect-csrf.md +146 -146
- package/src/resources/skills/mandu-security/rules/sec-protect-headers.md +138 -138
- package/src/resources/skills/mandu-slot/SKILL.md +85 -85
- package/src/resources/skills/mandu-slot/metadata.json +12 -12
- package/src/resources/skills/mandu-slot/rules/_sections.md +36 -36
- package/src/resources/skills/mandu-slot/rules/_template.md +63 -63
- package/src/resources/skills/mandu-slot/rules/slot-basic-structure.md +38 -38
- package/src/resources/skills/mandu-slot/rules/slot-ctx-response.md +56 -56
- package/src/resources/skills/mandu-slot/rules/slot-guard-auth.md +59 -59
- package/src/resources/skills/mandu-slot/rules/slot-http-methods.md +64 -64
- package/src/resources/skills/mandu-styling/SKILL.md +154 -154
- package/src/resources/skills/mandu-styling/_sections.md +43 -43
- package/src/resources/skills/mandu-styling/_template.md +32 -32
- package/src/resources/skills/mandu-styling/metadata.json +15 -15
- package/src/resources/skills/mandu-styling/rules/style-component-compound.md +235 -235
- package/src/resources/skills/mandu-styling/rules/style-component-slots.md +255 -255
- package/src/resources/skills/mandu-styling/rules/style-component-tokens.md +205 -205
- package/src/resources/skills/mandu-styling/rules/style-island-animations.md +272 -272
- package/src/resources/skills/mandu-styling/rules/style-island-scoping.md +167 -167
- package/src/resources/skills/mandu-styling/rules/style-island-variants.md +221 -221
- package/src/resources/skills/mandu-styling/rules/style-perf-critical.md +209 -209
- package/src/resources/skills/mandu-styling/rules/style-perf-purge.md +192 -192
- package/src/resources/skills/mandu-styling/rules/style-setup-modules.md +162 -162
- package/src/resources/skills/mandu-styling/rules/style-setup-panda.md +164 -164
- package/src/resources/skills/mandu-styling/rules/style-setup-tailwind.md +170 -170
- package/src/resources/skills/mandu-styling/rules/style-tailwind-v4-gotchas.md +179 -179
- package/src/resources/skills/mandu-styling/rules/style-theme-darkmode.md +229 -229
- package/src/resources/skills/mandu-testing/SKILL.md +99 -99
- package/src/resources/skills/mandu-testing/metadata.json +13 -13
- package/src/resources/skills/mandu-testing/rules/_sections.md +26 -26
- package/src/resources/skills/mandu-testing/rules/_template.md +65 -65
- package/src/resources/skills/mandu-testing/rules/test-component-island.md +195 -195
- package/src/resources/skills/mandu-testing/rules/test-e2e-playwright.md +196 -196
- package/src/resources/skills/mandu-testing/rules/test-mock-fetch.md +219 -219
- package/src/resources/skills/mandu-testing/rules/test-slot-unit.md +192 -192
- package/src/resources/skills/mandu-ui/SKILL.md +117 -117
- package/src/resources/skills/mandu-ui/_sections.md +23 -23
- package/src/resources/skills/mandu-ui/_template.md +32 -32
- package/src/resources/skills/mandu-ui/metadata.json +13 -13
- package/src/resources/skills/mandu-ui/rules/ui-accessibility-aria.md +232 -232
- package/src/resources/skills/mandu-ui/rules/ui-accessibility-focus.md +238 -238
- package/src/resources/skills/mandu-ui/rules/ui-composition-patterns.md +259 -259
- package/src/resources/skills/mandu-ui/rules/ui-island-integration.md +258 -258
- package/src/resources/skills/mandu-ui/rules/ui-radix-patterns.md +213 -213
- package/src/resources/skills/mandu-ui/rules/ui-shadcn-setup.md +209 -209
- package/src/resources/skills/recipes.ts +932 -932
- package/src/tools/ate.ts +129 -0
- package/src/tools/index.ts +4 -1
- package/src/tools/project.ts +334 -334
- package/src/tools/runtime.ts +497 -497
- package/src/tools/seo.ts +417 -417
- package/src/utils/withWarnings.ts +83 -83
|
@@ -1,255 +1,255 @@
|
|
|
1
|
-
---
|
|
2
|
-
title: Slot-based Style Customization
|
|
3
|
-
impact: HIGH
|
|
4
|
-
impactDescription: Flexible style overrides for reusable components
|
|
5
|
-
tags: styling, slots, customization, override
|
|
6
|
-
---
|
|
7
|
-
|
|
8
|
-
## Slot-based Style Customization
|
|
9
|
-
|
|
10
|
-
**Impact: HIGH (Flexible style overrides for reusable components)**
|
|
11
|
-
|
|
12
|
-
컴포넌트의 특정 부분만 스타일을 오버라이드할 수 있는 slot 패턴입니다.
|
|
13
|
-
|
|
14
|
-
## classNames prop 패턴
|
|
15
|
-
|
|
16
|
-
```tsx
|
|
17
|
-
// app/input/client.tsx
|
|
18
|
-
"use client";
|
|
19
|
-
|
|
20
|
-
import { cn } from "@/lib/utils";
|
|
21
|
-
|
|
22
|
-
interface InputClassNames {
|
|
23
|
-
root?: string;
|
|
24
|
-
label?: string;
|
|
25
|
-
input?: string;
|
|
26
|
-
helper?: string;
|
|
27
|
-
error?: string;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {
|
|
31
|
-
label?: string;
|
|
32
|
-
helper?: string;
|
|
33
|
-
error?: string;
|
|
34
|
-
classNames?: InputClassNames;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
export function InputIsland({
|
|
38
|
-
label,
|
|
39
|
-
helper,
|
|
40
|
-
error,
|
|
41
|
-
classNames,
|
|
42
|
-
className,
|
|
43
|
-
...props
|
|
44
|
-
}: InputProps) {
|
|
45
|
-
return (
|
|
46
|
-
<div className={cn("space-y-2", classNames?.root)}>
|
|
47
|
-
{label && (
|
|
48
|
-
<label
|
|
49
|
-
className={cn(
|
|
50
|
-
"text-sm font-medium leading-none",
|
|
51
|
-
classNames?.label
|
|
52
|
-
)}
|
|
53
|
-
>
|
|
54
|
-
{label}
|
|
55
|
-
</label>
|
|
56
|
-
)}
|
|
57
|
-
|
|
58
|
-
<input
|
|
59
|
-
className={cn(
|
|
60
|
-
"flex h-10 w-full rounded-md border border-input bg-background px-3 py-2 text-sm",
|
|
61
|
-
"focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring",
|
|
62
|
-
error && "border-destructive focus-visible:ring-destructive",
|
|
63
|
-
classNames?.input,
|
|
64
|
-
className
|
|
65
|
-
)}
|
|
66
|
-
{...props}
|
|
67
|
-
/>
|
|
68
|
-
|
|
69
|
-
{helper && !error && (
|
|
70
|
-
<p className={cn("text-sm text-muted-foreground", classNames?.helper)}>
|
|
71
|
-
{helper}
|
|
72
|
-
</p>
|
|
73
|
-
)}
|
|
74
|
-
|
|
75
|
-
{error && (
|
|
76
|
-
<p className={cn("text-sm text-destructive", classNames?.error)}>
|
|
77
|
-
{error}
|
|
78
|
-
</p>
|
|
79
|
-
)}
|
|
80
|
-
</div>
|
|
81
|
-
);
|
|
82
|
-
}
|
|
83
|
-
```
|
|
84
|
-
|
|
85
|
-
## 사용 예시
|
|
86
|
-
|
|
87
|
-
```tsx
|
|
88
|
-
<InputIsland
|
|
89
|
-
label="Email"
|
|
90
|
-
placeholder="you@example.com"
|
|
91
|
-
classNames={{
|
|
92
|
-
root: "max-w-md",
|
|
93
|
-
label: "text-blue-600",
|
|
94
|
-
input: "border-2",
|
|
95
|
-
helper: "italic",
|
|
96
|
-
}}
|
|
97
|
-
/>
|
|
98
|
-
```
|
|
99
|
-
|
|
100
|
-
## styles prop 패턴
|
|
101
|
-
|
|
102
|
-
```tsx
|
|
103
|
-
// app/card/client.tsx
|
|
104
|
-
"use client";
|
|
105
|
-
|
|
106
|
-
interface CardStyles {
|
|
107
|
-
root?: React.CSSProperties;
|
|
108
|
-
header?: React.CSSProperties;
|
|
109
|
-
content?: React.CSSProperties;
|
|
110
|
-
footer?: React.CSSProperties;
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
interface CardProps {
|
|
114
|
-
styles?: CardStyles;
|
|
115
|
-
// ...
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
export function CardIsland({ styles, children }: CardProps) {
|
|
119
|
-
return (
|
|
120
|
-
<div className="rounded-lg border" style={styles?.root}>
|
|
121
|
-
{children}
|
|
122
|
-
</div>
|
|
123
|
-
);
|
|
124
|
-
}
|
|
125
|
-
```
|
|
126
|
-
|
|
127
|
-
## slotProps 패턴 (고급)
|
|
128
|
-
|
|
129
|
-
```tsx
|
|
130
|
-
// app/modal/client.tsx
|
|
131
|
-
"use client";
|
|
132
|
-
|
|
133
|
-
interface SlotProps<T extends React.ElementType = "div"> {
|
|
134
|
-
component?: T;
|
|
135
|
-
className?: string;
|
|
136
|
-
style?: React.CSSProperties;
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
interface ModalSlotProps {
|
|
140
|
-
root?: SlotProps;
|
|
141
|
-
overlay?: SlotProps;
|
|
142
|
-
content?: SlotProps<"div" | "form">;
|
|
143
|
-
header?: SlotProps;
|
|
144
|
-
body?: SlotProps;
|
|
145
|
-
footer?: SlotProps;
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
interface ModalProps {
|
|
149
|
-
open: boolean;
|
|
150
|
-
onClose: () => void;
|
|
151
|
-
slotProps?: ModalSlotProps;
|
|
152
|
-
children: React.ReactNode;
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
export function ModalIsland({ open, onClose, slotProps, children }: ModalProps) {
|
|
156
|
-
if (!open) return null;
|
|
157
|
-
|
|
158
|
-
const OverlayComponent = slotProps?.overlay?.component || "div";
|
|
159
|
-
const ContentComponent = slotProps?.content?.component || "div";
|
|
160
|
-
|
|
161
|
-
return (
|
|
162
|
-
<div
|
|
163
|
-
className={cn("fixed inset-0 z-50", slotProps?.root?.className)}
|
|
164
|
-
style={slotProps?.root?.style}
|
|
165
|
-
>
|
|
166
|
-
<OverlayComponent
|
|
167
|
-
className={cn(
|
|
168
|
-
"fixed inset-0 bg-black/50",
|
|
169
|
-
slotProps?.overlay?.className
|
|
170
|
-
)}
|
|
171
|
-
style={slotProps?.overlay?.style}
|
|
172
|
-
onClick={onClose}
|
|
173
|
-
/>
|
|
174
|
-
|
|
175
|
-
<ContentComponent
|
|
176
|
-
className={cn(
|
|
177
|
-
"fixed left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2",
|
|
178
|
-
"w-full max-w-lg rounded-lg bg-background p-6 shadow-lg",
|
|
179
|
-
slotProps?.content?.className
|
|
180
|
-
)}
|
|
181
|
-
style={slotProps?.content?.style}
|
|
182
|
-
>
|
|
183
|
-
{children}
|
|
184
|
-
</ContentComponent>
|
|
185
|
-
</div>
|
|
186
|
-
);
|
|
187
|
-
}
|
|
188
|
-
```
|
|
189
|
-
|
|
190
|
-
## 사용 예시 (고급)
|
|
191
|
-
|
|
192
|
-
```tsx
|
|
193
|
-
<ModalIsland
|
|
194
|
-
open={isOpen}
|
|
195
|
-
onClose={() => setIsOpen(false)}
|
|
196
|
-
slotProps={{
|
|
197
|
-
overlay: {
|
|
198
|
-
className: "backdrop-blur-sm",
|
|
199
|
-
},
|
|
200
|
-
content: {
|
|
201
|
-
component: "form",
|
|
202
|
-
className: "max-w-2xl",
|
|
203
|
-
style: { maxHeight: "80vh" },
|
|
204
|
-
},
|
|
205
|
-
}}
|
|
206
|
-
>
|
|
207
|
-
<form onSubmit={handleSubmit}>...</form>
|
|
208
|
-
</ModalIsland>
|
|
209
|
-
```
|
|
210
|
-
|
|
211
|
-
## Tailwind merge로 안전한 오버라이드
|
|
212
|
-
|
|
213
|
-
```tsx
|
|
214
|
-
// cn 함수가 충돌을 해결
|
|
215
|
-
<button
|
|
216
|
-
className={cn(
|
|
217
|
-
"px-4 py-2 bg-blue-500", // 기본
|
|
218
|
-
className // 오버라이드: "px-6" → px-6 적용
|
|
219
|
-
)}
|
|
220
|
-
/>
|
|
221
|
-
```
|
|
222
|
-
|
|
223
|
-
## 우선순위 명확화
|
|
224
|
-
|
|
225
|
-
```tsx
|
|
226
|
-
// 1. 기본 스타일 (lowest)
|
|
227
|
-
// 2. variant 스타일
|
|
228
|
-
// 3. classNames prop
|
|
229
|
-
// 4. className prop (highest)
|
|
230
|
-
|
|
231
|
-
export function Button({
|
|
232
|
-
variant,
|
|
233
|
-
classNames,
|
|
234
|
-
className,
|
|
235
|
-
...props
|
|
236
|
-
}) {
|
|
237
|
-
return (
|
|
238
|
-
<button
|
|
239
|
-
className={cn(
|
|
240
|
-
// 1. Base
|
|
241
|
-
"inline-flex items-center",
|
|
242
|
-
// 2. Variant
|
|
243
|
-
buttonVariants({ variant }),
|
|
244
|
-
// 3. classNames slot
|
|
245
|
-
classNames?.button,
|
|
246
|
-
// 4. className (최우선)
|
|
247
|
-
className
|
|
248
|
-
)}
|
|
249
|
-
{...props}
|
|
250
|
-
/>
|
|
251
|
-
);
|
|
252
|
-
}
|
|
253
|
-
```
|
|
254
|
-
|
|
255
|
-
Reference: [Material UI sx prop](https://mui.com/system/getting-started/the-sx-prop/)
|
|
1
|
+
---
|
|
2
|
+
title: Slot-based Style Customization
|
|
3
|
+
impact: HIGH
|
|
4
|
+
impactDescription: Flexible style overrides for reusable components
|
|
5
|
+
tags: styling, slots, customization, override
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
## Slot-based Style Customization
|
|
9
|
+
|
|
10
|
+
**Impact: HIGH (Flexible style overrides for reusable components)**
|
|
11
|
+
|
|
12
|
+
컴포넌트의 특정 부분만 스타일을 오버라이드할 수 있는 slot 패턴입니다.
|
|
13
|
+
|
|
14
|
+
## classNames prop 패턴
|
|
15
|
+
|
|
16
|
+
```tsx
|
|
17
|
+
// app/input/client.tsx
|
|
18
|
+
"use client";
|
|
19
|
+
|
|
20
|
+
import { cn } from "@/lib/utils";
|
|
21
|
+
|
|
22
|
+
interface InputClassNames {
|
|
23
|
+
root?: string;
|
|
24
|
+
label?: string;
|
|
25
|
+
input?: string;
|
|
26
|
+
helper?: string;
|
|
27
|
+
error?: string;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {
|
|
31
|
+
label?: string;
|
|
32
|
+
helper?: string;
|
|
33
|
+
error?: string;
|
|
34
|
+
classNames?: InputClassNames;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export function InputIsland({
|
|
38
|
+
label,
|
|
39
|
+
helper,
|
|
40
|
+
error,
|
|
41
|
+
classNames,
|
|
42
|
+
className,
|
|
43
|
+
...props
|
|
44
|
+
}: InputProps) {
|
|
45
|
+
return (
|
|
46
|
+
<div className={cn("space-y-2", classNames?.root)}>
|
|
47
|
+
{label && (
|
|
48
|
+
<label
|
|
49
|
+
className={cn(
|
|
50
|
+
"text-sm font-medium leading-none",
|
|
51
|
+
classNames?.label
|
|
52
|
+
)}
|
|
53
|
+
>
|
|
54
|
+
{label}
|
|
55
|
+
</label>
|
|
56
|
+
)}
|
|
57
|
+
|
|
58
|
+
<input
|
|
59
|
+
className={cn(
|
|
60
|
+
"flex h-10 w-full rounded-md border border-input bg-background px-3 py-2 text-sm",
|
|
61
|
+
"focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring",
|
|
62
|
+
error && "border-destructive focus-visible:ring-destructive",
|
|
63
|
+
classNames?.input,
|
|
64
|
+
className
|
|
65
|
+
)}
|
|
66
|
+
{...props}
|
|
67
|
+
/>
|
|
68
|
+
|
|
69
|
+
{helper && !error && (
|
|
70
|
+
<p className={cn("text-sm text-muted-foreground", classNames?.helper)}>
|
|
71
|
+
{helper}
|
|
72
|
+
</p>
|
|
73
|
+
)}
|
|
74
|
+
|
|
75
|
+
{error && (
|
|
76
|
+
<p className={cn("text-sm text-destructive", classNames?.error)}>
|
|
77
|
+
{error}
|
|
78
|
+
</p>
|
|
79
|
+
)}
|
|
80
|
+
</div>
|
|
81
|
+
);
|
|
82
|
+
}
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
## 사용 예시
|
|
86
|
+
|
|
87
|
+
```tsx
|
|
88
|
+
<InputIsland
|
|
89
|
+
label="Email"
|
|
90
|
+
placeholder="you@example.com"
|
|
91
|
+
classNames={{
|
|
92
|
+
root: "max-w-md",
|
|
93
|
+
label: "text-blue-600",
|
|
94
|
+
input: "border-2",
|
|
95
|
+
helper: "italic",
|
|
96
|
+
}}
|
|
97
|
+
/>
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
## styles prop 패턴
|
|
101
|
+
|
|
102
|
+
```tsx
|
|
103
|
+
// app/card/client.tsx
|
|
104
|
+
"use client";
|
|
105
|
+
|
|
106
|
+
interface CardStyles {
|
|
107
|
+
root?: React.CSSProperties;
|
|
108
|
+
header?: React.CSSProperties;
|
|
109
|
+
content?: React.CSSProperties;
|
|
110
|
+
footer?: React.CSSProperties;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
interface CardProps {
|
|
114
|
+
styles?: CardStyles;
|
|
115
|
+
// ...
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
export function CardIsland({ styles, children }: CardProps) {
|
|
119
|
+
return (
|
|
120
|
+
<div className="rounded-lg border" style={styles?.root}>
|
|
121
|
+
{children}
|
|
122
|
+
</div>
|
|
123
|
+
);
|
|
124
|
+
}
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
## slotProps 패턴 (고급)
|
|
128
|
+
|
|
129
|
+
```tsx
|
|
130
|
+
// app/modal/client.tsx
|
|
131
|
+
"use client";
|
|
132
|
+
|
|
133
|
+
interface SlotProps<T extends React.ElementType = "div"> {
|
|
134
|
+
component?: T;
|
|
135
|
+
className?: string;
|
|
136
|
+
style?: React.CSSProperties;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
interface ModalSlotProps {
|
|
140
|
+
root?: SlotProps;
|
|
141
|
+
overlay?: SlotProps;
|
|
142
|
+
content?: SlotProps<"div" | "form">;
|
|
143
|
+
header?: SlotProps;
|
|
144
|
+
body?: SlotProps;
|
|
145
|
+
footer?: SlotProps;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
interface ModalProps {
|
|
149
|
+
open: boolean;
|
|
150
|
+
onClose: () => void;
|
|
151
|
+
slotProps?: ModalSlotProps;
|
|
152
|
+
children: React.ReactNode;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
export function ModalIsland({ open, onClose, slotProps, children }: ModalProps) {
|
|
156
|
+
if (!open) return null;
|
|
157
|
+
|
|
158
|
+
const OverlayComponent = slotProps?.overlay?.component || "div";
|
|
159
|
+
const ContentComponent = slotProps?.content?.component || "div";
|
|
160
|
+
|
|
161
|
+
return (
|
|
162
|
+
<div
|
|
163
|
+
className={cn("fixed inset-0 z-50", slotProps?.root?.className)}
|
|
164
|
+
style={slotProps?.root?.style}
|
|
165
|
+
>
|
|
166
|
+
<OverlayComponent
|
|
167
|
+
className={cn(
|
|
168
|
+
"fixed inset-0 bg-black/50",
|
|
169
|
+
slotProps?.overlay?.className
|
|
170
|
+
)}
|
|
171
|
+
style={slotProps?.overlay?.style}
|
|
172
|
+
onClick={onClose}
|
|
173
|
+
/>
|
|
174
|
+
|
|
175
|
+
<ContentComponent
|
|
176
|
+
className={cn(
|
|
177
|
+
"fixed left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2",
|
|
178
|
+
"w-full max-w-lg rounded-lg bg-background p-6 shadow-lg",
|
|
179
|
+
slotProps?.content?.className
|
|
180
|
+
)}
|
|
181
|
+
style={slotProps?.content?.style}
|
|
182
|
+
>
|
|
183
|
+
{children}
|
|
184
|
+
</ContentComponent>
|
|
185
|
+
</div>
|
|
186
|
+
);
|
|
187
|
+
}
|
|
188
|
+
```
|
|
189
|
+
|
|
190
|
+
## 사용 예시 (고급)
|
|
191
|
+
|
|
192
|
+
```tsx
|
|
193
|
+
<ModalIsland
|
|
194
|
+
open={isOpen}
|
|
195
|
+
onClose={() => setIsOpen(false)}
|
|
196
|
+
slotProps={{
|
|
197
|
+
overlay: {
|
|
198
|
+
className: "backdrop-blur-sm",
|
|
199
|
+
},
|
|
200
|
+
content: {
|
|
201
|
+
component: "form",
|
|
202
|
+
className: "max-w-2xl",
|
|
203
|
+
style: { maxHeight: "80vh" },
|
|
204
|
+
},
|
|
205
|
+
}}
|
|
206
|
+
>
|
|
207
|
+
<form onSubmit={handleSubmit}>...</form>
|
|
208
|
+
</ModalIsland>
|
|
209
|
+
```
|
|
210
|
+
|
|
211
|
+
## Tailwind merge로 안전한 오버라이드
|
|
212
|
+
|
|
213
|
+
```tsx
|
|
214
|
+
// cn 함수가 충돌을 해결
|
|
215
|
+
<button
|
|
216
|
+
className={cn(
|
|
217
|
+
"px-4 py-2 bg-blue-500", // 기본
|
|
218
|
+
className // 오버라이드: "px-6" → px-6 적용
|
|
219
|
+
)}
|
|
220
|
+
/>
|
|
221
|
+
```
|
|
222
|
+
|
|
223
|
+
## 우선순위 명확화
|
|
224
|
+
|
|
225
|
+
```tsx
|
|
226
|
+
// 1. 기본 스타일 (lowest)
|
|
227
|
+
// 2. variant 스타일
|
|
228
|
+
// 3. classNames prop
|
|
229
|
+
// 4. className prop (highest)
|
|
230
|
+
|
|
231
|
+
export function Button({
|
|
232
|
+
variant,
|
|
233
|
+
classNames,
|
|
234
|
+
className,
|
|
235
|
+
...props
|
|
236
|
+
}) {
|
|
237
|
+
return (
|
|
238
|
+
<button
|
|
239
|
+
className={cn(
|
|
240
|
+
// 1. Base
|
|
241
|
+
"inline-flex items-center",
|
|
242
|
+
// 2. Variant
|
|
243
|
+
buttonVariants({ variant }),
|
|
244
|
+
// 3. classNames slot
|
|
245
|
+
classNames?.button,
|
|
246
|
+
// 4. className (최우선)
|
|
247
|
+
className
|
|
248
|
+
)}
|
|
249
|
+
{...props}
|
|
250
|
+
/>
|
|
251
|
+
);
|
|
252
|
+
}
|
|
253
|
+
```
|
|
254
|
+
|
|
255
|
+
Reference: [Material UI sx prop](https://mui.com/system/getting-started/the-sx-prop/)
|