36 lines
1.1 KiB
Svelte
36 lines
1.1 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 TitledContainer from "./TitledContainer.svelte";
|
|
import SpinBoxRow from "./SpinBoxRow.svelte";
|
|
import CheckBoxRow from "./CheckBoxRow.svelte";
|
|
import type { DeckOptionsState } from "./lib";
|
|
|
|
export let state: DeckOptionsState;
|
|
let config = state.currentConfig;
|
|
let defaults = state.defaults;
|
|
</script>
|
|
|
|
<TitledContainer title={tr.deckConfigTimerTitle()}>
|
|
<SpinBoxRow
|
|
bind:value={$config.capAnswerTimeToSecs}
|
|
defaultValue={defaults.capAnswerTimeToSecs}
|
|
min={30}
|
|
max={600}
|
|
markdownTooltip={tr.deckConfigMaximumAnswerSecsTooltip()}
|
|
>
|
|
{tr.deckConfigMaximumAnswerSecs()}
|
|
</SpinBoxRow>
|
|
|
|
<CheckBoxRow
|
|
bind:value={$config.showTimer}
|
|
defaultValue={defaults.showTimer}
|
|
markdownTooltip={tr.deckConfigShowAnswerTimerTooltip()}
|
|
>
|
|
{tr.schedulingShowAnswerTimer()}
|
|
</CheckBoxRow>
|
|
</TitledContainer>
|