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
119 lines
3.8 KiB
Svelte
119 lines
3.8 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">
|
|
import type Modal from "bootstrap/js/dist/modal";
|
|
import { createEventDispatcher, getContext } from "svelte";
|
|
|
|
import ButtonGroup from "../components/ButtonGroup.svelte";
|
|
import ButtonToolbar from "../components/ButtonToolbar.svelte";
|
|
import { modalsKey } from "../components/context-keys";
|
|
import SelectButton from "../components/SelectButton.svelte";
|
|
import SelectOption from "../components/SelectOption.svelte";
|
|
import StickyContainer from "../components/StickyContainer.svelte";
|
|
import * as tr from "../lib/ftl";
|
|
import { noop } from "../lib/functional";
|
|
import type { ConfigListEntry, DeckOptionsState } from "./lib";
|
|
import SaveButton from "./SaveButton.svelte";
|
|
import TextInputModal from "./TextInputModal.svelte";
|
|
|
|
export let state: DeckOptionsState;
|
|
const configList = state.configList;
|
|
const dispatch = createEventDispatcher();
|
|
const dispatchPresetChange = () => dispatch("presetchange");
|
|
|
|
function configLabel(entry: ConfigListEntry): string {
|
|
const count = tr.deckConfigUsedByDecks({ decks: entry.useCount });
|
|
return `${entry.name} (${count})`;
|
|
}
|
|
|
|
function blur(event: Event): void {
|
|
state.setCurrentIndex(parseInt((event.target! as HTMLSelectElement).value));
|
|
dispatchPresetChange();
|
|
}
|
|
|
|
function onAddConfig(text: string): void {
|
|
const trimmed = text.trim();
|
|
if (trimmed.length) {
|
|
state.addConfig(trimmed);
|
|
dispatchPresetChange();
|
|
}
|
|
}
|
|
|
|
function onCloneConfig(text: string): void {
|
|
const trimmed = text.trim();
|
|
if (trimmed.length) {
|
|
state.cloneConfig(trimmed);
|
|
dispatchPresetChange();
|
|
}
|
|
}
|
|
|
|
function onRenameConfig(text: string): void {
|
|
state.setCurrentName(text);
|
|
}
|
|
|
|
const modals = getContext<Map<string, Modal>>(modalsKey);
|
|
|
|
let modalKey: string;
|
|
let modalStartingValue = "";
|
|
let modalTitle = "";
|
|
let modalSuccess: (text: string) => void = noop;
|
|
|
|
function promptToAdd() {
|
|
modalTitle = tr.deckConfigAddGroup();
|
|
modalSuccess = onAddConfig;
|
|
modalStartingValue = "";
|
|
modals.get(modalKey)!.show();
|
|
}
|
|
|
|
function promptToClone() {
|
|
modalTitle = tr.deckConfigCloneGroup();
|
|
modalSuccess = onCloneConfig;
|
|
modalStartingValue = state.getCurrentName();
|
|
modals.get(modalKey)!.show();
|
|
}
|
|
|
|
function promptToRename() {
|
|
modalTitle = tr.deckConfigRenameGroup();
|
|
modalSuccess = onRenameConfig;
|
|
modalStartingValue = state.getCurrentName();
|
|
modals.get(modalKey)!.show();
|
|
}
|
|
</script>
|
|
|
|
<TextInputModal
|
|
title={modalTitle}
|
|
prompt={tr.deckConfigNamePrompt()}
|
|
value={modalStartingValue}
|
|
onOk={modalSuccess}
|
|
bind:modalKey
|
|
/>
|
|
|
|
<StickyContainer --gutter-block="0.5rem" --sticky-borders="0 0 1px" breakpoint="sm">
|
|
<ButtonToolbar class="justify-content-between" size={2.3} wrap={false}>
|
|
<ButtonGroup class="flex-grow-1">
|
|
<SelectButton
|
|
class="flex-grow-1"
|
|
on:change={blur}
|
|
--border-left-radius="5px"
|
|
--border-right-radius="5px"
|
|
>
|
|
{#each $configList as entry}
|
|
<SelectOption value={String(entry.idx)} selected={entry.current}>
|
|
{configLabel(entry)}
|
|
</SelectOption>
|
|
{/each}
|
|
</SelectButton>
|
|
</ButtonGroup>
|
|
|
|
<SaveButton
|
|
{state}
|
|
on:add={promptToAdd}
|
|
on:clone={promptToClone}
|
|
on:rename={promptToRename}
|
|
on:remove={dispatchPresetChange}
|
|
/>
|
|
</ButtonToolbar>
|
|
</StickyContainer>
|