2021-04-13 11:02:41 +02:00
|
|
|
<!--
|
|
|
|
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">
|
2021-04-22 19:55:26 +02:00
|
|
|
import type pb from "lib/backend_proto";
|
2021-04-14 23:46:13 +02:00
|
|
|
import type { PreferenceStore } from "sveltelib/preferences";
|
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";
|
2020-06-24 01:41:07 +02:00
|
|
|
|
2020-06-26 02:42:10 +02:00
|
|
|
export let sourceData: pb.BackendProto.GraphsOut | null = null;
|
2021-04-22 19:55:26 +02:00
|
|
|
import * as tr from "lib/i18n";
|
2021-04-14 23:46:13 +02:00
|
|
|
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[] = [];
|
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,
|
|
|
|
dispatch,
|
|
|
|
$browserLinksSupported
|
|
|
|
);
|
2020-06-24 01:41:07 +02:00
|
|
|
}
|
2020-06-27 14:10:56 +02:00
|
|
|
|
2021-03-26 11:23:43 +01:00
|
|
|
const title = tr.statisticsAddedTitle();
|
|
|
|
const subtitle = tr.statisticsAddedSubtitle();
|
2020-06-24 01:41:07 +02:00
|
|
|
</script>
|
|
|
|
|
2021-03-21 13:47:52 +01:00
|
|
|
<Graph {title} {subtitle}>
|
|
|
|
<InputBox>
|
2021-03-26 11:23:43 +01:00
|
|
|
<GraphRangeRadios bind:graphRange revlogRange={RevlogRange.All} />
|
2021-03-21 13:47:52 +01:00
|
|
|
</InputBox>
|
2020-06-24 01:41:07 +02:00
|
|
|
|
2021-03-26 11:23:43 +01:00
|
|
|
<HistogramGraph data={histogramData} />
|
2020-08-04 08:01:11 +02:00
|
|
|
|
2021-03-26 11:23:43 +01:00
|
|
|
<TableData {tableData} />
|
2021-03-21 13:47:52 +01:00
|
|
|
</Graph>
|