53 lines
1.7 KiB
Svelte
53 lines
1.7 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 marked from "marked";
|
|
import TitledContainer from "./TitledContainer.svelte";
|
|
import Row from "./Row.svelte";
|
|
import Col from "./Col.svelte";
|
|
import HelpPopup from "./HelpPopup.svelte";
|
|
import CheckBox from "./CheckBox.svelte";
|
|
import RevertButton from "./RevertButton.svelte";
|
|
import type { DeckOptionsState } from "./lib";
|
|
|
|
export let state: DeckOptionsState;
|
|
let config = state.currentConfig;
|
|
let defaults = state.defaults;
|
|
</script>
|
|
|
|
<TitledContainer title={tr.deckConfigAudioTitle()}>
|
|
<Row>
|
|
<Col>
|
|
<CheckBox bind:value={$config.disableAutoplay}>
|
|
{tr.deckConfigDisableAutoplay()}
|
|
</CheckBox>
|
|
</Col>
|
|
<Col grow={false}>
|
|
<RevertButton
|
|
defaultValue={defaults.disableAutoplay}
|
|
bind:value={$config.disableAutoplay}
|
|
/>
|
|
</Col>
|
|
</Row>
|
|
|
|
<Row>
|
|
<Col>
|
|
<CheckBox bind:value={$config.skipQuestionWhenReplayingAnswer}>
|
|
{tr.schedulingAlwaysIncludeQuestionSideWhenReplaying()}
|
|
<HelpPopup
|
|
html={marked(tr.deckConfigAlwaysIncludeQuestionAudioTooltip())}
|
|
/>
|
|
</CheckBox>
|
|
</Col>
|
|
<Col grow={false}>
|
|
<RevertButton
|
|
defaultValue={defaults.skipQuestionWhenReplayingAnswer}
|
|
bind:value={$config.skipQuestionWhenReplayingAnswer}
|
|
/>
|
|
</Col>
|
|
</Row>
|
|
</TitledContainer>
|