2020-06-23 12:43:19 +02:00
|
|
|
<script lang="typescript">
|
2020-11-05 02:01:30 +01:00
|
|
|
import type pb from "anki/backend_proto";
|
2021-03-26 11:23:43 +01:00
|
|
|
|
2021-01-25 16:33:18 +01:00
|
|
|
import { createEventDispatcher } from "svelte";
|
2021-03-21 13:47:52 +01:00
|
|
|
|
|
|
|
import HistogramGraph from "./HistogramGraph.svelte";
|
|
|
|
import Graph from "./Graph.svelte";
|
|
|
|
import TableData from "./TableData.svelte";
|
|
|
|
|
|
|
|
import type { HistogramData } from "./histogram-graph";
|
|
|
|
import { gatherData, prepareData } from "./ease";
|
|
|
|
import type { TableDatum, SearchEventMap } from "./graph-helpers";
|
2021-01-25 17:36:04 +01:00
|
|
|
import type { PreferenceStore } from "./preferences";
|
2020-06-23 12:43:19 +02:00
|
|
|
|
2020-06-26 02:42:10 +02:00
|
|
|
export let sourceData: pb.BackendProto.GraphsOut | null = null;
|
2021-03-26 11:23:43 +01:00
|
|
|
import * as tr from "anki/i18n";
|
2021-01-25 17:36:04 +01:00
|
|
|
export let preferences: PreferenceStore;
|
2020-06-23 12:43:19 +02:00
|
|
|
|
2021-01-26 12:41:22 +01:00
|
|
|
const dispatch = createEventDispatcher<SearchEventMap>();
|
2021-01-25 16:33:18 +01:00
|
|
|
|
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[] = [];
|
2021-01-25 17:36:04 +01:00
|
|
|
let { browserLinksSupported } = preferences;
|
2020-06-23 12:43:19 +02:00
|
|
|
|
2020-06-26 02:42:10 +02:00
|
|
|
$: if (sourceData) {
|
2021-01-25 17:36:04 +01:00
|
|
|
[histogramData, tableData] = prepareData(
|
|
|
|
gatherData(sourceData),
|
|
|
|
dispatch,
|
|
|
|
$browserLinksSupported
|
|
|
|
);
|
2020-06-23 12:43:19 +02:00
|
|
|
}
|
2020-06-28 06:21:31 +02:00
|
|
|
|
2021-03-26 11:23:43 +01:00
|
|
|
const title = tr.statisticsCardEaseTitle();
|
|
|
|
const subtitle = tr.statisticsCardEaseSubtitle();
|
2020-06-23 12:43:19 +02:00
|
|
|
</script>
|
|
|
|
|
2021-03-21 13:47:52 +01:00
|
|
|
<Graph {title} {subtitle}>
|
2021-03-26 11:23:43 +01:00
|
|
|
<HistogramGraph data={histogramData} />
|
2020-08-21 04:58:02 +02:00
|
|
|
|
2021-03-26 11:23:43 +01:00
|
|
|
<TableData {tableData} />
|
2021-03-21 13:47:52 +01:00
|
|
|
</Graph>
|