@ceed/ads 1.29.1 → 1.30.0-next.1
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/dist/components/CurrencyInput/CurrencyInput.d.ts +1 -1
- package/dist/components/CurrencyInput/hooks/use-currency-setting.d.ts +2 -2
- package/dist/components/ProfileMenu/ProfileMenu.d.ts +1 -1
- package/dist/components/SearchBar/SearchBar.d.ts +21 -0
- package/dist/components/SearchBar/index.d.ts +3 -0
- package/dist/components/data-display/Badge.md +39 -71
- package/dist/components/data-display/DataTable.md +1 -1
- package/dist/components/data-display/InfoSign.md +98 -74
- package/dist/components/data-display/Typography.md +97 -363
- package/dist/components/feedback/Dialog.md +62 -76
- package/dist/components/feedback/Modal.md +44 -259
- package/dist/components/feedback/llms.txt +0 -2
- package/dist/components/index.d.ts +2 -0
- package/dist/components/inputs/Autocomplete.md +107 -356
- package/dist/components/inputs/ButtonGroup.md +106 -115
- package/dist/components/inputs/Calendar.md +459 -98
- package/dist/components/inputs/CurrencyInput.md +5 -183
- package/dist/components/inputs/DatePicker.md +431 -108
- package/dist/components/inputs/DateRangePicker.md +492 -131
- package/dist/components/inputs/FilterMenu.md +19 -169
- package/dist/components/inputs/FilterableCheckboxGroup.md +23 -123
- package/dist/components/inputs/IconButton.md +88 -137
- package/dist/components/inputs/Input.md +0 -5
- package/dist/components/inputs/MonthPicker.md +422 -95
- package/dist/components/inputs/MonthRangePicker.md +466 -89
- package/dist/components/inputs/PercentageInput.md +16 -185
- package/dist/components/inputs/RadioButton.md +35 -163
- package/dist/components/inputs/RadioTileGroup.md +61 -150
- package/dist/components/inputs/SearchBar.md +44 -0
- package/dist/components/inputs/Select.md +326 -222
- package/dist/components/inputs/Switch.md +376 -136
- package/dist/components/inputs/Textarea.md +10 -213
- package/dist/components/inputs/Uploader/Uploader.md +66 -145
- package/dist/components/inputs/llms.txt +1 -3
- package/dist/components/navigation/Breadcrumbs.md +322 -80
- package/dist/components/navigation/Dropdown.md +221 -92
- package/dist/components/navigation/IconMenuButton.md +502 -40
- package/dist/components/navigation/InsetDrawer.md +738 -68
- package/dist/components/navigation/Link.md +298 -39
- package/dist/components/navigation/Menu.md +285 -92
- package/dist/components/navigation/MenuButton.md +448 -55
- package/dist/components/navigation/Pagination.md +338 -47
- package/dist/components/navigation/ProfileMenu.md +268 -45
- package/dist/components/navigation/Stepper.md +28 -160
- package/dist/components/navigation/Tabs.md +316 -57
- package/dist/components/surfaces/Sheet.md +334 -151
- package/dist/index.browser.js +15 -13
- package/dist/index.browser.js.map +4 -4
- package/dist/index.cjs +289 -288
- package/dist/index.d.ts +1 -1
- package/dist/index.js +426 -369
- package/dist/llms.txt +1 -8
- package/framer/index.js +1 -1
- package/package.json +16 -15
- package/dist/chunks/rehype-accent-FZRUD7VI.js +0 -39
- package/dist/components/feedback/CircularProgress.md +0 -257
- package/dist/components/feedback/Skeleton.md +0 -280
- package/dist/components/inputs/FormControl.md +0 -361
- package/dist/components/inputs/RadioList.md +0 -241
- package/dist/components/inputs/Slider.md +0 -334
- package/dist/guides/ThemeProvider.md +0 -116
- package/dist/guides/llms.txt +0 -9
|
@@ -2,9 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
## Introduction
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
Switches are best suited for binary settings that take effect immediately, such as enabling notifications, toggling dark mode, or activating a feature. Unlike a checkbox (which is often part of a form submission), a switch communicates an instant state change.
|
|
5
|
+
Switch 컴포넌트는 사용자가 옵션을 켜고 끌 수 있는 토글 형태의 입력 요소입니다. Joy UI의 Switch를 기반으로 하며, 다양한 크기, 색상, 장식 요소를 지원합니다. 설정 화면, 기능 활성화/비활성화, 모드 전환 등에 주로 사용됩니다.
|
|
8
6
|
|
|
9
7
|
```tsx
|
|
10
8
|
<Switch />
|
|
@@ -36,9 +34,19 @@ function MyComponent() {
|
|
|
36
34
|
}
|
|
37
35
|
```
|
|
38
36
|
|
|
39
|
-
##
|
|
37
|
+
## Examples
|
|
38
|
+
|
|
39
|
+
### Basic Usage
|
|
40
|
+
|
|
41
|
+
가장 기본적인 Switch 사용법입니다.
|
|
42
|
+
|
|
43
|
+
```tsx
|
|
44
|
+
<Switch />
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
### With Labels
|
|
40
48
|
|
|
41
|
-
|
|
49
|
+
라벨과 함께 사용하는 Switch입니다. 폼 컨트롤 내에서 설명과 함께 사용할 수 있습니다.
|
|
42
50
|
|
|
43
51
|
```tsx
|
|
44
52
|
<FormControl orientation="horizontal" sx={{
|
|
@@ -61,9 +69,9 @@ Use `FormControl` with `FormLabel` and `FormHelperText` to provide a label and d
|
|
|
61
69
|
</FormControl>
|
|
62
70
|
```
|
|
63
71
|
|
|
64
|
-
|
|
72
|
+
### Inline Labels
|
|
65
73
|
|
|
66
|
-
|
|
74
|
+
인라인 형태로 텍스트와 함께 사용할 수 있습니다.
|
|
67
75
|
|
|
68
76
|
```tsx
|
|
69
77
|
<Typography component="label" endDecorator={<Switch sx={{
|
|
@@ -73,9 +81,9 @@ Turn alarm on
|
|
|
73
81
|
</Typography>
|
|
74
82
|
```
|
|
75
83
|
|
|
76
|
-
|
|
84
|
+
### With Decorators
|
|
77
85
|
|
|
78
|
-
|
|
86
|
+
아이콘이나 다른 요소를 장식으로 추가할 수 있습니다.
|
|
79
87
|
|
|
80
88
|
```tsx
|
|
81
89
|
<Switch color={dark ? 'primary' : 'danger'} slotProps={{
|
|
@@ -89,9 +97,9 @@ Use `startDecorator` and `endDecorator` to place icons or text around the switch
|
|
|
89
97
|
})} />} checked={dark} onChange={event => setDark(event.target.checked)} />
|
|
90
98
|
```
|
|
91
99
|
|
|
92
|
-
|
|
100
|
+
### Track Children
|
|
93
101
|
|
|
94
|
-
|
|
102
|
+
트랙 내부에 텍스트나 다른 요소를 표시할 수 있습니다.
|
|
95
103
|
|
|
96
104
|
```tsx
|
|
97
105
|
<Stack direction="row" spacing={4}>
|
|
@@ -133,9 +141,9 @@ Display text or symbols inside the switch track using `slotProps.track.children`
|
|
|
133
141
|
</Stack>
|
|
134
142
|
```
|
|
135
143
|
|
|
136
|
-
|
|
144
|
+
### Thumb Children
|
|
137
145
|
|
|
138
|
-
|
|
146
|
+
썸(토글 버튼) 내부에 아이콘을 표시할 수 있습니다.
|
|
139
147
|
|
|
140
148
|
```tsx
|
|
141
149
|
<Switch size="lg" slotProps={{
|
|
@@ -150,96 +158,47 @@ Place an icon inside the switch thumb using `slotProps.thumb.children`. This is
|
|
|
150
158
|
}} />
|
|
151
159
|
```
|
|
152
160
|
|
|
153
|
-
## All Variants Overview
|
|
154
|
-
|
|
155
|
-
A comprehensive view of all color and decoration combinations.
|
|
156
|
-
|
|
157
|
-
```tsx
|
|
158
|
-
<Stack direction="row" spacing={4}>
|
|
159
|
-
{([undefined, 'primary', 'warning', 'success', 'danger', 'neutral'] as const).map(color => <Stack key={color} spacing={2}>
|
|
160
|
-
<Switch color={color} />
|
|
161
|
-
<Switch color={color} checked />
|
|
162
|
-
<Switch color={color} startDecorator={<LightModeIcon />} endDecorator={<DarkModeIcon />} />
|
|
163
|
-
<Switch color={color} slotProps={{
|
|
164
|
-
input: {
|
|
165
|
-
'aria-label': 'Dark mode'
|
|
166
|
-
},
|
|
167
|
-
thumb: {
|
|
168
|
-
children: <DarkModeIcon fontSize="inherit" />
|
|
169
|
-
},
|
|
170
|
-
track: {
|
|
171
|
-
children: <React.Fragment>
|
|
172
|
-
<span>I</span>
|
|
173
|
-
<span>0</span>
|
|
174
|
-
</React.Fragment>,
|
|
175
|
-
sx: {
|
|
176
|
-
justifyContent: 'space-around'
|
|
177
|
-
}
|
|
178
|
-
}
|
|
179
|
-
}} sx={{
|
|
180
|
-
'--Switch-thumbSize': '27px',
|
|
181
|
-
'--Switch-trackWidth': '52px',
|
|
182
|
-
'--Switch-trackHeight': '31px'
|
|
183
|
-
}} />
|
|
184
|
-
<Typography component="label" startDecorator={<Switch sx={{
|
|
185
|
-
ml: 1
|
|
186
|
-
}} color={color} />}>
|
|
187
|
-
Label
|
|
188
|
-
</Typography>
|
|
189
|
-
</Stack>)}
|
|
190
|
-
</Stack>
|
|
191
|
-
```
|
|
192
|
-
|
|
193
161
|
## Common Use Cases
|
|
194
162
|
|
|
195
163
|
### Settings Panel
|
|
196
164
|
|
|
197
|
-
|
|
198
|
-
function SettingsPanel() {
|
|
199
|
-
const [notifications, setNotifications] = useState(true);
|
|
200
|
-
const [autoSave, setAutoSave] = useState(false);
|
|
165
|
+
설정 패널에서 기능을 활성화/비활성화할 때 사용합니다.
|
|
201
166
|
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
>
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
<
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
<Switch
|
|
232
|
-
checked={autoSave}
|
|
233
|
-
onChange={(e) => setAutoSave(e.target.checked)}
|
|
234
|
-
/>
|
|
235
|
-
</FormControl>
|
|
236
|
-
</Stack>
|
|
237
|
-
);
|
|
238
|
-
}
|
|
167
|
+
```tsx
|
|
168
|
+
<Stack spacing={3}>
|
|
169
|
+
<FormControl orientation="horizontal" sx={{ width: 400, justifyContent: 'space-between' }}>
|
|
170
|
+
<div>
|
|
171
|
+
<FormLabel>알림 받기</FormLabel>
|
|
172
|
+
<FormHelperText sx={{ mt: 0 }}>
|
|
173
|
+
새로운 메시지가 도착했을 때 알림을 받습니다.
|
|
174
|
+
</FormHelperText>
|
|
175
|
+
</div>
|
|
176
|
+
<Switch
|
|
177
|
+
checked={notifications}
|
|
178
|
+
onChange={(e) => setNotifications(e.target.checked)}
|
|
179
|
+
color="success"
|
|
180
|
+
/>
|
|
181
|
+
</FormControl>
|
|
182
|
+
|
|
183
|
+
<FormControl orientation="horizontal" sx={{ width: 400, justifyContent: 'space-between' }}>
|
|
184
|
+
<div>
|
|
185
|
+
<FormLabel>자동 저장</FormLabel>
|
|
186
|
+
<FormHelperText sx={{ mt: 0 }}>
|
|
187
|
+
작업 내용을 자동으로 저장합니다.
|
|
188
|
+
</FormHelperText>
|
|
189
|
+
</div>
|
|
190
|
+
<Switch
|
|
191
|
+
checked={autoSave}
|
|
192
|
+
onChange={(e) => setAutoSave(e.target.checked)}
|
|
193
|
+
/>
|
|
194
|
+
</FormControl>
|
|
195
|
+
</Stack>
|
|
239
196
|
```
|
|
240
197
|
|
|
241
198
|
### Theme Toggle
|
|
242
199
|
|
|
200
|
+
다크 모드/라이트 모드 전환에 자주 사용됩니다.
|
|
201
|
+
|
|
243
202
|
```tsx
|
|
244
203
|
function ThemeToggle() {
|
|
245
204
|
const [darkMode, setDarkMode] = useState(false);
|
|
@@ -252,86 +211,367 @@ function ThemeToggle() {
|
|
|
252
211
|
startDecorator={<LightModeIcon />}
|
|
253
212
|
endDecorator={<DarkModeIcon />}
|
|
254
213
|
slotProps={{
|
|
255
|
-
input: { 'aria-label': '
|
|
214
|
+
input: { 'aria-label': '다크 모드 토글' },
|
|
256
215
|
}}
|
|
257
216
|
/>
|
|
258
217
|
);
|
|
259
218
|
}
|
|
260
219
|
```
|
|
261
220
|
|
|
262
|
-
### Feature
|
|
221
|
+
### Feature Flags
|
|
222
|
+
|
|
223
|
+
기능의 활성화/비활성화를 제어할 때 사용합니다.
|
|
263
224
|
|
|
264
225
|
```tsx
|
|
265
|
-
|
|
266
|
-
|
|
226
|
+
<Card>
|
|
227
|
+
<CardContent>
|
|
228
|
+
<Typography level="title-md" sx={{ mb: 2 }}>
|
|
229
|
+
실험적 기능
|
|
230
|
+
</Typography>
|
|
267
231
|
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
232
|
+
<Stack spacing={2}>
|
|
233
|
+
<FormControl orientation="horizontal" sx={{ justifyContent: 'space-between' }}>
|
|
234
|
+
<FormLabel>베타 기능 활성화</FormLabel>
|
|
235
|
+
<Switch
|
|
236
|
+
checked={betaFeatures}
|
|
237
|
+
onChange={(e) => setBetaFeatures(e.target.checked)}
|
|
238
|
+
color="warning"
|
|
239
|
+
endDecorator={betaFeatures ? 'On' : 'Off'}
|
|
240
|
+
/>
|
|
241
|
+
</FormControl>
|
|
242
|
+
|
|
243
|
+
<FormControl orientation="horizontal" sx={{ justifyContent: 'space-between' }}>
|
|
244
|
+
<FormLabel>고급 모드</FormLabel>
|
|
245
|
+
<Switch
|
|
246
|
+
checked={advancedMode}
|
|
247
|
+
onChange={(e) => setAdvancedMode(e.target.checked)}
|
|
248
|
+
disabled={!betaFeatures}
|
|
249
|
+
/>
|
|
250
|
+
</FormControl>
|
|
251
|
+
</Stack>
|
|
252
|
+
</CardContent>
|
|
253
|
+
</Card>
|
|
254
|
+
```
|
|
255
|
+
|
|
256
|
+
### List Items with Switches
|
|
257
|
+
|
|
258
|
+
목록 아이템에서 각 항목을 개별적으로 제어할 때 사용합니다.
|
|
259
|
+
|
|
260
|
+
```tsx
|
|
261
|
+
<List>
|
|
262
|
+
{permissions.map((permission) => (
|
|
263
|
+
<ListItem key={permission.id} endAction={
|
|
274
264
|
<Switch
|
|
275
|
-
checked={
|
|
276
|
-
onChange={(e) =>
|
|
277
|
-
|
|
278
|
-
|
|
265
|
+
checked={permission.enabled}
|
|
266
|
+
onChange={(e) => handlePermissionToggle(permission.id, e.target.checked)}
|
|
267
|
+
size="sm"
|
|
268
|
+
color={permission.enabled ? 'success' : 'neutral'}
|
|
279
269
|
/>
|
|
280
|
-
|
|
270
|
+
}>
|
|
271
|
+
<ListItemContent>
|
|
272
|
+
<Typography level="title-sm">{permission.name}</Typography>
|
|
273
|
+
<Typography level="body-sm" color="neutral">
|
|
274
|
+
{permission.description}
|
|
275
|
+
</Typography>
|
|
276
|
+
</ListItemContent>
|
|
277
|
+
</ListItem>
|
|
278
|
+
))}
|
|
279
|
+
</List>
|
|
280
|
+
```
|
|
281
|
+
|
|
282
|
+
### Controlled Form
|
|
283
|
+
|
|
284
|
+
폼 상태 관리와 함께 사용하는 예제입니다.
|
|
285
|
+
|
|
286
|
+
```tsx
|
|
287
|
+
function UserPreferences() {
|
|
288
|
+
const [preferences, setPreferences] = useState({
|
|
289
|
+
emailNotifications: true,
|
|
290
|
+
smsNotifications: false,
|
|
291
|
+
pushNotifications: true,
|
|
292
|
+
darkMode: false,
|
|
293
|
+
});
|
|
294
|
+
|
|
295
|
+
const handleToggle = (key: keyof typeof preferences) => (
|
|
296
|
+
event: React.ChangeEvent<HTMLInputElement>
|
|
297
|
+
) => {
|
|
298
|
+
setPreferences(prev => ({
|
|
299
|
+
...prev,
|
|
300
|
+
[key]: event.target.checked
|
|
301
|
+
}));
|
|
302
|
+
};
|
|
303
|
+
|
|
304
|
+
return (
|
|
305
|
+
<form onSubmit={handleSubmit}>
|
|
306
|
+
<Stack spacing={3}>
|
|
307
|
+
<Typography level="h4">알림 설정</Typography>
|
|
308
|
+
|
|
309
|
+
<Stack spacing={2}>
|
|
310
|
+
<Typography component="label" endDecorator={
|
|
311
|
+
<Switch
|
|
312
|
+
checked={preferences.emailNotifications}
|
|
313
|
+
onChange={handleToggle('emailNotifications')}
|
|
314
|
+
sx={{ ml: 1 }}
|
|
315
|
+
/>
|
|
316
|
+
}>
|
|
317
|
+
이메일 알림
|
|
318
|
+
</Typography>
|
|
319
|
+
|
|
320
|
+
<Typography component="label" endDecorator={
|
|
321
|
+
<Switch
|
|
322
|
+
checked={preferences.smsNotifications}
|
|
323
|
+
onChange={handleToggle('smsNotifications')}
|
|
324
|
+
sx={{ ml: 1 }}
|
|
325
|
+
/>
|
|
326
|
+
}>
|
|
327
|
+
SMS 알림
|
|
328
|
+
</Typography>
|
|
329
|
+
|
|
330
|
+
<Typography component="label" endDecorator={
|
|
331
|
+
<Switch
|
|
332
|
+
checked={preferences.pushNotifications}
|
|
333
|
+
onChange={handleToggle('pushNotifications')}
|
|
334
|
+
sx={{ ml: 1 }}
|
|
335
|
+
/>
|
|
336
|
+
}>
|
|
337
|
+
푸시 알림
|
|
338
|
+
</Typography>
|
|
339
|
+
</Stack>
|
|
340
|
+
|
|
341
|
+
<Divider />
|
|
342
|
+
|
|
343
|
+
<Typography component="label" endDecorator={
|
|
344
|
+
<Switch
|
|
345
|
+
checked={preferences.darkMode}
|
|
346
|
+
onChange={handleToggle('darkMode')}
|
|
347
|
+
startDecorator={<LightModeIcon />}
|
|
348
|
+
endDecorator={<DarkModeIcon />}
|
|
349
|
+
sx={{ ml: 1 }}
|
|
350
|
+
/>
|
|
351
|
+
}>
|
|
352
|
+
다크 모드
|
|
353
|
+
</Typography>
|
|
354
|
+
|
|
355
|
+
<Button type="submit">설정 저장</Button>
|
|
356
|
+
</Stack>
|
|
357
|
+
</form>
|
|
281
358
|
);
|
|
282
359
|
}
|
|
283
360
|
```
|
|
284
361
|
|
|
285
|
-
##
|
|
362
|
+
## Props and Customization
|
|
363
|
+
|
|
364
|
+
### Colors
|
|
365
|
+
|
|
366
|
+
다양한 색상을 적용할 수 있습니다.
|
|
367
|
+
|
|
368
|
+
```tsx
|
|
369
|
+
<Stack direction="row" spacing={2}>
|
|
370
|
+
<Switch color="primary" checked />
|
|
371
|
+
<Switch color="success" checked />
|
|
372
|
+
<Switch color="warning" checked />
|
|
373
|
+
<Switch color="danger" checked />
|
|
374
|
+
<Switch color="neutral" checked />
|
|
375
|
+
</Stack>
|
|
376
|
+
```
|
|
377
|
+
|
|
378
|
+
### Sizes
|
|
379
|
+
|
|
380
|
+
스위치의 크기를 조절할 수 있습니다.
|
|
381
|
+
|
|
382
|
+
```tsx
|
|
383
|
+
<Stack direction="row" spacing={2} alignItems="center">
|
|
384
|
+
<Switch size="sm" checked />
|
|
385
|
+
<Switch size="md" checked />
|
|
386
|
+
<Switch size="lg" checked />
|
|
387
|
+
</Stack>
|
|
388
|
+
```
|
|
389
|
+
|
|
390
|
+
### Variants
|
|
391
|
+
|
|
392
|
+
다양한 시각적 스타일을 적용할 수 있습니다.
|
|
286
393
|
|
|
287
|
-
|
|
394
|
+
```tsx
|
|
395
|
+
<Stack direction="row" spacing={2}>
|
|
396
|
+
<Switch variant="solid" checked />
|
|
397
|
+
<Switch variant="soft" checked />
|
|
398
|
+
<Switch variant="outlined" checked />
|
|
399
|
+
<Switch variant="plain" checked />
|
|
400
|
+
</Stack>
|
|
401
|
+
```
|
|
402
|
+
|
|
403
|
+
### Custom Styling
|
|
404
|
+
|
|
405
|
+
CSS 변수를 통해 세밀한 커스터마이징이 가능합니다.
|
|
288
406
|
|
|
289
407
|
```tsx
|
|
290
|
-
// ✅ Immediate effect -- toggling notifications on/off
|
|
291
408
|
<Switch
|
|
292
|
-
checked={
|
|
293
|
-
onChange={(e) =>
|
|
409
|
+
checked={customSwitch}
|
|
410
|
+
onChange={(e) => setCustomSwitch(e.target.checked)}
|
|
411
|
+
sx={{
|
|
412
|
+
'--Switch-thumbSize': '24px',
|
|
413
|
+
'--Switch-trackWidth': '60px',
|
|
414
|
+
'--Switch-trackHeight': '32px',
|
|
415
|
+
'--Switch-trackRadius': '16px',
|
|
416
|
+
'--Switch-thumbRadius': '12px',
|
|
417
|
+
}}
|
|
294
418
|
/>
|
|
419
|
+
```
|
|
420
|
+
|
|
421
|
+
## States
|
|
422
|
+
|
|
423
|
+
### Disabled State
|
|
295
424
|
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
425
|
+
비활성 상태의 스위치입니다.
|
|
426
|
+
|
|
427
|
+
```tsx
|
|
428
|
+
<Stack direction="row" spacing={2}>
|
|
429
|
+
<Switch disabled />
|
|
430
|
+
<Switch disabled checked />
|
|
431
|
+
</Stack>
|
|
301
432
|
```
|
|
302
433
|
|
|
303
|
-
|
|
434
|
+
### Loading/Processing State
|
|
435
|
+
|
|
436
|
+
처리 중일 때의 시각적 피드백을 제공할 수 있습니다.
|
|
304
437
|
|
|
305
438
|
```tsx
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
439
|
+
function ProcessingSwitch() {
|
|
440
|
+
const [processing, setProcessing] = useState(false);
|
|
441
|
+
const [enabled, setEnabled] = useState(false);
|
|
442
|
+
|
|
443
|
+
const handleToggle = async (event: React.ChangeEvent<HTMLInputElement>) => {
|
|
444
|
+
setProcessing(true);
|
|
445
|
+
try {
|
|
446
|
+
// API 호출 시뮬레이션
|
|
447
|
+
await new Promise(resolve => setTimeout(resolve, 1000));
|
|
448
|
+
setEnabled(event.target.checked);
|
|
449
|
+
} finally {
|
|
450
|
+
setProcessing(false);
|
|
451
|
+
}
|
|
452
|
+
};
|
|
311
453
|
|
|
312
|
-
|
|
313
|
-
<Switch
|
|
454
|
+
return (
|
|
455
|
+
<Switch
|
|
456
|
+
checked={enabled}
|
|
457
|
+
onChange={handleToggle}
|
|
458
|
+
disabled={processing}
|
|
459
|
+
endDecorator={processing ? 'Processing...' : (enabled ? 'On' : 'Off')}
|
|
460
|
+
/>
|
|
461
|
+
);
|
|
462
|
+
}
|
|
314
463
|
```
|
|
315
464
|
|
|
316
|
-
|
|
465
|
+
## Best Practices
|
|
466
|
+
|
|
467
|
+
1. **명확한 라벨**: 스위치가 무엇을 제어하는지 명확하게 표시하세요.
|
|
468
|
+
|
|
469
|
+
```tsx
|
|
470
|
+
// ✅ 명확한 라벨
|
|
471
|
+
<Typography component="label" endDecorator={<Switch />}>
|
|
472
|
+
이메일 알림 받기
|
|
473
|
+
</Typography>
|
|
474
|
+
|
|
475
|
+
// ❌ 모호한 라벨
|
|
476
|
+
<Typography component="label" endDecorator={<Switch />}>
|
|
477
|
+
설정
|
|
478
|
+
</Typography>
|
|
479
|
+
```
|
|
480
|
+
|
|
481
|
+
2. **즉시 효과**: 스위치 토글은 즉시 효과가 나타나야 합니다.
|
|
482
|
+
|
|
483
|
+
3. **적절한 색상 사용**:
|
|
484
|
+
- 일반적인 기능: `primary` 또는 기본 색상
|
|
485
|
+
- 성공/활성화: `success`
|
|
486
|
+
- 주의사항: `warning`
|
|
487
|
+
- 위험한 기능: `danger`
|
|
488
|
+
|
|
489
|
+
4. **상태 표시**: 현재 상태를 명확히 보여주는 장식 요소를 활용하세요.
|
|
317
490
|
|
|
318
491
|
```tsx
|
|
319
|
-
// ✅ Color + text indicator
|
|
320
492
|
<Switch
|
|
321
493
|
checked={enabled}
|
|
322
494
|
onChange={handleChange}
|
|
495
|
+
endDecorator={enabled ? '켜짐' : '꺼짐'}
|
|
323
496
|
color={enabled ? 'success' : 'neutral'}
|
|
324
|
-
endDecorator={enabled ? 'On' : 'Off'}
|
|
325
497
|
/>
|
|
326
498
|
```
|
|
327
499
|
|
|
328
|
-
|
|
500
|
+
5. **그룹화**: 관련된 스위치들은 논리적으로 그룹화하세요.
|
|
329
501
|
|
|
330
|
-
|
|
502
|
+
```tsx
|
|
503
|
+
<Stack spacing={3}>
|
|
504
|
+
<Typography level="title-md">알림 설정</Typography>
|
|
505
|
+
<Stack spacing={1} sx={{ pl: 1 }}>
|
|
506
|
+
<Switch label="이메일 알림" />
|
|
507
|
+
<Switch label="SMS 알림" />
|
|
508
|
+
<Switch label="푸시 알림" />
|
|
509
|
+
</Stack>
|
|
510
|
+
</Stack>
|
|
511
|
+
```
|
|
331
512
|
|
|
332
513
|
## Accessibility
|
|
333
514
|
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
515
|
+
Switch 컴포넌트는 다음과 같은 접근성 기능을 제공합니다:
|
|
516
|
+
|
|
517
|
+
### 키보드 탐색
|
|
518
|
+
|
|
519
|
+
- **Tab**: 스위치로 포커스 이동
|
|
520
|
+
- **Space**: 스위치 토글
|
|
521
|
+
- **Enter**: 스위치 토글 (라벨이 연결된 경우)
|
|
522
|
+
|
|
523
|
+
### ARIA 속성
|
|
524
|
+
|
|
525
|
+
- `role="switch"`: 스위치 역할 정의
|
|
526
|
+
- `aria-checked`: 현재 상태 표시
|
|
527
|
+
- `aria-label` 또는 `aria-labelledby`: 접근 가능한 이름 제공
|
|
528
|
+
|
|
529
|
+
### 추가 접근성 고려사항
|
|
530
|
+
|
|
531
|
+
```tsx
|
|
532
|
+
<Switch
|
|
533
|
+
slotProps={{
|
|
534
|
+
input: {
|
|
535
|
+
'aria-label': '다크 모드 활성화',
|
|
536
|
+
'aria-describedby': 'dark-mode-description',
|
|
537
|
+
},
|
|
538
|
+
}}
|
|
539
|
+
/>
|
|
540
|
+
<FormHelperText id="dark-mode-description">
|
|
541
|
+
화면을 어둡게 표시하여 눈의 피로를 줄입니다.
|
|
542
|
+
</FormHelperText>
|
|
543
|
+
```
|
|
544
|
+
|
|
545
|
+
### 색상 대비 및 시각적 표시
|
|
546
|
+
|
|
547
|
+
```tsx
|
|
548
|
+
// 색상에만 의존하지 않고 텍스트 표시도 함께 제공
|
|
549
|
+
<Switch
|
|
550
|
+
checked={enabled}
|
|
551
|
+
onChange={handleChange}
|
|
552
|
+
endDecorator={
|
|
553
|
+
<Typography level="body-xs" sx={{ minWidth: 32 }}>
|
|
554
|
+
{enabled ? 'ON' : 'OFF'}
|
|
555
|
+
</Typography>
|
|
556
|
+
}
|
|
557
|
+
/>
|
|
558
|
+
```
|
|
559
|
+
|
|
560
|
+
## Performance Considerations
|
|
561
|
+
|
|
562
|
+
1. **상태 최적화**: 불필요한 리렌더링을 방지하기 위해 상태를 적절히 관리하세요.
|
|
563
|
+
|
|
564
|
+
```tsx
|
|
565
|
+
// ✅ 개별 상태 관리
|
|
566
|
+
const [emailNotify, setEmailNotify] = useState(false);
|
|
567
|
+
const [smsNotify, setSmsNotify] = useState(false);
|
|
568
|
+
|
|
569
|
+
// ❌ 전체 객체 업데이트로 인한 불필요한 리렌더링
|
|
570
|
+
const [settings, setSettings] = useState({ email: false, sms: false });
|
|
571
|
+
```
|
|
572
|
+
|
|
573
|
+
2. **비동기 처리**: API 호출이 필요한 경우 적절한 로딩 상태를 제공하세요.
|
|
574
|
+
|
|
575
|
+
3. **메모이제이션**: 복잡한 핸들러는 useCallback으로 메모이제이션하세요.
|
|
576
|
+
|
|
577
|
+
Switch는 직관적이고 접근 가능한 토글 인터페이스를 제공하는 핵심 입력 컴포넌트입니다. 적절한 라벨링과 시각적 피드백을 통해 사용자 친화적인 설정 및 제어 인터페이스를 만들 수 있습니다.
|