forked from learningequality/kolibri-design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathktabslist.vue
419 lines (376 loc) · 12.2 KB
/
ktabslist.vue
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
<template>
<DocsPageTemplate apiDocs>
<DocsPageSection
title="Overview"
anchor="#overview"
>
<p>Displays the tab list of a tabbed interface:</p>
<DocsShow language="html">
<KTabsList
v-model="ex1activeTabId"
tabsId="tabsIntro"
ariaLabel="Coach reports"
:tabs="tabs"
/>
<KTabsPanel
tabsId="tabsIntro"
:activeTabId="ex1activeTabId"
/>
</DocsShow>
<p>
<code>KTabsList</code> is meant to be used together with
<DocsLibraryLink component="KTabsPanel" />, which displays tabs' content. Using these two
components is recommended in situations when <DocsLibraryLink component="KTabs" /> is not
sufficient, for example, when a tab list is rendered within a different component than tab
panels.
</p>
</DocsPageSection>
<DocsPageSection
title="Basic usage"
anchor="#basic-usage"
>
<p>
Tab list items are rendered as buttons. Tab panels' content is passed via
<DocsLibraryLink component="KTabsPanel" /> slots named by corresponding tabs' IDs from
objects of the <code>tabs</code> array. The component takes care of displaying only content
corresponding to the active tab.
</p>
<p>
Each tabbed interface needs to have <code>ariaLabel</code> or
<code>ariaLabelledBy</code> and also an identifier, <code>tabsID</code>, that is unique in
regard to a page where tabs are rendered. Another purpose of <code>tabsId</code> is to link
<code>KTabsList</code> and <DocsLibraryLink component="KTabsPanel" /> representing a single
tabbed interface. These two components also need to share information about the currently
active tab stored in <code>activeTabId</code>.
</p>
<DocsShowCode language="html">
<AppBar>
<KTabsList
v-model="activeTabId"
tabsId="coachReportsTabs"
ariaLabel="Coach reports"
:tabs="tabs"
/>
</AppBar>
<KTabsPanel
tabsId="coachReportsTabs"
:activeTabId="activeTabId"
>
<template #tabLessons> Lessons tab content </template>
<template #tabLearners> Learners tab content </template>
<template #tabGroups> Groups tab content </template>
</KTabsPanel>
</DocsShowCode>
<!-- eslint-disable -->
<!-- prettier-ignore -->
<DocsShowCode language="javascript">
data() {
return {
activeTabId: 'tabLessons',
tabs: [
{ id: 'tabLessons', label: 'Lessons' },
{ id: 'tabLearners', label: 'Learners' },
{ id: 'tabGroups', label: 'Groups' },
],
};
},
</DocsShowCode>
<!-- eslint-enable -->
</DocsPageSection>
<DocsPageSection
title="With router"
anchor="#with-router"
>
<p>
When implementing tabs with the router, it's the router view rather than
<DocsLibraryLink component="KTabsPanel" /> that is responsible for displaying the active tab
content.
</p>
<p>
In such a case, define <code>to</code> property with a router link object as its value in
objects of the <code>tabs</code> array:
</p>
<!-- eslint-disable -->
<!-- prettier-ignore -->
<DocsShowCode language="javascript">
data() {
return {
tabs: [
{ id: 'tabLessons', label: 'Lessons', to: { path: '/lessons' } },
{ id: 'tabLearners', label: 'Learners', to: { path: '/learners' } },
{ id: 'tabGroups', label: 'Groups', to: { path: '/groups' } },
],
};
},
</DocsShowCode>
<!-- eslint-enable -->
<p>
Then, tabs will be rendered as router links and you can use the router view to display the
active tab content:
</p>
<DocsShowCode language="html">
<AppBar>
<KTabsList
v-model="activeTabId"
tabsId="coachReportsTabs"
ariaLabel="Coach reports"
:tabs="tabs"
/>
</AppBar>
<KTabsPanel
tabsId="coachReportsTabs"
:activeTabId="activeTabId"
>
<router-view />
</KTabsPanel>
</DocsShowCode>
<p>
Note that here, tabs content is not passed to <DocsLibraryLink component="KTabsPanel" /> via
named slots, for it's the router view that's responsible for rendering it.
</p>
<p>
However, it is still required to wrap the active tab content in
<DocsLibraryLink component="KTabsPanel" />. Otherwise, even though tabs may seem to function
correctly at first glance, accessibility would be broken.
</p>
<DocsDoNot>
<template #not>
<DocsShowCode language="html">
<AppBar>
<KTabsList
v-model="activeTabId"
tabsId="coachReportsTabs"
ariaLabel="Coach reports"
:tabs="tabs"
/>
</AppBar>
<KTabsPanel
tabsId="coachReportsTabs"
:activeTabId="activeTabId"
/>
<!-- the active tab content is displayed in this router view -->
<router-view />
</DocsShowCode>
<p>
Place the router view outside of <DocsLibraryLink component="KTabsPanel" /> or forget to
use <DocsLibraryLink component="KTabsPanel" /> altogether
</p>
</template>
<template #do>
<DocsShowCode language="html">
<AppBar>
<KTabsList
v-model="activeTabId"
tabsId="coachReportsTabs"
ariaLabel="Coach reports"
:tabs="tabs"
/>
</AppBar>
<KTabsPanel
tabsId="coachReportsTabs"
:activeTabId="activeTabId"
>
<!-- the active tab content is displayed in this router view -->
<router-view />
</KTabsPanel>
</DocsShowCode>
<p>Place the router view to <DocsLibraryLink component="KTabsPanel" /> default slot</p>
</template>
</DocsDoNot>
</DocsPageSection>
<DocsPageSection
title="More tabs on a page"
anchor="#more-tabs-on-a-page"
>
<p>
When there are two or more tabbed interfaces on one page, it is important to identify each
one of them with an ID unique in regard to the page. Otherwise, some a11y features may
break.
</p>
<p>This is achieved by providing a unique value to <code>tabsId</code> property:</p>
<DocsShowCode language="html">
<KTabsList tabsId="firstTabs" />
<KTabsPanel tabsId="firstTabs" />
<KTabsList tabsId="secondTabs" />
<KTabsPanel tabsId="secondTabs" />
</DocsShowCode>
</DocsPageSection>
<DocsPageSection
title="Appearance"
anchor="#appearance"
>
<p>There are several ways to adjust tabs styling.</p>
<p>Using props is the most straightforward:</p>
<DocsShow
language="html"
dark
>
<KTabsList
v-model="ex2activeTabId"
tabsId="tabsProps"
ariaLabel="Coach reports"
:tabs="tabs"
:color="$themeTokens.textInverted"
:colorActive="$themeTokens.textInverted"
:backgroundColor="$themeTokens.primary"
:hoverBackgroundColor="$themeTokens.primaryDark"
/>
<KTabsPanel
tabsId="tabsProps"
:activeTabId="ex2activeTabId"
/>
</DocsShow>
<DocsShowCode language="html">
<KTabsList
v-model="activeTabId"
tabsId="tabsProps"
ariaLabel="Coach reports"
:tabs="tabs"
:color="$themeTokens.textInverted"
:colorActive="$themeTokens.textInverted"
:backgroundColor="$themeTokens.primary"
:hoverBackgroundColor="$themeTokens.primaryDark"
/>
</DocsShowCode>
<p>
When that's not sufficient, <code>appearanceOverrides</code> and
<code>appearanceOverridesActive</code> can be used, where the former complements or
overrides styles common to all tabs and the latter contains styles specific to an active
tab:
</p>
<DocsShow language="html">
<KTabsList
v-model="ex3activeTabId"
tabsId="tabsAppearanceOverrides"
ariaLabel="Coach reports"
:tabs="tabs"
:appearanceOverrides="{
':hover': {
color: $themeTokens.primary,
},
textTransform: 'none',
margin: '0 32px',
}"
:appearanceOverridesActive="{
borderBottomWidth: '6px',
}"
/>
<KTabsPanel
tabsId="tabsAppearanceOverrides"
:activeTabId="ex3activeTabId"
/>
</DocsShow>
<DocsShowCode language="html">
<KTabsList
v-model="activeTabId"
tabsId="tabsAppearanceOverrides"
ariaLabel="Coach reports"
:tabs="tabs"
:appearanceOverrides="{
':hover': {
color: $themeTokens.primary,
},
textTransform: 'none',
margin: '0 32px',
}"
:appearanceOverridesActive="{
borderBottomWidth: '6px',
}"
/>
</DocsShowCode>
<p>
Lastly, the <code>tab</code> slot can be used to adjust labels, for example to add icons.
It's a scoped slot that exposes <code>tab</code> object and <code>isActive</code> boolean
value:
</p>
<DocsShow language="html">
<KTabsList
v-model="ex4activeTabId"
tabsId="tabsSlot"
ariaLabel="Coach reports"
:tabs="tabs"
>
<template #tab="{ tab, isActive }">
<KLabeledIcon
:icon="icons[tab.id]"
:label="tab.label"
:color="isActive ? $themeTokens.primary : $themeTokens.annotation"
/>
</template>
</KTabsList>
<KTabsPanel
tabsId="tabsSlot"
:activeTabId="ex4activeTabId"
/>
</DocsShow>
<DocsShowCode language="html">
<KTabsList
v-model="activeTabId"
tabsId="tabsSlot"
ariaLabel="Coach reports"
:tabs="tabs"
>
<template #tab="{ tab, isActive }">
<KLabeledIcon
:icon="icons[tab.id]"
:label="tab.label"
:color="isActive ? $themeTokens.primary : $themeTokens.annotation"
/>
</template>
</KTabsList>
</DocsShowCode>
<!-- eslint-disable -->
<!-- prettier-ignore -->
<DocsShowCode language="javascript">
icons: {
tabLessons: 'lesson',
tabLearners: 'person',
tabGroups: 'people',
},
</DocsShowCode>
<!-- eslint-enable -->
</DocsPageSection>
<DocsPageSection
title="Related"
anchor="#related"
>
<ul>
<li>
<DocsInternalLink
text="Tabs page"
href="/tabs"
/>
has an overview and usage guidance for all tab-related components
</li>
<li>
<DocsLibraryLink component="KTabsPanel" /> is a component to be used together with
<code>KTabsList</code>
</li>
<li><DocsLibraryLink component="KTabs" /> is an alternative way to implement tabs</li>
</ul>
</DocsPageSection>
</DocsPageTemplate>
</template>
<script>
export default {
data() {
return {
tabs: [
{ id: 'tabLessons', label: 'Lessons' },
{ id: 'tabLearners', label: 'Learners' },
{ id: 'tabGroups', label: 'Groups' },
],
ex1activeTabId: 'tabLessons',
ex2activeTabId: 'tabLessons',
ex3activeTabId: 'tabLessons',
ex4activeTabId: 'tabLessons',
icons: {
tabLessons: 'lesson',
tabLearners: 'person',
tabGroups: 'people',
},
};
},
};
</script>
<style lang="scss" scoped></style>