anki/ts/graphs/EaseGraph.svelte

44 lines
1.4 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 { createEventDispatcher } from "svelte";
import * as tr from "../lib/ftl";
import type { Stats } from "../lib/proto";
import type { PreferenceStore } from "../sveltelib/preferences";
import { gatherData, prepareData } from "./ease";
import Graph from "./Graph.svelte";
import type { SearchEventMap, TableDatum } from "./graph-helpers";
import type { HistogramData } from "./histogram-graph";
import HistogramGraph from "./HistogramGraph.svelte";
import TableData from "./TableData.svelte";
2020-06-23 12:43:19 +02:00
export let sourceData: Stats.GraphsResponse | null = null;
export let preferences: PreferenceStore<Stats.GraphPreferences>;
2020-06-23 12:43:19 +02:00
const dispatch = createEventDispatcher<SearchEventMap>();
2020-06-23 12:43:19 +02:00
let histogramData = null as HistogramData | null;
2020-08-21 04:58:02 +02:00
let tableData: TableDatum[] = [];
const { browserLinksSupported } = preferences;
2020-06-23 12:43:19 +02:00
$: if (sourceData) {
2021-01-25 17:36:04 +01:00
[histogramData, tableData] = prepareData(
gatherData(sourceData),
dispatch,
$browserLinksSupported,
2021-01-25 17:36:04 +01:00
);
2020-06-23 12:43:19 +02:00
}
2020-06-28 06:21:31 +02:00
const title = tr.statisticsCardEaseTitle();
const subtitle = tr.statisticsCardEaseSubtitle();
2020-06-23 12:43:19 +02:00
</script>
<Graph {title} {subtitle}>
<HistogramGraph data={histogramData} />
2020-08-21 04:58:02 +02:00
<TableData {tableData} />
</Graph>