anki/ts/deck-options/TabbedValue.svelte
Derek Dang 1cac2dc85f
Address a11y warning for TabbedValue (#2582)
* Address a11y warning for TabbedValue

* Make the tab underline straight (dae)
2023-07-18 22:49:02 +10:00

83 lines
2.3 KiB
Svelte

<!--
Copyright: Ankitects Pty Ltd and contributors
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
-->
<script lang="ts">
/* This component accepts an array of tabs and a value. Whenever a tab is
activated, its last used value is applied to its provided setter and the
component's value. Whenever it's deactivated, its setter is called with its
disabledValue. */
import type { ValueTab } from "./lib";
export let tabs: ValueTab[];
export let value: number;
let activeTab = lastSetTab();
$: onTabChanged(activeTab);
$: value = tabs[activeTab].value ?? 0;
$: tabs[activeTab].setValue(value);
function lastSetTab(): number {
const revIdx = tabs
.slice()
.reverse()
.findIndex((tab) => tab.value !== null);
return revIdx === -1 ? 0 : tabs.length - revIdx - 1;
}
function onTabChanged(newTab: number) {
for (const [idx, tab] of tabs.entries()) {
if (newTab === idx) {
tab.enable(value);
} else if (newTab > idx) {
/* antecedent tabs are obscured, so we can preserve their original values */
tab.reset();
} else {
/* but subsequent tabs would obscure, so they must be nulled */
tab.disable();
}
}
}
const handleClick = (tabValue: number) => () => (activeTab = tabValue);
</script>
<ul>
{#each tabs as tab, idx}
<li class:active={activeTab === idx}>
<button on:click={handleClick(idx)}>{tab.title}</button>
</li>
{/each}
</ul>
<style lang="scss">
ul {
width: 100%;
display: flex;
flex-wrap: nowrap;
justify-content: space-between;
padding-inline: 0;
margin-bottom: 0.25rem;
list-style: none;
}
button {
display: block;
white-space: nowrap;
cursor: pointer;
color: var(--fg-subtle);
border: none;
background-color: transparent;
}
li.active > button {
color: var(--fg);
border-bottom: 4px solid var(--border-focus);
margin-bottom: -2px;
border-radius: 0;
}
button:hover {
color: var(--fg);
}
</style>