09629e4e4a
+ cap maximum recommended review limit to 9999, since we don't allow the user to set it higher
54 lines
1.7 KiB
Svelte
54 lines
1.7 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/i18n";
|
|
import SpinBox from "./SpinBox.svelte";
|
|
import type { DeckOptionsState } from "./lib";
|
|
|
|
export let state: DeckOptionsState;
|
|
let config = state.currentConfig;
|
|
let defaults = state.defaults;
|
|
let parentLimits = state.parentLimits;
|
|
|
|
$: newCardsGreaterThanParent =
|
|
$config.newPerDay > $parentLimits.newCards
|
|
? tr.deckConfigDailyLimitWillBeCapped({ cards: $parentLimits.newCards })
|
|
: "";
|
|
|
|
// with the v2 scheduler, this no longer applies
|
|
// $: reviewsGreaterThanParent =
|
|
// $config.reviewsPerDay > $parentLimits.reviews
|
|
// ? `Daily limit will be capped to parent limit of ${$parentLimits.reviews}.`
|
|
// : "";
|
|
|
|
$: reviewsTooLow =
|
|
Math.min(9999, $config.newPerDay * 10) > $config.reviewsPerDay
|
|
? tr.deckConfigReviewsTooLow({
|
|
cards: $config.newPerDay,
|
|
expected: Math.min(9999, $config.newPerDay * 10),
|
|
})
|
|
: "";
|
|
</script>
|
|
|
|
<div>
|
|
<h2>Daily Limits</h2>
|
|
|
|
<SpinBox
|
|
label={tr.schedulingNewCardsday()}
|
|
tooltip="The maximum number of new cards to introduce in a day."
|
|
min={0}
|
|
warnings={[newCardsGreaterThanParent]}
|
|
defaultValue={defaults.newPerDay}
|
|
bind:value={$config.newPerDay} />
|
|
|
|
<SpinBox
|
|
label={tr.schedulingMaximumReviewsday()}
|
|
tooltip="The maximum number of reviews cards to show in a day."
|
|
min={0}
|
|
warnings={[reviewsTooLow]}
|
|
defaultValue={defaults.reviewsPerDay}
|
|
bind:value={$config.reviewsPerDay} />
|
|
</div>
|