anki/ts/graphs/AddedGraph.svelte

60 lines
1.9 KiB
Svelte
Raw Normal View History

<!--
Copyright: Ankitects Pty Ltd and contributors
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
-->
2020-06-24 01:41:07 +02:00
<script lang="typescript">
import type pb from "lib/backend_proto";
import type { PreferenceStore } from "sveltelib/preferences";
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";
2020-06-24 01:41:07 +02:00
export let sourceData: pb.BackendProto.GraphsOut | null = null;
import * as tr from "lib/i18n";
export let preferences: PreferenceStore<pb.BackendProto.GraphPreferences>;
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,
dispatch,
$browserLinksSupported
);
2020-06-24 01:41:07 +02:00
}
2020-06-27 14:10:56 +02:00
const title = tr.statisticsAddedTitle();
const subtitle = tr.statisticsAddedSubtitle();
2020-06-24 01:41:07 +02:00
</script>
<Graph {title} {subtitle}>
<InputBox>
<GraphRangeRadios bind:graphRange revlogRange={RevlogRange.All} />
</InputBox>
2020-06-24 01:41:07 +02:00
<HistogramGraph data={histogramData} />
2020-08-04 08:01:11 +02:00
<TableData {tableData} />
</Graph>