c79f8ba88f
The saved characters weren't worth the increased difficulty when reading, and the fact that we were deviating from protobuf norms.
46 lines
1.4 KiB
Svelte
46 lines
1.4 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 * as tr from "lib/i18n";
|
|
import type { PreferenceStore } from "sveltelib/preferences";
|
|
|
|
import { createEventDispatcher } from "svelte";
|
|
|
|
import HistogramGraph from "./HistogramGraph.svelte";
|
|
import Graph from "./Graph.svelte";
|
|
import TableData from "./TableData.svelte";
|
|
|
|
import type { HistogramData } from "./histogram-graph";
|
|
import { gatherData, prepareData } from "./ease";
|
|
import type { TableDatum, SearchEventMap } from "./graph-helpers";
|
|
|
|
export let sourceData: pb.BackendProto.GraphsResponse | null = null;
|
|
export let preferences: PreferenceStore<pb.BackendProto.GraphPreferences>;
|
|
|
|
const dispatch = createEventDispatcher<SearchEventMap>();
|
|
|
|
let histogramData = null as HistogramData | null;
|
|
let tableData: TableDatum[] = [];
|
|
let { browserLinksSupported } = preferences;
|
|
|
|
$: if (sourceData) {
|
|
[histogramData, tableData] = prepareData(
|
|
gatherData(sourceData),
|
|
dispatch,
|
|
$browserLinksSupported
|
|
);
|
|
}
|
|
|
|
const title = tr.statisticsCardEaseTitle();
|
|
const subtitle = tr.statisticsCardEaseSubtitle();
|
|
</script>
|
|
|
|
<Graph {title} {subtitle}>
|
|
<HistogramGraph data={histogramData} />
|
|
|
|
<TableData {tableData} />
|
|
</Graph>
|