anki/ts/graphs/TodayStats.svelte
Damien Elmes c039845c16 use singleton + free functions for i18n in ts
This allows for tree shaking, and reduces the congrats page from 150k
with the old enum solution to about 80k.
2021-03-26 20:38:44 +10:00

32 lines
694 B
Svelte

<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}