anki/ts/graphs/TodayStats.svelte
2021-04-13 19:02:41 +10:00

36 lines
826 B
Svelte

<!--
Copyright: Ankitects Pty Ltd and contributors
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
-->
<script lang="typescript">
import type pb from "anki/backend_proto";
import Graph from "./Graph.svelte";
import type { TodayData } from "./today";
import { gatherData } from "./today";
export let sourceData: pb.BackendProto.GraphsOut | null = null;
let todayData: TodayData | null = null;
$: if (sourceData) {
todayData = gatherData(sourceData);
}
</script>
<style lang="scss">
.legend {
text-align: center;
}
</style>
{#if todayData}
<Graph title={todayData.title}>
<div class="legend">
{#each todayData.lines as line}
<div>{line}</div>
{/each}
</div>
</Graph>
{/if}