2021-04-26 15:34:33 +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">
|
2022-10-25 08:18:50 +02:00
|
|
|
import type Carousel from "bootstrap/js/dist/carousel";
|
|
|
|
import type Modal from "bootstrap/js/dist/modal";
|
|
|
|
|
2022-02-03 05:52:11 +01:00
|
|
|
import DynamicallySlottable from "../components/DynamicallySlottable.svelte";
|
|
|
|
import Item from "../components/Item.svelte";
|
2022-11-02 09:23:08 +01:00
|
|
|
import TitledContainer from "../components/TitledContainer.svelte";
|
2022-02-04 09:36:34 +01:00
|
|
|
import * as tr from "../lib/ftl";
|
|
|
|
import CardStateCustomizer from "./CardStateCustomizer.svelte";
|
2022-10-25 08:18:50 +02:00
|
|
|
import HelpModal from "./HelpModal.svelte";
|
2022-02-04 09:36:34 +01:00
|
|
|
import type { DeckOptionsState } from "./lib";
|
2022-10-25 08:18:50 +02:00
|
|
|
import SettingTitle from "./SettingTitle.svelte";
|
2022-02-04 09:36:34 +01:00
|
|
|
import SpinBoxFloatRow from "./SpinBoxFloatRow.svelte";
|
|
|
|
import SpinBoxRow from "./SpinBoxRow.svelte";
|
2022-10-25 08:18:50 +02:00
|
|
|
import type { DeckOption } from "./types";
|
2021-04-26 15:34:33 +02:00
|
|
|
|
|
|
|
export let state: DeckOptionsState;
|
2021-05-29 17:32:12 +02:00
|
|
|
export let api: Record<string, never>;
|
|
|
|
|
2022-02-04 09:36:34 +01:00
|
|
|
const config = state.currentConfig;
|
|
|
|
const defaults = state.defaults;
|
|
|
|
const cardStateCustomizer = state.cardStateCustomizer;
|
2022-10-25 08:18:50 +02:00
|
|
|
|
|
|
|
const settings = {
|
|
|
|
maximumInterval: {
|
|
|
|
title: tr.schedulingMaximumInterval(),
|
|
|
|
help: tr.deckConfigMaximumIntervalTooltip(),
|
|
|
|
url: "https://docs.ankiweb.net/deck-options.html#maximum-interval",
|
|
|
|
},
|
|
|
|
startingEase: {
|
|
|
|
title: tr.schedulingStartingEase(),
|
|
|
|
help: tr.deckConfigStartingEaseTooltip(),
|
|
|
|
url: "https://docs.ankiweb.net/deck-options.html#starting-ease",
|
|
|
|
},
|
|
|
|
easyBonus: {
|
|
|
|
title: tr.schedulingEasyBonus(),
|
|
|
|
help: tr.deckConfigEasyBonusTooltip(),
|
|
|
|
url: "https://docs.ankiweb.net/deck-options.html#easy-bonus",
|
|
|
|
},
|
|
|
|
intervalModifier: {
|
|
|
|
title: tr.schedulingIntervalModifier(),
|
|
|
|
help: tr.deckConfigIntervalModifierTooltip(),
|
|
|
|
url: "https://docs.ankiweb.net/deck-options.html#interval-modifier",
|
|
|
|
},
|
|
|
|
hardInterval: {
|
|
|
|
title: tr.schedulingHardInterval(),
|
|
|
|
help: tr.deckConfigHardIntervalTooltip(),
|
|
|
|
url: "https://docs.ankiweb.net/deck-options.html#hard-interval",
|
|
|
|
},
|
|
|
|
newInterval: {
|
|
|
|
title: tr.schedulingNewInterval(),
|
|
|
|
help: tr.deckConfigNewIntervalTooltip(),
|
|
|
|
url: "https://docs.ankiweb.net/deck-options.html#new-interval",
|
|
|
|
},
|
|
|
|
customScheduling: {
|
|
|
|
title: tr.deckConfigCustomScheduling(),
|
|
|
|
help: tr.deckConfigCustomSchedulingTooltip(),
|
|
|
|
url: "https://faqs.ankiweb.net/the-2021-scheduler.html#add-ons-and-custom-scheduling",
|
|
|
|
},
|
|
|
|
};
|
|
|
|
const helpSections = Object.values(settings) as DeckOption[];
|
|
|
|
|
|
|
|
let modal: Modal;
|
|
|
|
let carousel: Carousel;
|
|
|
|
|
|
|
|
function openHelpModal(index: number): void {
|
|
|
|
modal.show();
|
|
|
|
carousel.to(index);
|
|
|
|
}
|
2021-04-26 15:34:33 +02:00
|
|
|
</script>
|
|
|
|
|
2022-02-03 05:52:11 +01:00
|
|
|
<TitledContainer title={tr.deckConfigAdvancedTitle()}>
|
2022-10-25 08:18:50 +02:00
|
|
|
<HelpModal
|
|
|
|
title={tr.deckConfigAdvancedTitle()}
|
|
|
|
url="https://docs.ankiweb.net/deck-options.html#advanced"
|
|
|
|
slot="tooltip"
|
|
|
|
{helpSections}
|
|
|
|
on:mount={(e) => {
|
|
|
|
modal = e.detail.modal;
|
|
|
|
carousel = e.detail.carousel;
|
|
|
|
}}
|
|
|
|
/>
|
2022-02-03 05:52:11 +01:00
|
|
|
<DynamicallySlottable slotHost={Item} {api}>
|
|
|
|
<Item>
|
|
|
|
<SpinBoxRow
|
|
|
|
bind:value={$config.maximumReviewInterval}
|
|
|
|
defaultValue={defaults.maximumReviewInterval}
|
|
|
|
min={1}
|
|
|
|
max={365 * 100}
|
|
|
|
>
|
2022-10-25 08:18:50 +02:00
|
|
|
<SettingTitle
|
|
|
|
on:click={() =>
|
|
|
|
openHelpModal(Object.keys(settings).indexOf("maximumInterval"))}
|
|
|
|
>{settings.maximumInterval.title}</SettingTitle
|
|
|
|
>
|
2022-02-03 05:52:11 +01:00
|
|
|
</SpinBoxRow>
|
|
|
|
</Item>
|
2021-04-26 15:34:33 +02:00
|
|
|
|
2022-02-03 05:52:11 +01:00
|
|
|
<Item>
|
|
|
|
<SpinBoxFloatRow
|
|
|
|
bind:value={$config.initialEase}
|
|
|
|
defaultValue={defaults.initialEase}
|
|
|
|
min={1.31}
|
|
|
|
max={5}
|
|
|
|
>
|
2022-10-25 08:18:50 +02:00
|
|
|
<SettingTitle
|
|
|
|
on:click={() =>
|
|
|
|
openHelpModal(Object.keys(settings).indexOf("startingEase"))}
|
|
|
|
>{settings.startingEase.title}</SettingTitle
|
|
|
|
>
|
2022-02-03 05:52:11 +01:00
|
|
|
</SpinBoxFloatRow>
|
|
|
|
</Item>
|
2021-04-26 15:34:33 +02:00
|
|
|
|
2022-02-03 05:52:11 +01:00
|
|
|
<Item>
|
|
|
|
<SpinBoxFloatRow
|
|
|
|
bind:value={$config.easyMultiplier}
|
|
|
|
defaultValue={defaults.easyMultiplier}
|
|
|
|
min={1}
|
2022-05-26 04:51:51 +02:00
|
|
|
max={5}
|
2022-02-03 05:52:11 +01:00
|
|
|
>
|
2022-10-25 08:18:50 +02:00
|
|
|
<SettingTitle
|
|
|
|
on:click={() =>
|
|
|
|
openHelpModal(Object.keys(settings).indexOf("easyBonus"))}
|
|
|
|
>{settings.easyBonus.title}</SettingTitle
|
|
|
|
>
|
2022-02-03 05:52:11 +01:00
|
|
|
</SpinBoxFloatRow>
|
|
|
|
</Item>
|
2021-04-26 15:34:33 +02:00
|
|
|
|
2022-02-03 05:52:11 +01:00
|
|
|
<Item>
|
|
|
|
<SpinBoxFloatRow
|
|
|
|
bind:value={$config.intervalMultiplier}
|
|
|
|
defaultValue={defaults.intervalMultiplier}
|
|
|
|
min={0.5}
|
|
|
|
max={2}
|
|
|
|
>
|
2022-10-25 08:18:50 +02:00
|
|
|
<SettingTitle
|
|
|
|
on:click={() =>
|
|
|
|
openHelpModal(
|
|
|
|
Object.keys(settings).indexOf("intervalModifier"),
|
|
|
|
)}>{settings.intervalModifier.title}</SettingTitle
|
|
|
|
>
|
2022-02-03 05:52:11 +01:00
|
|
|
</SpinBoxFloatRow>
|
|
|
|
</Item>
|
2021-04-26 15:34:33 +02:00
|
|
|
|
2022-02-03 05:52:11 +01:00
|
|
|
<Item>
|
|
|
|
<SpinBoxFloatRow
|
|
|
|
bind:value={$config.hardMultiplier}
|
|
|
|
defaultValue={defaults.hardMultiplier}
|
|
|
|
min={0.5}
|
|
|
|
max={1.3}
|
|
|
|
>
|
2022-10-25 08:18:50 +02:00
|
|
|
<SettingTitle
|
|
|
|
on:click={() =>
|
|
|
|
openHelpModal(Object.keys(settings).indexOf("hardInterval"))}
|
|
|
|
>{settings.hardInterval.title}</SettingTitle
|
|
|
|
>
|
2022-02-03 05:52:11 +01:00
|
|
|
</SpinBoxFloatRow>
|
|
|
|
</Item>
|
2021-04-26 15:34:33 +02:00
|
|
|
|
2022-02-03 05:52:11 +01:00
|
|
|
<Item>
|
|
|
|
<SpinBoxFloatRow
|
|
|
|
bind:value={$config.lapseMultiplier}
|
|
|
|
defaultValue={defaults.lapseMultiplier}
|
|
|
|
max={1}
|
|
|
|
>
|
2022-10-25 08:18:50 +02:00
|
|
|
<SettingTitle
|
|
|
|
on:click={() =>
|
|
|
|
openHelpModal(Object.keys(settings).indexOf("newInterval"))}
|
|
|
|
>{settings.newInterval.title}</SettingTitle
|
|
|
|
>
|
2022-02-03 05:52:11 +01:00
|
|
|
</SpinBoxFloatRow>
|
|
|
|
</Item>
|
2021-06-24 06:38:10 +02:00
|
|
|
|
2022-02-03 05:52:11 +01:00
|
|
|
{#if state.v3Scheduler}
|
|
|
|
<Item>
|
2022-10-25 08:18:50 +02:00
|
|
|
<CardStateCustomizer
|
|
|
|
title={settings.customScheduling.title}
|
|
|
|
on:click={() =>
|
|
|
|
openHelpModal(
|
|
|
|
Object.keys(settings).indexOf("customScheduling"),
|
|
|
|
)}
|
|
|
|
bind:value={$cardStateCustomizer}
|
|
|
|
/>
|
2022-02-03 05:52:11 +01:00
|
|
|
</Item>
|
|
|
|
{/if}
|
|
|
|
</DynamicallySlottable>
|
2021-05-27 23:19:05 +02:00
|
|
|
</TitledContainer>
|