anki/ts/card-info/CardInfo.svelte

58 lines
1.7 KiB
Svelte
Raw Normal View History

<!--
Copyright: Ankitects Pty Ltd and contributors
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
-->
<script lang="ts">
import Container from "../components/Container.svelte";
import Row from "../components/Row.svelte";
import type { Stats } from "../lib/proto";
import { Cards, stats as statsService } from "../lib/proto";
import CardInfoPlaceholder from "./CardInfoPlaceholder.svelte";
import CardStats from "./CardStats.svelte";
import Revlog from "./Revlog.svelte";
2021-10-18 09:04:49 +02:00
export let includeRevlog: boolean = true;
2021-10-17 20:29:32 +02:00
2021-10-18 09:29:33 +02:00
let stats: Stats.CardStatsResponse | null = null;
let revlog: Stats.CardStatsResponse.StatsRevlogEntry[] | null = null;
2021-10-17 20:29:32 +02:00
export async function updateStats(cardId: number | null): Promise<void> {
2021-10-18 09:12:10 +02:00
const requestedCardId = cardId;
if (cardId === null) {
stats = null;
revlog = null;
return;
}
const cardStats = await statsService.cardStats(
Cards.CardId.create({ cid: requestedCardId }),
);
/* Skip if another update has been triggered in the meantime. */
if (requestedCardId === cardId) {
stats = cardStats;
if (includeRevlog) {
revlog = stats.revlog as Stats.CardStatsResponse.StatsRevlogEntry[];
}
}
}
</script>
<Container breakpoint="md" --gutter-inline="1rem" --gutter-block="0.5rem">
{#if stats}
<Row>
2021-10-17 20:29:32 +02:00
<CardStats {stats} />
</Row>
2021-10-17 20:29:32 +02:00
{#if revlog}
<Row>
<Revlog {revlog} />
</Row>
{/if}
{:else}
<CardInfoPlaceholder />
{/if}
</Container>