anki/ts/graphs/GraphsPage.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

60 lines
1.5 KiB
Svelte

<script lang="typescript">
import "../sass/core.css";
import type { SvelteComponent } from "svelte/internal";
import { writable } from "svelte/store";
import { bridgeCommand } from "anki/bridgecommand";
import WithGraphData from "./WithGraphData.svelte";
import * as tr from "anki/i18n";
export let nightMode: boolean;
export let graphs: SvelteComponent[];
export let initialSearch: string;
export let initialDays: number;
export let controller: SvelteComponent | null;
const search = writable(initialSearch);
const days = writable(initialDays);
function browserSearch(event: CustomEvent) {
bridgeCommand(`browserSearch: ${$search} ${event.detail.query}`);
}
</script>
<style lang="scss">
div {
@media only screen and (max-width: 600px) {
font-size: 12px;
}
}
</style>
<div>
<WithGraphData
{search}
{days}
let:loading
let:sourceData
let:preferences
let:revlogRange>
{#if controller}
<svelte:component this={controller} {search} {days} {loading} />
{/if}
{#if sourceData && preferences && revlogRange}
{#each graphs as graph}
<svelte:component
this={graph}
{sourceData}
{preferences}
{revlogRange}
{nightMode}
on:search={browserSearch} />
{/each}
{/if}
</WithGraphData>
</div>