anki/ts/graphs/AddedGraph.svelte

58 lines
1.8 KiB
Svelte
Raw Normal View History

2020-06-24 01:41:07 +02:00
<script lang="typescript">
import type { I18n } from "anki/i18n";
import type pb from "anki/backend_proto";
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";
import GraphRangeRadios from "./GraphRangeRadios.svelte";
2020-08-04 08:01:11 +02:00
import TableData from "./TableData.svelte";
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
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[] = [];
let graphRange: GraphRange = GraphRange.Month;
2021-01-25 17:36:04 +01:00
let { browserLinksSupported } = preferences;
2020-06-24 01:41:07 +02:00
const dispatch = createEventDispatcher<SearchEventMap>();
2020-06-24 01:41:07 +02:00
let addedData: GraphData | null = null;
$: 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
const title = i18n.statisticsAddedTitle();
const subtitle = i18n.statisticsAddedSubtitle();
2020-06-24 01:41:07 +02:00
</script>
<Graph {title} {subtitle}>
<InputBox>
<GraphRangeRadios bind:graphRange {i18n} revlogRange={RevlogRange.All} />
</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} />
</Graph>