45 lines
1.4 KiB
Svelte
45 lines
1.4 KiB
Svelte
|
<!--
|
||
|
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 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 { gatherData, prepareData } from "./retrievability";
|
||
|
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.statisticsCardRetrievabilityTitle();
|
||
|
const subtitle = tr.statisticsRetrievabilitySubtitle();
|
||
|
</script>
|
||
|
|
||
|
{#if histogramData}
|
||
|
<Graph {title} {subtitle}>
|
||
|
<HistogramGraph data={histogramData} />
|
||
|
|
||
|
<TableData {tableData} />
|
||
|
</Graph>
|
||
|
{/if}
|