2023-09-16 08:09:26 +02:00
|
|
|
<!--
|
|
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
-->
|
|
|
|
<script lang="ts">
|
|
|
|
import type { GraphsResponse } from "@tslib/anki/stats_pb";
|
|
|
|
import * as tr from "@tslib/ftl";
|
|
|
|
import { createEventDispatcher } from "svelte";
|
|
|
|
|
|
|
|
import { gatherData, prepareData } from "./difficulty";
|
|
|
|
import Graph from "./Graph.svelte";
|
|
|
|
import type { GraphPrefs } from "./graph-helpers";
|
|
|
|
import type { SearchEventMap, TableDatum } from "./graph-helpers";
|
|
|
|
import type { HistogramData } from "./histogram-graph";
|
|
|
|
import HistogramGraph from "./HistogramGraph.svelte";
|
|
|
|
import TableData from "./TableData.svelte";
|
|
|
|
|
|
|
|
export let sourceData: GraphsResponse | null = null;
|
|
|
|
export let prefs: GraphPrefs;
|
|
|
|
|
|
|
|
const dispatch = createEventDispatcher<SearchEventMap>();
|
|
|
|
|
|
|
|
let histogramData = null as HistogramData | null;
|
|
|
|
let tableData: TableDatum[] = [];
|
|
|
|
|
|
|
|
$: if (sourceData) {
|
|
|
|
[histogramData, tableData] = prepareData(
|
|
|
|
gatherData(sourceData),
|
|
|
|
dispatch,
|
|
|
|
$prefs.browserLinksSupported,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
const title = tr.statisticsCardDifficultyTitle();
|
2023-12-14 03:48:58 +01:00
|
|
|
const subtitle = tr.statisticsCardDifficultySubtitle2();
|
2023-09-16 08:09:26 +02:00
|
|
|
</script>
|
|
|
|
|
2023-09-23 07:59:02 +02:00
|
|
|
{#if sourceData?.fsrs}
|
2023-09-16 08:09:26 +02:00
|
|
|
<Graph {title} {subtitle}>
|
|
|
|
<HistogramGraph data={histogramData} />
|
|
|
|
|
|
|
|
<TableData {tableData} />
|
|
|
|
</Graph>
|
|
|
|
{/if}
|