chore: lift components folder

This commit is contained in:
Eric Liu 2020-07-19 09:06:08 -07:00
commit 2200b29b92
301 changed files with 57 additions and 76 deletions

122
src/Tabs/Tabs.svelte Normal file
View file

@ -0,0 +1,122 @@
<script>
export let iconDescription = "Show menu options";
export let role = "navigation";
export let selected = 0;
export let triggerHref = "#";
export let type = "default";
import { createEventDispatcher, afterUpdate, setContext } from "svelte";
import { writable, derived } from "svelte/store";
import ChevronDownGlyph from "carbon-icons-svelte/lib/ChevronDownGlyph";
const dispatch = createEventDispatcher();
let dropdownHidden = true;
let tabs = writable([]);
let tabsById = derived(tabs, _ =>
_.reduce((a, c) => ({ ...a, [c.id]: c }), {})
);
let currentIndex = selected;
let selectedTab = writable(undefined);
let content = writable([]);
let selectedContent = writable(undefined);
setContext("Tabs", {
selectedTab,
selectedContent,
add: data => {
tabs.update(_ => [..._, { ...data, index: _.length }]);
},
addContent: data => {
content.update(_ => [..._, { ...data, index: _.length }]);
},
update: id => {
currentIndex = $tabsById[id].index;
},
change: direction => {
let index = currentIndex + direction;
if (index < 0) {
index = $tabs.length - 1;
} else if (index >= $tabs.length) {
index = 0;
}
let disabled = $tabs[index].disabled;
while (disabled) {
index = index + direction;
if (index < 0) {
index = $tabs.length - 1;
} else if (index >= $tabs.length) {
index = 0;
}
disabled = $tabs[index].disabled;
}
currentIndex = index;
}
});
afterUpdate(() => {
selected = currentIndex;
});
$: currentIndex = selected;
$: currentTab = $tabs[currentIndex] || undefined;
$: currentContent = $content[currentIndex] || undefined;
$: {
dispatch("change", currentIndex);
if (currentTab) {
selectedTab.set(currentTab.id);
}
if (currentContent) {
selectedContent.set(currentContent.id);
}
}
$: if ($selectedTab) {
dropdownHidden = true;
}
</script>
<div
{role}
class:bx--tabs={true}
class:bx--tabs--container={type === 'container'}
{...$$restProps}>
<div
role="listbox"
tabindex="0"
class:bx--tabs-trigger={true}
aria-label={$$props['aria-label'] || 'listbox'}
on:click={() => {
dropdownHidden = !dropdownHidden;
}}
on:keypress
on:keypress={() => {
dropdownHidden = !dropdownHidden;
}}>
<a
tabindex="-1"
class:bx--tabs-trigger-text={true}
href={triggerHref}
on:click
on:click={() => {
dropdownHidden = !dropdownHidden;
}}>
{#if currentTab}{currentTab.label}{/if}
</a>
<ChevronDownGlyph aria-hidden="true" title={iconDescription} />
</div>
<ul
role="tablist"
class:bx--tabs__nav={true}
class:bx--tabs__nav--hidden={dropdownHidden}>
<slot />
</ul>
</div>
<slot name="content" />