Skip to content

Commit

Permalink
Add tabs components
Browse files Browse the repository at this point in the history
  • Loading branch information
MisRob committed Feb 13, 2023
1 parent 48c4567 commit 837fcab
Show file tree
Hide file tree
Showing 14 changed files with 1,733 additions and 0 deletions.
71 changes: 71 additions & 0 deletions docs/pages/ktabs.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
<template>

<DocsPageTemplate apiDocs>
<DocsPageSection title="Overview" anchor="#overview">
<p>Displays tabs:</p>

<DocsShow>
<KTabs
tabsId="coachReportsTabs"
ariaLabel="Coach reports"
:tabs="tabs"
>
<template #tabLessons>
Lessons tab content
</template>
<template #tabLearners>
Learners tab content
</template>
<template #tabGroups>
Groups tab content
</template>
</KTabs>
</DocsShow>

<p>This component is only one of more ways to implement tabs. See the <DocsInternalLink text="Tabs page" href="/tabs" /> for guidance on all tab-related components, how they compare, as well as on how to use them together with the router.</p>

</DocsPageSection>

<DocsPageSection title="Appearance" anchor="#appearance">
<p>There are several ways to adjust tabs styling. Please refer to <DocsInternalLink text="KTabsList: Appearance" href="/ktabslist#appearance" /> to see examples as <DocsLibraryLink component="KTabsList" /> accepts exactly the same styling props and slots.</p>
</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="KTabsList" /> and <DocsLibraryLink component="KTabsPanel" /> are an alternative way to implement tabs
</li>
<li>
<DocsInternalLink text="KTabsList: Appearance" href="/ktabslist#appearance" /> contains examples of tabs styling that apply to <code>KTabs</code>as well
</li>
</ul>
</DocsPageSection>
</DocsPageTemplate>

</template>


<script>
import KTabs from '../../lib/tabs/KTabs.vue';
export default {
components: { KTabs },
data() {
return {
tabs: [
{ id: 'tabLessons', label: 'Lessons' },
{ id: 'tabLearners', label: 'Learners' },
{ id: 'tabGroups', label: 'Groups' },
],
};
},
};
</script>


<style lang="scss" scoped></style>
198 changes: 198 additions & 0 deletions docs/pages/ktabslist.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,198 @@
<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>It is meant to be used together with <DocsLibraryLink component="KTabsPanel" />. See the <DocsInternalLink text="Tabs page" href="/tabs" /> for guidance on all tab-related components, how they compare, as well as on how to use them together with the router.</p>

</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 -->
<!-- prevent prettier from changing indentation -->
<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>
31 changes: 31 additions & 0 deletions docs/pages/ktabspanel.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<template>

<DocsPageTemplate apiDocs>
<DocsPageSection title="Overview" anchor="#overview">
<p>A part of a tabbed interface that displays content associated with the active tab. It is meant to be used together with <DocsLibraryLink component="KTabsList" />. See the <DocsInternalLink text="Tabs page" href="/tabs" /> for guidance on all tab-related components, how they compare, as well as on how to use them together with the router.</p>
</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="KTabsList" /> is a component to be used together with <code>KTabsPanel</code></li>
<li>
<DocsLibraryLink component="KTabs" /> is an alternative way to implement tabs
</li>
</ul>
</DocsPageSection>
</DocsPageTemplate>

</template>


<script>
export default {};
</script>


<style lang="scss" scoped></style>
Loading

0 comments on commit 837fcab

Please sign in to comment.