c79f8ba88f
The saved characters weren't worth the increased difficulty when reading, and the fact that we were deviating from protobuf norms.
60 lines
1.9 KiB
Svelte
60 lines
1.9 KiB
Svelte
<!--
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
-->
|
|
<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";
|
|
import HistogramGraph from "./HistogramGraph.svelte";
|
|
import GraphRangeRadios from "./GraphRangeRadios.svelte";
|
|
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";
|
|
|
|
export let sourceData: pb.BackendProto.GraphsResponse | null = null;
|
|
import * as tr from "lib/i18n";
|
|
export let preferences: PreferenceStore<pb.BackendProto.GraphPreferences>;
|
|
|
|
let histogramData = null as HistogramData | null;
|
|
let tableData: TableDatum[] = [];
|
|
let graphRange: GraphRange = GraphRange.Month;
|
|
let { browserLinksSupported } = preferences;
|
|
|
|
const dispatch = createEventDispatcher<SearchEventMap>();
|
|
|
|
let addedData: GraphData | null = null;
|
|
$: if (sourceData) {
|
|
addedData = gatherData(sourceData);
|
|
}
|
|
|
|
$: if (addedData) {
|
|
[histogramData, tableData] = buildHistogram(
|
|
addedData,
|
|
graphRange,
|
|
dispatch,
|
|
$browserLinksSupported
|
|
);
|
|
}
|
|
|
|
const title = tr.statisticsAddedTitle();
|
|
const subtitle = tr.statisticsAddedSubtitle();
|
|
</script>
|
|
|
|
<Graph {title} {subtitle}>
|
|
<InputBox>
|
|
<GraphRangeRadios bind:graphRange revlogRange={RevlogRange.All} />
|
|
</InputBox>
|
|
|
|
<HistogramGraph data={histogramData} />
|
|
|
|
<TableData {tableData} />
|
|
</Graph>
|