-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathdocs.dropdown.jsx
467 lines (440 loc) · 13.1 KB
/
docs.dropdown.jsx
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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
import { useRef } from "react";
import Code from "~/components/Code";
import Heading from "~/components/Heading";
import Link from "~/components/Link";
import Content from "~/components/docs/Content";
import EditOnGithub from "~/components/docs/EditOnGithub";
import Header from "~/components/docs/Header";
import TableOfContents from "~/components/docs/TableOfContents";
import metaData from "~/data/meta";
const { titleSuffix } = metaData;
export const meta = () => [
{ title: `Dropdown ${titleSuffix}` },
{
name: "description",
content:
"Create dropdown menus and custom selects with minimal and semantic HTML, without JavaScript.",
},
];
const phasesOfMatter = ["Solid", "Liquid", "Gas", "Plasma"];
const accountItems = ["Profile", "Settings", "Security", "Logout"];
export function Item({ children, className, ...props }) {
const preventDefault = (e) => e.preventDefault();
return (
<Link to="#" onClick={preventDefault} {...(className && { className: className })} {...props}>
{children}
</Link>
);
}
export function DropdownItems({ items = phasesOfMatter, dir, id }) {
return (
<ul dir={dir} id={id}>
{items.map((item) => (
<li key={item}>
<Item>{item}</Item>
</li>
))}
</ul>
);
}
export function SelectItems({ items = phasesOfMatter }) {
return (
<>
{items.map((item) => (
<option key={item}>{item}</option>
))}
</>
);
}
export default function Dropdown() {
const syntaxRef = useRef();
const checkboxesAndRadiosRef = useRef();
const buttonVariantsRef = useRef();
const validationStatesRef = useRef();
const usageWithNavRef = useRef();
return (
<>
{/* Header */}
<Header
title="Dropdown"
description="Create dropdown menus and custom selects with minimal and semantic HTML, without JavaScript."
/>
{/* Table of contents */}
<TableOfContents
data={[
{ anchor: "", title: "Syntax", ref: syntaxRef },
{
anchor: "dropdowns-with-checkboxes-and-radios",
title: "Checkboxes and radios",
ref: checkboxesAndRadiosRef,
},
{
anchor: "button-variants",
title: "Button variants",
ref: buttonVariantsRef,
},
{
anchor: "validation-states",
title: "Validation states",
ref: validationStatesRef,
},
{
anchor: "usage-with-nav",
title: "Usage with nav",
ref: usageWithNavRef,
},
]}
/>
{/* Content */}
<Content>
<section ref={syntaxRef}>
<p>
Dropdowns are built with <Code display="inline">{`<details class="dropdown">`}</Code> as
a wrapper and <Code display="inline">{`<summary>`}</Code> and{" "}
<Code display="inline">{`<ul>`}</Code> as direct children. Unless they are in a{" "}
<Link to="/docs/nav">Nav</Link>, dropdowns are <code>{`width: 100%;`}</code> by default.
</p>
<p>
Dropdowns are not available in the{" "}
<Link to="/docs/classless">class‑less version</Link>.
</p>
<p>
For style consistency with the form elements, dropdowns are styled like a select by
default.
</p>
<article aria-label="Dropdowns as selects" className="component">
<div className="grid">
<details className="dropdown">
<summary>Dropdown</summary>
<DropdownItems />
</details>
<select name="select" aria-label="Select" defaultValue="" required>
<option value="" disabled>
Select
</option>
<SelectItems />
</select>
</div>
<Code as="footer">{`<!-- Dropdown -->
<details class="dropdown">
<summary>Dropdown</summary>
<ul>
${phasesOfMatter
.map(
(phase, index) =>
`${index !== 0 ? " " : " "}<li><a href="#">${phase}</a></li>${
phase !== phasesOfMatter[phasesOfMatter.length - 1] ? "\n" : ""
}`,
)
.join("")}
</ul>
</details>
<!-- Select -->
<select name="select" aria-label="Select" required>
<option selected disabled value="">Select</option>
${phasesOfMatter
.map(
(phase, index) =>
`${index !== 0 ? " " : ""}<option>${phase}</option>${
index !== phasesOfMatter.length - 1 && "\n"
}`,
)
.join("")}
</select>`}</Code>
</article>
</section>
<section ref={checkboxesAndRadiosRef}>
<Heading level={2} anchor="dropdowns-with-checkboxes-and-radios">
Dropdowns with checkboxes and radios
</Heading>
<p>
Dropdowns can be used as custom selects with{" "}
<Code display="inline">{`<input type="radio">`}</Code> or{" "}
<Code display="inline">{`<input type="checkbox">`}</Code>.
</p>
<article aria-label="Dropdowns with radio buttons or checkboxes" className="component">
<details className="dropdown">
<summary>Select a phase of matter...</summary>
<ul>
{phasesOfMatter.map((phase) => (
<li key={phase}>
<label>
<input type="radio" name="phase" value={phase} />
{phase}
</label>
</li>
))}
</ul>
</details>
<details className="dropdown">
<summary>Select phases of matter...</summary>
<ul>
{phasesOfMatter.map((phase) => (
<li key={phase}>
<label>
<input type="checkbox" name={phase.toLowerCase()} value={phase} />
{phase}
</label>
</li>
))}
</ul>
</details>
<Code as="footer" language="html">{`<!-- Radios -->
<details class="dropdown">
<summary>
Select a phase of matter...
</summary>
<ul>
${phasesOfMatter
.map(
(phase, index) =>
`${index !== 0 ? " " : " "}<li>
<label>
<input type="radio" name="phase" value="${phase.toLowerCase()}" />
${phase}
</label>
</li>${phase !== phasesOfMatter[phasesOfMatter.length - 1] ? "\n" : ""}`,
)
.join("")}
</ul>
</details>
<!-- Checkboxes -->
<details class="dropdown">
<summary>
Select phases of matter...
</summary>
<ul>
${phasesOfMatter
.map(
(phase, index) =>
`${index !== 0 ? " " : " "}<li>
<label>
<input type="checkbox" name="${phase.toLowerCase()}" />
${phase}
</label>
</li>${phase !== phasesOfMatter[phasesOfMatter.length - 1] ? "\n" : ""}`,
)
.join("")}
</ul>
</details>`}</Code>
</article>
<p>
Pico does not include JavaScript code. You will probably need some JavaScript to
interact with these custom dropdowns.
</p>
</section>
<section ref={buttonVariantsRef}>
<Heading level={2} anchor="button-variants">
Button variants
</Heading>
<p>
<Code display="inline">{`<summary role="button">`}</Code> transforms the dropdown into a
button.
</p>
<article aria-label="Dropdowns as buttons" className="component">
<details className="dropdown">
<summary role="button">Dropdown as a button</summary>
<DropdownItems />
</details>
<Code as="footer">{`<details class="dropdown">
<summary role="button">
Dropdown as a button
</summary>
<ul>
...
</ul>
</details>`}</Code>
</article>
<p>
Like regular buttons, they come with <code>.secondary</code>, <code>.contrast</code>,
and <code>.outline</code> (not available in the{" "}
<Link to="/docs/classless">class-less version</Link>).
</p>
<article aria-label="Dropdowns as buttons" className="component">
<details className="dropdown">
<summary role="button">Primary</summary>
<DropdownItems />
</details>
<details className="dropdown">
<summary role="button" className="secondary">
Secondary
</summary>
<DropdownItems />
</details>
<details className="dropdown">
<summary role="button" className="contrast">
Contrast
</summary>
<DropdownItems />
</details>
<details className="dropdown">
<summary role="button" className="outline">
Primary outline
</summary>
<DropdownItems />
</details>
<details className="dropdown">
<summary role="button" className="outline secondary">
Secondary outline
</summary>
<DropdownItems />
</details>
<details className="dropdown">
<summary role="button" className="outline contrast">
Contrast outline
</summary>
<DropdownItems />
</details>
<Code as="footer">{`<!-- Primary -->
<details class="dropdown">
<summary role="button">
Primary
</summary>
<ul>
...
</ul>
</details>
<!-- Secondary -->
<details class="dropdown">
<summary role="button" class="secondary">
Secondary
</summary>
<ul>
...
</ul>
</details>
<!-- Contrast -->
<details class="dropdown">
<summary role="button" class="contrast">
Contrast
</summary>
<ul>
...
</ul>
</details>
<!-- Primary outline -->
<details class="dropdown">
<summary role="button" class="outline">
Primary outline
</summary>
<ul>
...
</ul>
</details>
<!-- Secondary outline -->
<details class="dropdown">
<summary role="button" class="outline secondary">
Secondary outline
</summary>
<ul>
...
</ul>
</details>
<!-- Contrast outline -->
<details class="dropdown">
<summary role="button" class="outline contrast">
Contrast outline
</summary>
<ul>
...
</ul>
</details>
`}</Code>
</article>
</section>
<section ref={validationStatesRef}>
<Heading level={2} anchor="validation-states">
Validation states
</Heading>
<p>
Just like any form elements, validation states are provided with{" "}
<code>aria-invalid</code>.
</p>
<article aria-label="Dropdowns with validation states" className="component">
<details className="dropdown">
<summary aria-invalid="false">Valid phase of matter: Solid</summary>
<DropdownItems />
</details>
<details className="dropdown">
<summary aria-invalid="true">Debated classification: Plasma</summary>
<DropdownItems />
</details>
<Code as="footer">{`<details class="dropdown">
<summary aria-invalid="false">
Valid phase of matter: Solid
</summary>
<ul>
...
</ul>
</details>
<details class="dropdown">
<summary aria-invalid="true">
Debated classification: Plasma
</summary>
<ul>
...
</ul>
</details>`}</Code>
</article>
</section>
<section ref={usageWithNavRef}>
<Heading level={2} anchor="usage-with-nav">
Usage with <Code display="inline">{`<nav>`}</Code>
</Heading>
<p>
You can use dropdowns inside <Link to="/docs/nav">Nav</Link>.
</p>
<p>
To change the alignment of the submenu, simply use{" "}
<Code display="inline">{`<ul dir="rtl">`}</Code>.
</p>
<article aria-label="Dropdowns inside nav" className="component">
<nav>
<ul>
<li>
<strong>Acme Corp</strong>
</li>
</ul>
<ul>
<li>
<Item className="secondary">Services</Item>
</li>
<li>
<details className="dropdown">
<summary>Account</summary>
<DropdownItems items={accountItems} dir="rtl" />
</details>
</li>
</ul>
</nav>
<Code as="footer">{`<nav>
<ul>
<li><strong>Acme Corp</strong></li>
</ul>
<ul>
<li><a href="#" class="secondary">Services</a></li>
<li>
<details class="dropdown">
<summary>
Account
</summary>
<ul dir="rtl">
${accountItems
.map(
(item, index) =>
` <li><a href="#">${item}</a></li>${index !== accountItems.length - 1 ? "\n" : ""}`,
)
.join("")}
</ul>
</details>
</li>
</ul>
</nav>`}</Code>
</article>
</section>
{/* Edit on GitHub */}
<EditOnGithub file="docs.dropdown.jsx" />
</Content>
</>
);
}