anki/ts/deck-options/AutoAdvance.svelte
Gustaf-C 1b0ccfd243
Change link to manual in help screen from icon to text (#2886)
* Change help screen link to manual from icon to text

* Fix auto advance manual link (dae)
2023-12-13 09:03:05 +10:00

134 lines
4.5 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 "@tslib/ftl";
import { HelpPage } from "@tslib/help-page";
import type Carousel from "bootstrap/js/dist/carousel";
import type Modal from "bootstrap/js/dist/modal";
import DynamicallySlottable from "../components/DynamicallySlottable.svelte";
import EnumSelectorRow from "../components/EnumSelectorRow.svelte";
import HelpModal from "../components/HelpModal.svelte";
import Item from "../components/Item.svelte";
import SettingTitle from "../components/SettingTitle.svelte";
import SwitchRow from "../components/SwitchRow.svelte";
import TitledContainer from "../components/TitledContainer.svelte";
import type { HelpItem } from "../components/types";
import { answerChoices } from "./choices";
import type { DeckOptionsState } from "./lib";
import SpinBoxFloatRow from "./SpinBoxFloatRow.svelte";
export let state: DeckOptionsState;
export let api: Record<string, never>;
const config = state.currentConfig;
const defaults = state.defaults;
const settings = {
secondsToShowQuestion: {
title: tr.deckConfigSecondsToShowQuestion(),
help: tr.deckConfigSecondsToShowQuestionTooltip2(),
},
secondsToShowAnswer: {
title: tr.deckConfigSecondsToShowAnswer(),
help: tr.deckConfigSecondsToShowAnswerTooltip2(),
},
waitForAudio: {
title: tr.deckConfigWaitForAudio(),
help: tr.deckConfigWaitForAudioTooltip(),
},
answerAction: {
title: tr.deckConfigAnswerAction(),
help: tr.deckConfigAnswerActionTooltip(),
},
};
const helpSections = Object.values(settings) as HelpItem[];
let modal: Modal;
let carousel: Carousel;
function openHelpModal(index: number): void {
modal.show();
carousel.to(index);
}
</script>
<TitledContainer title={tr.actionsAutoAdvance()}>
<HelpModal
title={tr.deckConfigTimerTitle()}
url={HelpPage.DeckOptions.autoAdvance}
slot="tooltip"
{helpSections}
on:mount={(e) => {
modal = e.detail.modal;
carousel = e.detail.carousel;
}}
/>
<DynamicallySlottable slotHost={Item} {api}>
<Item>
<SpinBoxFloatRow
bind:value={$config.secondsToShowQuestion}
defaultValue={defaults.secondsToShowQuestion}
step={0.1}
>
<SettingTitle
on:click={() =>
openHelpModal(
Object.keys(settings).indexOf("secondsToShowQuestion"),
)}
>
{settings.secondsToShowQuestion.title}
</SettingTitle>
</SpinBoxFloatRow>
</Item>
<Item>
<SpinBoxFloatRow
bind:value={$config.secondsToShowAnswer}
defaultValue={defaults.secondsToShowAnswer}
step={0.1}
>
<SettingTitle
on:click={() =>
openHelpModal(
Object.keys(settings).indexOf("secondsToShowAnswer"),
)}
>
{settings.secondsToShowAnswer.title}
</SettingTitle>
</SpinBoxFloatRow>
</Item>
<Item>
<SwitchRow
bind:value={$config.waitForAudio}
defaultValue={defaults.waitForAudio}
>
<SettingTitle
on:click={() =>
openHelpModal(Object.keys(settings).indexOf("waitForAudio"))}
>
{settings.waitForAudio.title}
</SettingTitle>
</SwitchRow>
</Item>
<Item>
<EnumSelectorRow
bind:value={$config.answerAction}
defaultValue={defaults.answerAction}
choices={answerChoices()}
>
<SettingTitle
on:click={() =>
openHelpModal(Object.keys(settings).indexOf("answerAction"))}
>
{settings.answerAction.title}
</SettingTitle>
</EnumSelectorRow>
</Item>
</DynamicallySlottable>
</TitledContainer>