anki/ts/congrats/CongratsPage.svelte
2022-11-28 09:17:39 +10:00

85 lines
2.4 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 { bridgeLink } from "@tslib/bridgecommand";
import * as tr from "@tslib/ftl";
import type { Scheduler } from "@tslib/proto";
import Col from "../components/Col.svelte";
import Container from "../components/Container.svelte";
import { buildNextLearnMsg } from "./lib";
export let info: Scheduler.CongratsInfoResponse;
const congrats = tr.schedulingCongratulationsFinished();
let nextLearnMsg: string;
$: nextLearnMsg = buildNextLearnMsg(info);
const today_reviews = tr.schedulingTodayReviewLimitReached();
const today_new = tr.schedulingTodayNewLimitReached();
const unburyThem = bridgeLink("unbury", tr.schedulingUnburyThem());
const buriedMsg = tr.schedulingBuriedCardsFound({ unburyThem });
const customStudy = bridgeLink("customStudy", tr.schedulingCustomStudy());
const customStudyMsg = tr.schedulingHowToCustomStudy({
customStudy,
});
</script>
<Container --gutter-block="1rem" --gutter-inline="2px" breakpoint="sm">
<Col --col-justify="center">
<div class="congrats">
<h1>{congrats}</h1>
<p>{nextLearnMsg}</p>
{#if info.reviewRemaining}
<p>{today_reviews}</p>
{/if}
{#if info.newRemaining}
<p>{today_new}</p>
{/if}
{#if info.bridgeCommandsSupported}
{#if info.haveSchedBuried || info.haveUserBuried}
<p>
{@html buriedMsg}
</p>
{/if}
{#if !info.isFilteredDeck}
<p>
{@html customStudyMsg}
</p>
{/if}
{/if}
{#if info.deckDescription}
<div class="description">
{@html info.deckDescription}
</div>
{/if}
</div>
</Col>
</Container>
<style lang="scss">
.congrats {
margin-top: 2em;
max-width: 30em;
font-size: var(--font-size);
:global(a) {
color: var(--fg-link);
text-decoration: none;
}
}
.description {
border: 1px solid var(--border);
padding: 1em;
}
</style>