0026506543
- prettier's formatting has changed, so files needed to be reformatted - dart is spitting out deprecation warnings like: 254 │ 2: $spacer / 2, │ ^^^^^^^^^^^ ╵ bazel-out/darwin-fastbuild/bin/ts/sass/bootstrap/_variables.scss 254:6 @import ts/sass/button_mixins.scss 2:9 @use ts/components/ColorPicker.svelte 2:5 root stylesheet DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0. Recommendation: math.div($grid-gutter-width, 2)
66 lines
2.0 KiB
Svelte
66 lines
2.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 * as tr from "lib/i18n";
|
|
import SpinBox from "./SpinBox.svelte";
|
|
import EnumSelector from "./EnumSelector.svelte";
|
|
import StepsInput from "./StepsInput.svelte";
|
|
import type { DeckOptionsState } from "./lib";
|
|
|
|
export let state: DeckOptionsState;
|
|
let config = state.currentConfig;
|
|
let defaults = state.defaults;
|
|
|
|
let stepsExceedMinimumInterval: string;
|
|
$: {
|
|
const lastRelearnStepInDays = $config.relearnSteps.length
|
|
? $config.relearnSteps[$config.relearnSteps.length - 1] / 60 / 24
|
|
: 0;
|
|
stepsExceedMinimumInterval =
|
|
lastRelearnStepInDays > $config.minimumLapseInterval
|
|
? tr.deckConfigRelearningStepsAboveMinimumInterval()
|
|
: "";
|
|
}
|
|
|
|
const leechChoices = [tr.actionsSuspendCard(), tr.schedulingTagOnly()];
|
|
</script>
|
|
|
|
<div>
|
|
<h2>{tr.schedulingLapses()}</h2>
|
|
|
|
<StepsInput
|
|
label={tr.deckConfigRelearningSteps()}
|
|
tooltip={tr.deckConfigRelearningStepsTooltip()}
|
|
defaultValue={defaults.relearnSteps}
|
|
value={$config.relearnSteps}
|
|
on:changed={(evt) => ($config.relearnSteps = evt.detail.value)}
|
|
/>
|
|
|
|
<SpinBox
|
|
label={tr.schedulingMinimumInterval()}
|
|
tooltip={tr.deckConfigMinimumIntervalTooltip()}
|
|
warnings={[stepsExceedMinimumInterval]}
|
|
min={1}
|
|
defaultValue={defaults.minimumLapseInterval}
|
|
bind:value={$config.minimumLapseInterval}
|
|
/>
|
|
|
|
<SpinBox
|
|
label={tr.schedulingLeechThreshold()}
|
|
tooltip={tr.deckConfigLeechThresholdTooltip()}
|
|
min={1}
|
|
defaultValue={defaults.leechThreshold}
|
|
bind:value={$config.leechThreshold}
|
|
/>
|
|
|
|
<EnumSelector
|
|
label={tr.schedulingLeechAction()}
|
|
tooltip={tr.deckConfigLeechActionTooltip()}
|
|
choices={leechChoices}
|
|
defaultValue={defaults.leechAction}
|
|
bind:value={$config.leechAction}
|
|
/>
|
|
</div>
|