ab6a68ec49
* Refactor out Placeholder from CardInfo.svelte * Add breakpoint parameter for Container - Use `Container` component inside `TitledContainer` * Build Item into Row - Use Row in DeckOptionsPage instead of just Item * Reengineer Container/Row/Col CSS * Inline Badges next to Labels when Lable spans multiple rows * Adjust margins for mobile * Implement Col component breakpoints * Move card-info to use new Container and Row components * Join StickyHeader and StickyFooter to StickyContainer * Remove default middle vertical-alignment for Badges again * Satisfy tests * Restore inline gutters in change-notetype Mapper * Add some comment to Col and Container * Fix breaking behavior in DeckOptionsPage when multi-column * Add back toolbar left padding to counter-act buttongroup right margins * Make Label in SwitchRow take more of available space
85 lines
2.5 KiB
Svelte
85 lines
2.5 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 * as tr from "../lib/ftl";
|
|
import TitledContainer from "./TitledContainer.svelte";
|
|
import SpinBoxRow from "./SpinBoxRow.svelte";
|
|
import SpinBoxFloatRow from "./SpinBoxFloatRow.svelte";
|
|
import type { DeckOptionsState } from "./lib";
|
|
import CardStateCustomizer from "./CardStateCustomizer.svelte";
|
|
|
|
export let state: DeckOptionsState;
|
|
export let api: Record<string, never>;
|
|
|
|
let config = state.currentConfig;
|
|
let defaults = state.defaults;
|
|
let cardStateCustomizer = state.cardStateCustomizer;
|
|
</script>
|
|
|
|
<TitledContainer title={tr.deckConfigAdvancedTitle()} {api}>
|
|
<SpinBoxRow
|
|
bind:value={$config.maximumReviewInterval}
|
|
defaultValue={defaults.maximumReviewInterval}
|
|
min={1}
|
|
max={365 * 100}
|
|
markdownTooltip={tr.deckConfigMaximumIntervalTooltip()}
|
|
>
|
|
{tr.schedulingMaximumInterval()}
|
|
</SpinBoxRow>
|
|
|
|
<SpinBoxFloatRow
|
|
bind:value={$config.initialEase}
|
|
defaultValue={defaults.initialEase}
|
|
min={1.31}
|
|
max={5}
|
|
markdownTooltip={tr.deckConfigStartingEaseTooltip()}
|
|
>
|
|
{tr.schedulingStartingEase()}
|
|
</SpinBoxFloatRow>
|
|
|
|
<SpinBoxFloatRow
|
|
bind:value={$config.easyMultiplier}
|
|
defaultValue={defaults.easyMultiplier}
|
|
min={1}
|
|
max={3}
|
|
markdownTooltip={tr.deckConfigEasyBonusTooltip()}
|
|
>
|
|
{tr.schedulingEasyBonus()}
|
|
</SpinBoxFloatRow>
|
|
|
|
<SpinBoxFloatRow
|
|
bind:value={$config.intervalMultiplier}
|
|
defaultValue={defaults.intervalMultiplier}
|
|
min={0.5}
|
|
max={2}
|
|
markdownTooltip={tr.deckConfigIntervalModifierTooltip()}
|
|
>
|
|
{tr.schedulingIntervalModifier()}
|
|
</SpinBoxFloatRow>
|
|
|
|
<SpinBoxFloatRow
|
|
bind:value={$config.hardMultiplier}
|
|
defaultValue={defaults.hardMultiplier}
|
|
min={0.5}
|
|
max={1.3}
|
|
markdownTooltip={tr.deckConfigHardIntervalTooltip()}
|
|
>
|
|
{tr.schedulingHardInterval()}
|
|
</SpinBoxFloatRow>
|
|
|
|
<SpinBoxFloatRow
|
|
bind:value={$config.lapseMultiplier}
|
|
defaultValue={defaults.lapseMultiplier}
|
|
max={1}
|
|
markdownTooltip={tr.deckConfigNewIntervalTooltip()}
|
|
>
|
|
{tr.schedulingNewInterval()}
|
|
</SpinBoxFloatRow>
|
|
|
|
{#if state.v3Scheduler}
|
|
<CardStateCustomizer bind:value={$cardStateCustomizer} />
|
|
{/if}
|
|
</TitledContainer>
|