47 lines
1.5 KiB
Svelte
47 lines
1.5 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 { Stats } from "lib/proto";
|
|
|
|
import Graph from "./Graph.svelte";
|
|
import InputBox from "./InputBox.svelte";
|
|
import AxisTicks from "./AxisTicks.svelte";
|
|
import NoDataOverlay from "./NoDataOverlay.svelte";
|
|
import GraphRangeRadios from "./GraphRangeRadios.svelte";
|
|
import HoverColumns from "./HoverColumns.svelte";
|
|
import { renderButtons } from "./buttons";
|
|
import { defaultGraphBounds, GraphRange, RevlogRange } from "./graph-helpers";
|
|
|
|
export let sourceData: Stats.GraphsResponse | null = null;
|
|
import * as tr from "lib/i18n";
|
|
export let revlogRange: RevlogRange;
|
|
|
|
let graphRange: GraphRange = GraphRange.Year;
|
|
|
|
const bounds = defaultGraphBounds();
|
|
|
|
let svg = null as HTMLElement | SVGElement | null;
|
|
|
|
$: if (sourceData) {
|
|
renderButtons(svg as SVGElement, bounds, sourceData, graphRange);
|
|
}
|
|
|
|
const title = tr.statisticsAnswerButtonsTitle();
|
|
const subtitle = tr.statisticsAnswerButtonsSubtitle();
|
|
</script>
|
|
|
|
<Graph {title} {subtitle}>
|
|
<InputBox>
|
|
<GraphRangeRadios bind:graphRange {revlogRange} followRevlog={true} />
|
|
</InputBox>
|
|
|
|
<svg bind:this={svg} viewBox={`0 0 ${bounds.width} ${bounds.height}`}>
|
|
<g class="bars" />
|
|
<HoverColumns />
|
|
<AxisTicks {bounds} />
|
|
<NoDataOverlay {bounds} />
|
|
</svg>
|
|
</Graph>
|