anki/ts/graphs/HourGraph.svelte

48 lines
1.6 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
-->
2020-06-26 06:05:58 +02:00
<script lang="typescript">
import type pb from "lib/backend_proto";
import Graph from "./Graph.svelte";
import InputBox from "./InputBox.svelte";
import AxisTicks from "./AxisTicks.svelte";
2020-07-06 06:01:49 +02:00
import NoDataOverlay from "./NoDataOverlay.svelte";
import GraphRangeRadios from "./GraphRangeRadios.svelte";
import CumulativeOverlay from "./CumulativeOverlay.svelte";
import HoverColumns from "./HoverColumns.svelte";
import { defaultGraphBounds, RevlogRange, GraphRange } from "./graph-helpers";
import { renderHours } from "./hours";
2020-06-26 06:05:58 +02:00
export let sourceData: pb.BackendProto.GraphsOut | null = null;
import * as tr from "lib/i18n";
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>