30bbbaf00b
* Make eslint sort our imports * fix missing deps in eslint rule (dae) Caught on Linux due to the stricter sandboxing * Remove exports-last eslint rule (for now?) * Adjust browserslist settings - We use ResizeObserver which is not supported in browsers like KaiOS, Baidu or Android UC * Raise minimum iOS version 13.4 - It's the first version that supports ResizeObserver * Apply new eslint rules to sort imports
75 lines
2.4 KiB
Svelte
75 lines
2.4 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 DynamicallySlottable from "../components/DynamicallySlottable.svelte";
|
|
import Item from "../components/Item.svelte";
|
|
import * as tr from "../lib/ftl";
|
|
import type { DeckOptionsState } from "./lib";
|
|
import SpinBoxRow from "./SpinBoxRow.svelte";
|
|
import TitledContainer from "./TitledContainer.svelte";
|
|
import Warning from "./Warning.svelte";
|
|
|
|
export let state: DeckOptionsState;
|
|
export let api: Record<string, never>;
|
|
|
|
const config = state.currentConfig;
|
|
const defaults = state.defaults;
|
|
const parentLimits = state.parentLimits;
|
|
|
|
const v3Extra = state.v3Scheduler
|
|
? "\n\n" +
|
|
tr.deckConfigLimitNewBoundByReviews() +
|
|
"\n\n" +
|
|
tr.deckConfigLimitInterdayBoundByReviews() +
|
|
"\n\n" +
|
|
tr.deckConfigLimitDeckV3()
|
|
: "";
|
|
|
|
$: newCardsGreaterThanParent =
|
|
!state.v3Scheduler && $config.newPerDay > $parentLimits.newCards
|
|
? tr.deckConfigDailyLimitWillBeCapped({ cards: $parentLimits.newCards })
|
|
: "";
|
|
|
|
$: reviewsTooLow =
|
|
Math.min(9999, $config.newPerDay * 10) > $config.reviewsPerDay
|
|
? tr.deckConfigReviewsTooLow({
|
|
cards: $config.newPerDay,
|
|
expected: Math.min(9999, $config.newPerDay * 10),
|
|
})
|
|
: "";
|
|
</script>
|
|
|
|
<TitledContainer title={tr.deckConfigDailyLimits()}>
|
|
<DynamicallySlottable slotHost={Item} {api}>
|
|
<Item>
|
|
<SpinBoxRow
|
|
bind:value={$config.newPerDay}
|
|
defaultValue={defaults.newPerDay}
|
|
markdownTooltip={tr.deckConfigNewLimitTooltip() + v3Extra}
|
|
>
|
|
{tr.schedulingNewCardsday()}
|
|
</SpinBoxRow>
|
|
</Item>
|
|
|
|
<Item>
|
|
<Warning warning={newCardsGreaterThanParent} />
|
|
</Item>
|
|
|
|
<Item>
|
|
<SpinBoxRow
|
|
bind:value={$config.reviewsPerDay}
|
|
defaultValue={defaults.reviewsPerDay}
|
|
markdownTooltip={tr.deckConfigReviewLimitTooltip() + v3Extra}
|
|
>
|
|
{tr.schedulingMaximumReviewsday()}
|
|
</SpinBoxRow>
|
|
</Item>
|
|
|
|
<Item>
|
|
<Warning warning={reviewsTooLow} />
|
|
</Item>
|
|
</DynamicallySlottable>
|
|
</TitledContainer>
|