e63b4b9927
Prettier by default tries to preserve whitespace around inline tags, which can prevent problems such as a space before the period in '<a>text</a>.': https://prettier.io/blog/2018/11/07/1.15.0.html#whitespace-sensitive-formatting Unfortunately only standard HTML block elements are excluded from this behaviour, so all of our Svelte components are treated the same way, even if they are block-based, or used in a way where the extra whitespace doesn't matter. This makes the code somewhat harder to read. Changing this option does carry the risk that rogue spaces will creep into our UI in the future as code is formatted, but as there don't appear to be any such issues with this initial reformat, I think the improved readability may justify the relatively small risk.
80 lines
2.4 KiB
Svelte
80 lines
2.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="ts">
|
|
import * as tr from "@tslib/ftl";
|
|
import type { Stats } from "@tslib/proto";
|
|
|
|
import AxisTicks from "./AxisTicks.svelte";
|
|
import CumulativeOverlay from "./CumulativeOverlay.svelte";
|
|
import Graph from "./Graph.svelte";
|
|
import type { RevlogRange, TableDatum } from "./graph-helpers";
|
|
import { defaultGraphBounds, GraphRange } from "./graph-helpers";
|
|
import GraphRangeRadios from "./GraphRangeRadios.svelte";
|
|
import HoverColumns from "./HoverColumns.svelte";
|
|
import InputBox from "./InputBox.svelte";
|
|
import NoDataOverlay from "./NoDataOverlay.svelte";
|
|
import type { GraphData } from "./reviews";
|
|
import { gatherData, renderReviews } from "./reviews";
|
|
import TableData from "./TableData.svelte";
|
|
|
|
export let sourceData: Stats.GraphsResponse | null = null;
|
|
export let revlogRange: RevlogRange;
|
|
|
|
let graphData: GraphData | null = null;
|
|
|
|
const bounds = defaultGraphBounds();
|
|
let svg = null as HTMLElement | SVGElement | null;
|
|
let graphRange: GraphRange = GraphRange.Month;
|
|
let showTime = false;
|
|
|
|
$: if (sourceData) {
|
|
graphData = gatherData(sourceData);
|
|
}
|
|
|
|
let tableData: TableDatum[] = [] as any;
|
|
$: if (graphData) {
|
|
tableData = renderReviews(
|
|
svg as SVGElement,
|
|
bounds,
|
|
graphData,
|
|
graphRange,
|
|
showTime,
|
|
);
|
|
}
|
|
|
|
const title = tr.statisticsReviewsTitle();
|
|
const time = tr.statisticsReviewsTimeCheckbox();
|
|
|
|
let subtitle = "";
|
|
$: if (showTime) {
|
|
subtitle = tr.statisticsReviewsTimeSubtitle();
|
|
} else {
|
|
subtitle = tr.statisticsReviewsCountSubtitle();
|
|
}
|
|
</script>
|
|
|
|
<Graph {title} {subtitle}>
|
|
<InputBox>
|
|
<label>
|
|
<input type="checkbox" bind:checked={showTime} />
|
|
{time}
|
|
</label>
|
|
|
|
<GraphRangeRadios bind:graphRange {revlogRange} followRevlog={true} />
|
|
</InputBox>
|
|
|
|
<svg bind:this={svg} viewBox={`0 0 ${bounds.width} ${bounds.height}`}>
|
|
{#each [4, 3, 2, 1, 0] as i}
|
|
<g class="bars{i}" />
|
|
{/each}
|
|
<CumulativeOverlay />
|
|
<HoverColumns />
|
|
<AxisTicks {bounds} />
|
|
<NoDataOverlay {bounds} />
|
|
</svg>
|
|
|
|
<TableData {tableData} />
|
|
</Graph>
|