2021-04-17 16:01:53 +02:00
|
|
|
<!--
|
|
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
-->
|
|
|
|
<script lang="ts">
|
2021-04-22 19:55:26 +02:00
|
|
|
import * as tr from "lib/i18n";
|
2021-04-17 16:01:53 +02:00
|
|
|
import SpinBox from "./SpinBox.svelte";
|
2021-04-25 10:40:02 +02:00
|
|
|
import type { DeckOptionsState } from "./lib";
|
2021-04-17 16:01:53 +02:00
|
|
|
|
2021-04-25 10:40:02 +02:00
|
|
|
export let state: DeckOptionsState;
|
2021-04-17 16:01:53 +02:00
|
|
|
let config = state.currentConfig;
|
|
|
|
let defaults = state.defaults;
|
|
|
|
let parentLimits = state.parentLimits;
|
|
|
|
|
2021-05-24 11:04:00 +02:00
|
|
|
const v3Extra = state.v3Scheduler
|
|
|
|
? "\n\n" +
|
|
|
|
tr.deckConfigLimitNewBoundByReviews() +
|
|
|
|
"\n\n" +
|
|
|
|
tr.deckConfigLimitDeckV3()
|
|
|
|
: "";
|
2021-05-24 10:25:17 +02:00
|
|
|
|
2021-04-17 16:01:53 +02:00
|
|
|
$: newCardsGreaterThanParent =
|
2021-05-15 12:09:50 +02:00
|
|
|
!state.v3Scheduler && $config.newPerDay > $parentLimits.newCards
|
2021-04-25 15:03:23 +02:00
|
|
|
? tr.deckConfigDailyLimitWillBeCapped({ cards: $parentLimits.newCards })
|
2021-04-17 16:01:53 +02:00
|
|
|
: "";
|
|
|
|
|
|
|
|
$: reviewsTooLow =
|
2021-04-25 15:03:23 +02:00
|
|
|
Math.min(9999, $config.newPerDay * 10) > $config.reviewsPerDay
|
|
|
|
? tr.deckConfigReviewsTooLow({
|
|
|
|
cards: $config.newPerDay,
|
|
|
|
expected: Math.min(9999, $config.newPerDay * 10),
|
|
|
|
})
|
2021-04-17 16:01:53 +02:00
|
|
|
: "";
|
|
|
|
</script>
|
|
|
|
|
2021-05-27 22:38:31 +02:00
|
|
|
<h2>{tr.deckConfigDailyLimits()}</h2>
|
2021-04-17 16:01:53 +02:00
|
|
|
|
2021-05-27 22:38:31 +02:00
|
|
|
<div class="container">
|
2021-05-27 21:35:55 +02:00
|
|
|
<SpinBox
|
|
|
|
label={tr.schedulingNewCardsday()}
|
|
|
|
tooltip={tr.deckConfigNewLimitTooltip() + v3Extra}
|
|
|
|
min={0}
|
|
|
|
warnings={[newCardsGreaterThanParent]}
|
|
|
|
defaultValue={defaults.newPerDay}
|
|
|
|
bind:value={$config.newPerDay}
|
|
|
|
/>
|
2021-04-17 16:01:53 +02:00
|
|
|
|
2021-05-27 21:35:55 +02:00
|
|
|
<SpinBox
|
|
|
|
label={tr.schedulingMaximumReviewsday()}
|
|
|
|
tooltip={tr.deckConfigReviewLimitTooltip() + v3Extra}
|
|
|
|
min={0}
|
|
|
|
warnings={[reviewsTooLow]}
|
|
|
|
defaultValue={defaults.reviewsPerDay}
|
|
|
|
bind:value={$config.reviewsPerDay}
|
|
|
|
/>
|
|
|
|
</div>
|