2020-06-24 01:41:07 +02:00
|
|
|
<script lang="typescript">
|
2020-11-05 02:01:30 +01:00
|
|
|
import type { I18n } from "anki/i18n";
|
|
|
|
import type pb from "anki/backend_proto";
|
2021-03-21 13:47:52 +01:00
|
|
|
import { createEventDispatcher } from "svelte";
|
|
|
|
|
|
|
|
import Graph from "./Graph.svelte";
|
|
|
|
import InputBox from "./InputBox.svelte";
|
2020-06-24 01:41:07 +02:00
|
|
|
import HistogramGraph from "./HistogramGraph.svelte";
|
2020-07-17 05:46:06 +02:00
|
|
|
import GraphRangeRadios from "./GraphRangeRadios.svelte";
|
2020-08-04 08:01:11 +02:00
|
|
|
import TableData from "./TableData.svelte";
|
2021-03-21 13:47:52 +01:00
|
|
|
|
|
|
|
import { RevlogRange, GraphRange } from "./graph-helpers";
|
|
|
|
import type { TableDatum, SearchEventMap } from "./graph-helpers";
|
|
|
|
import type { HistogramData } from "./histogram-graph";
|
|
|
|
import { gatherData, buildHistogram } from "./added";
|
|
|
|
import type { GraphData } from "./added";
|
2021-01-25 17:36:04 +01:00
|
|
|
import type { PreferenceStore } from "./preferences";
|
2020-06-24 01:41:07 +02:00
|
|
|
|
2020-06-26 02:42:10 +02:00
|
|
|
export let sourceData: pb.BackendProto.GraphsOut | null = null;
|
2020-06-27 14:10:56 +02:00
|
|
|
export let i18n: I18n;
|
2021-01-25 17:36:04 +01:00
|
|
|
export let preferences: PreferenceStore;
|
2020-06-24 01:41:07 +02:00
|
|
|
|
|
|
|
let histogramData = null as HistogramData | null;
|
2020-08-04 08:01:11 +02:00
|
|
|
let tableData: TableDatum[] = [];
|
2020-07-17 05:46:06 +02:00
|
|
|
let graphRange: GraphRange = GraphRange.Month;
|
2021-01-25 17:36:04 +01:00
|
|
|
let { browserLinksSupported } = preferences;
|
2020-06-24 01:41:07 +02:00
|
|
|
|
2021-01-26 12:41:22 +01:00
|
|
|
const dispatch = createEventDispatcher<SearchEventMap>();
|
2021-01-25 16:33:18 +01:00
|
|
|
|
2020-06-24 01:41:07 +02:00
|
|
|
let addedData: GraphData | null = null;
|
2020-06-26 02:42:10 +02:00
|
|
|
$: if (sourceData) {
|
|
|
|
addedData = gatherData(sourceData);
|
2020-06-24 01:41:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$: if (addedData) {
|
2021-01-25 17:36:04 +01:00
|
|
|
[histogramData, tableData] = buildHistogram(
|
|
|
|
addedData,
|
|
|
|
graphRange,
|
|
|
|
i18n,
|
|
|
|
dispatch,
|
|
|
|
$browserLinksSupported
|
|
|
|
);
|
2020-06-24 01:41:07 +02:00
|
|
|
}
|
2020-06-27 14:10:56 +02:00
|
|
|
|
2021-03-26 10:13:20 +01:00
|
|
|
const title = i18n.statisticsAddedTitle();
|
|
|
|
const subtitle = i18n.statisticsAddedSubtitle();
|
2020-06-24 01:41:07 +02:00
|
|
|
</script>
|
|
|
|
|
2021-03-21 13:47:52 +01:00
|
|
|
<Graph {title} {subtitle}>
|
|
|
|
<InputBox>
|
2020-07-17 05:46:06 +02:00
|
|
|
<GraphRangeRadios bind:graphRange {i18n} revlogRange={RevlogRange.All} />
|
2021-03-21 13:47:52 +01:00
|
|
|
</InputBox>
|
2020-06-24 01:41:07 +02:00
|
|
|
|
2021-01-25 17:36:04 +01:00
|
|
|
<HistogramGraph data={histogramData} {i18n} />
|
2020-08-04 08:01:11 +02:00
|
|
|
|
|
|
|
<TableData {i18n} {tableData} />
|
2021-03-21 13:47:52 +01:00
|
|
|
</Graph>
|