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
|
|
|
|
-->
|
2021-10-26 00:43:02 +02:00
|
|
|
<script lang="ts">
|
2021-01-25 16:33:18 +01:00
|
|
|
import { createEventDispatcher } from "svelte";
|
2021-03-21 13:47:52 +01:00
|
|
|
|
2022-02-04 09:36:34 +01:00
|
|
|
import * as tr from "../lib/ftl";
|
|
|
|
import type { Stats } from "../lib/proto";
|
|
|
|
import type { PreferenceStore } from "../sveltelib/preferences";
|
|
|
|
import { gatherData, prepareData } from "./ease";
|
2021-03-21 13:47:52 +01:00
|
|
|
import Graph from "./Graph.svelte";
|
2022-02-04 09:36:34 +01:00
|
|
|
import type { SearchEventMap, TableDatum } from "./graph-helpers";
|
2021-03-21 13:47:52 +01:00
|
|
|
import type { HistogramData } from "./histogram-graph";
|
2022-02-04 09:36:34 +01:00
|
|
|
import HistogramGraph from "./HistogramGraph.svelte";
|
|
|
|
import TableData from "./TableData.svelte";
|
2020-06-23 12:43:19 +02:00
|
|
|
|
2021-07-10 13:58:34 +02:00
|
|
|
export let sourceData: Stats.GraphsResponse | null = null;
|
|
|
|
export let preferences: PreferenceStore<Stats.GraphPreferences>;
|
2020-06-23 12:43:19 +02:00
|
|
|
|
2021-01-26 12:41:22 +01:00
|
|
|
const dispatch = createEventDispatcher<SearchEventMap>();
|
2021-01-25 16:33:18 +01:00
|
|
|
|
2020-06-23 12:43:19 +02:00
|
|
|
let histogramData = null as HistogramData | null;
|
2020-08-21 04:58:02 +02:00
|
|
|
let tableData: TableDatum[] = [];
|
2022-02-04 09:36:34 +01:00
|
|
|
const { browserLinksSupported } = preferences;
|
2020-06-23 12:43:19 +02:00
|
|
|
|
2020-06-26 02:42:10 +02:00
|
|
|
$: if (sourceData) {
|
2021-01-25 17:36:04 +01:00
|
|
|
[histogramData, tableData] = prepareData(
|
|
|
|
gatherData(sourceData),
|
|
|
|
dispatch,
|
2021-10-19 01:06:00 +02:00
|
|
|
$browserLinksSupported,
|
2021-01-25 17:36:04 +01:00
|
|
|
);
|
2020-06-23 12:43:19 +02:00
|
|
|
}
|
2020-06-28 06:21:31 +02:00
|
|
|
|
2021-03-26 11:23:43 +01:00
|
|
|
const title = tr.statisticsCardEaseTitle();
|
|
|
|
const subtitle = tr.statisticsCardEaseSubtitle();
|
2020-06-23 12:43:19 +02:00
|
|
|
</script>
|
|
|
|
|
2021-03-21 13:47:52 +01:00
|
|
|
<Graph {title} {subtitle}>
|
2021-03-26 11:23:43 +01:00
|
|
|
<HistogramGraph data={histogramData} />
|
2020-08-21 04:58:02 +02:00
|
|
|
|
2021-03-26 11:23:43 +01:00
|
|
|
<TableData {tableData} />
|
2021-03-21 13:47:52 +01:00
|
|
|
</Graph>
|