13519a929c
- Daily limits are no longer inherited - each deck limits its own cards, and the selected deck enforces a maximum limit. - Fetching of review cards now uses a single query, and sorts in advance. In collections with a large number of overdue cards and decks, this is faster than iterating over each deck in turn. - Include interday learning count in review count & review limit, and allow them to be buried. - Warn when parent review limit is lower than child deck in deck options. - Cap the new card limit to the review limit. - Add option to control whether new card fetching short-circuits.
46 lines
1.4 KiB
Svelte
46 lines
1.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 * 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 =
|
|
!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>
|
|
|
|
<h2>{tr.deckConfigDailyLimits()}</h2>
|
|
|
|
<SpinBox
|
|
label={tr.schedulingNewCardsday()}
|
|
tooltip={tr.deckConfigNewLimitTooltip()}
|
|
min={0}
|
|
warnings={[newCardsGreaterThanParent]}
|
|
defaultValue={defaults.newPerDay}
|
|
bind:value={$config.newPerDay} />
|
|
|
|
<SpinBox
|
|
label={tr.schedulingMaximumReviewsday()}
|
|
tooltip={tr.deckConfigReviewLimitTooltip()}
|
|
min={0}
|
|
warnings={[reviewsTooLow]}
|
|
defaultValue={defaults.reviewsPerDay}
|
|
bind:value={$config.reviewsPerDay} />
|