7f738c11a2
Still in the early stages, and not hooked up yet.
89 lines
3.0 KiB
Svelte
89 lines
3.0 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 type pb from "anki/backend_proto";
|
|
import * as tr from "anki/i18n";
|
|
import SpinBox from "./SpinBox.svelte";
|
|
import SpinBoxFloat from "./SpinBoxFloat.svelte";
|
|
import CheckBox from "./CheckBox.svelte";
|
|
import StepsInput from "./StepsInput.svelte";
|
|
import EnumSelector from "./EnumSelector.svelte";
|
|
|
|
export let config: pb.BackendProto.DeckConfig.Config;
|
|
export let defaults: pb.BackendProto.DeckConfig.Config;
|
|
|
|
const newOrderChoices = [
|
|
tr.schedulingShowNewCardsInOrderAdded(),
|
|
tr.schedulingShowNewCardsInRandomOrder(),
|
|
];
|
|
|
|
let stepsExceedGraduatingInterval: boolean;
|
|
$: {
|
|
const lastLearnStepInDays = config.learnSteps.length
|
|
? config.learnSteps[config.learnSteps.length - 1] / 60 / 24
|
|
: 0;
|
|
stepsExceedGraduatingInterval =
|
|
lastLearnStepInDays > config.graduatingIntervalGood;
|
|
}
|
|
|
|
let goodExceedsEasy: boolean;
|
|
$: goodExceedsEasy = config.graduatingIntervalGood > config.graduatingIntervalEasy;
|
|
</script>
|
|
|
|
<div>
|
|
<h2>New Cards</h2>
|
|
|
|
<StepsInput
|
|
label="Learning steps"
|
|
subLabel="Learning steps, separated by spaces."
|
|
warn={stepsExceedGraduatingInterval}
|
|
defaultValue={defaults.learnSteps}
|
|
value={config.learnSteps}
|
|
on:changed={(evt) => (config.learnSteps = evt.detail.value)} />
|
|
|
|
<EnumSelector
|
|
label={tr.schedulingOrder()}
|
|
subLabel=""
|
|
choices={newOrderChoices}
|
|
defaultValue={defaults.newCardOrder}
|
|
bind:value={config.newCardOrder} />
|
|
|
|
<SpinBox
|
|
label={tr.schedulingNewCardsday()}
|
|
subLabel="The maximum number of new cards to introduce in a day."
|
|
min={0}
|
|
defaultValue={defaults.newPerDay}
|
|
bind:value={config.newPerDay} />
|
|
|
|
<SpinBox
|
|
label={tr.schedulingGraduatingInterval()}
|
|
subLabel="Days to wait after answering Good on the last learning step."
|
|
warn={stepsExceedGraduatingInterval || goodExceedsEasy}
|
|
defaultValue={defaults.graduatingIntervalGood}
|
|
bind:value={config.graduatingIntervalGood} />
|
|
|
|
<SpinBox
|
|
label={tr.schedulingEasyInterval()}
|
|
subLabel="Days to wait after answering Easy on the first learning step."
|
|
warn={goodExceedsEasy}
|
|
defaultValue={defaults.graduatingIntervalEasy}
|
|
bind:value={config.graduatingIntervalEasy} />
|
|
|
|
<SpinBoxFloat
|
|
label={tr.schedulingStartingEase()}
|
|
subLabel="The default multiplier when a review is answered Good."
|
|
min={1.31}
|
|
max={5}
|
|
defaultValue={defaults.initialEase}
|
|
value={config.initialEase}
|
|
on:changed={(evt) => (config.easyMultiplier = evt.detail.value)} />
|
|
|
|
<CheckBox
|
|
label="Bury New"
|
|
subLabel={tr.schedulingBuryRelatedNewCardsUntilThe()}
|
|
defaultValue={defaults.buryNew}
|
|
bind:value={config.buryNew} />
|
|
</div>
|