ee9af871b7
* Include base styles in graphs-base.scss This includes the custom scrollbar styles, which were missing on the stats page. * Set responsive grid layout on GraphsPage, use TitledContainer component + use global button style, tweak input appearance and other small changes * Improve margins on GraphsPage
106 lines
3.6 KiB
Svelte
106 lines
3.6 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 type Carousel from "bootstrap/js/dist/carousel";
|
|
import type Modal from "bootstrap/js/dist/modal";
|
|
|
|
import DynamicallySlottable from "../components/DynamicallySlottable.svelte";
|
|
import Item from "../components/Item.svelte";
|
|
import TitledContainer from "../components/TitledContainer.svelte";
|
|
import * as tr from "../lib/ftl";
|
|
import HelpModal from "./HelpModal.svelte";
|
|
import type { DeckOptionsState } from "./lib";
|
|
import SettingTitle from "./SettingTitle.svelte";
|
|
import SwitchRow from "./SwitchRow.svelte";
|
|
import type { DeckOption } from "./types";
|
|
|
|
export let state: DeckOptionsState;
|
|
export let api: Record<string, never>;
|
|
|
|
const config = state.currentConfig;
|
|
const defaults = state.defaults;
|
|
|
|
const settings = {
|
|
buryNewSiblings: {
|
|
title: tr.deckConfigBuryNewSiblings(),
|
|
help: tr.deckConfigBuryNewTooltip(),
|
|
},
|
|
buryReviewSiblings: {
|
|
title: tr.deckConfigBuryReviewSiblings(),
|
|
help: tr.deckConfigBuryReviewTooltip(),
|
|
},
|
|
buryInterdayLearningSiblings: {
|
|
title: tr.deckConfigBuryInterdayLearningSiblings(),
|
|
help: tr.deckConfigBuryInterdayLearningTooltip(),
|
|
},
|
|
};
|
|
const helpSections = Object.values(settings) as DeckOption[];
|
|
|
|
let modal: Modal;
|
|
let carousel: Carousel;
|
|
|
|
function openHelpModal(index: number): void {
|
|
modal.show();
|
|
carousel.to(index);
|
|
}
|
|
</script>
|
|
|
|
<TitledContainer title={tr.deckConfigBuryTitle()}>
|
|
<HelpModal
|
|
title={tr.deckConfigBuryTitle()}
|
|
url="https://docs.ankiweb.net/studying.html#siblings-and-burying"
|
|
slot="tooltip"
|
|
{helpSections}
|
|
on:mount={(e) => {
|
|
modal = e.detail.modal;
|
|
carousel = e.detail.carousel;
|
|
}}
|
|
/>
|
|
<DynamicallySlottable slotHost={Item} {api}>
|
|
<Item>
|
|
<SwitchRow bind:value={$config.buryNew} defaultValue={defaults.buryNew}>
|
|
<SettingTitle
|
|
on:click={() =>
|
|
openHelpModal(Object.keys(settings).indexOf("buryNewSiblings"))}
|
|
>{settings.buryNewSiblings.title}</SettingTitle
|
|
>
|
|
</SwitchRow>
|
|
</Item>
|
|
|
|
<Item>
|
|
<SwitchRow
|
|
bind:value={$config.buryReviews}
|
|
defaultValue={defaults.buryReviews}
|
|
>
|
|
<SettingTitle
|
|
on:click={() =>
|
|
openHelpModal(
|
|
Object.keys(settings).indexOf("buryReviewSiblings"),
|
|
)}>{settings.buryReviewSiblings.title}</SettingTitle
|
|
>
|
|
</SwitchRow>
|
|
</Item>
|
|
|
|
{#if state.v3Scheduler}
|
|
<Item>
|
|
<SwitchRow
|
|
bind:value={$config.buryInterdayLearning}
|
|
defaultValue={defaults.buryInterdayLearning}
|
|
>
|
|
<SettingTitle
|
|
on:click={() =>
|
|
openHelpModal(
|
|
Object.keys(settings).indexOf(
|
|
"buryInterdayLearningSiblings",
|
|
),
|
|
)}
|
|
>{settings.buryInterdayLearningSiblings.title}</SettingTitle
|
|
>
|
|
</SwitchRow>
|
|
</Item>
|
|
{/if}
|
|
</DynamicallySlottable>
|
|
</TitledContainer>
|