cc929687ae
* Add deck-specific limits to DeckNormal * Add deck-specific limits to schema11 * Add DeckLimitsDialog * deck_limits_qt6.py needs to be a symlink * Clear duplicate deck setting keys on downgrade * Export deck limits when exporting with scheduling * Revert "deck_limits_qt6.py needs to be a symlink" This reverts commit 4ee7be1e10c4e8c49bb20de3bf45ac18b5e2d4f6. * Revert "Add DeckLimitsDialog" This reverts commit eb0e2a62d33df0b518d9204a27b09e97966ce82a. * Add day limits to DeckNormal * Add deck and day limits mock to deck options * Revert "Add deck and day limits mock to deck options" This reverts commit 0775814989e8cb486483d06727b1af266bb4513a. * Add Tabs component for daily limits * Add borders to tabs component * Revert "Add borders to tabs component" This reverts commit aaaf5538932540f944d92725c63bb04cfe97ea14. * Implement tabbed limits properly * Add comment to translations * Update rslib/src/decks/limits.rs Co-authored-by: Damien Elmes <dae@users.noreply.github.com> * Fix camel case in clear_other_duplicates() * day_limit → current_limit * Also import day limits * Remember last used day limits * Add day limits to schema 11 * Tweak comment (dae) * Exclude day limit in export (dae) * Tweak tab wording (dae) * Update preset limits on preset change * Explain tabs in tooltip (dae) * Omit deck and today limits if v2 is enabled * Preserve deck limit when switching to today limit
84 lines
2.3 KiB
Svelte
84 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={activeTab === idx ? "active" : ""}>
|
|
<span on:click={handleClick(idx)}>{tab.title}</span>
|
|
</li>
|
|
{/each}
|
|
</ul>
|
|
|
|
<style lang="scss">
|
|
ul {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
padding-left: 0;
|
|
margin-top: 1rem;
|
|
margin-bottom: 0.5rem;
|
|
list-style: none;
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
|
|
span {
|
|
border: 1px solid transparent;
|
|
border-top-left-radius: 0.25rem;
|
|
border-top-right-radius: 0.25rem;
|
|
display: block;
|
|
padding: 0.25rem 1rem;
|
|
cursor: pointer;
|
|
margin: 0 8px -1px 0;
|
|
color: var(--disabled);
|
|
}
|
|
|
|
li.active > span {
|
|
border-color: var(--border) var(--border) var(--window-bg);
|
|
color: var(--text-fg);
|
|
}
|
|
|
|
span:hover {
|
|
color: var(--text-fg);
|
|
}
|
|
</style>
|