c039845c16
This allows for tree shaking, and reduces the congrats page from 150k with the old enum solution to about 80k.
32 lines
694 B
Svelte
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}
|