anki/ts/graphs/HourGraph.svelte

47 lines
1.5 KiB
Svelte
Raw Normal View History

<!--
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 "../lib/ftl";
import type { Stats } from "../lib/proto";
import AxisTicks from "./AxisTicks.svelte";
import CumulativeOverlay from "./CumulativeOverlay.svelte";
import Graph from "./Graph.svelte";
import { defaultGraphBounds, GraphRange, RevlogRange } from "./graph-helpers";
import GraphRangeRadios from "./GraphRangeRadios.svelte";
import { renderHours } from "./hours";
import HoverColumns from "./HoverColumns.svelte";
import InputBox from "./InputBox.svelte";
import NoDataOverlay from "./NoDataOverlay.svelte";
2020-06-26 06:05:58 +02:00
export let sourceData: Stats.GraphsResponse | null = null;
export let revlogRange: RevlogRange;
let graphRange: GraphRange = GraphRange.Year;
2020-06-26 06:05:58 +02:00
const bounds = defaultGraphBounds();
let svg = null as HTMLElement | SVGElement | null;
$: if (sourceData) {
renderHours(svg as SVGElement, bounds, sourceData, graphRange);
2020-06-26 06:05:58 +02:00
}
2020-06-28 06:21:31 +02:00
const title = tr.statisticsHoursTitle();
const subtitle = tr.statisticsHoursSubtitle();
2020-06-26 06:05:58 +02:00
</script>
<Graph {title} {subtitle}>
<InputBox>
<GraphRangeRadios bind:graphRange {revlogRange} followRevlog={true} />
</InputBox>
2020-06-26 06:05:58 +02:00
<svg bind:this={svg} viewBox={`0 0 ${bounds.width} ${bounds.height}`}>
<g class="bars" />
<CumulativeOverlay />
<HoverColumns />
2020-06-26 06:05:58 +02:00
<AxisTicks {bounds} />
<NoDataOverlay {bounds} />
2020-06-26 06:05:58 +02:00
</svg>
</Graph>