2020-06-26 06:05:58 +02:00
|
|
|
<script lang="typescript">
|
|
|
|
import { defaultGraphBounds } from "./graphs";
|
|
|
|
import AxisTicks from "./AxisTicks.svelte";
|
|
|
|
import { gatherData, GraphData, renderHours } from "./hours";
|
|
|
|
import pb from "../backend/proto";
|
2020-06-28 06:21:31 +02:00
|
|
|
import { I18n } from "../i18n";
|
2020-06-26 06:05:58 +02:00
|
|
|
|
|
|
|
export let sourceData: pb.BackendProto.GraphsOut | null = null;
|
2020-06-28 06:21:31 +02:00
|
|
|
export let i18n: I18n;
|
2020-06-26 06:05:58 +02:00
|
|
|
|
|
|
|
const bounds = defaultGraphBounds();
|
|
|
|
|
|
|
|
let svg = null as HTMLElement | SVGElement | null;
|
|
|
|
|
|
|
|
$: if (sourceData) {
|
2020-06-28 12:52:38 +02:00
|
|
|
renderHours(svg as SVGElement, bounds, gatherData(sourceData), i18n);
|
2020-06-26 06:05:58 +02:00
|
|
|
}
|
2020-06-28 06:21:31 +02:00
|
|
|
|
|
|
|
const title = i18n.tr(i18n.TR.STATISTICS_HOURS_TITLE);
|
2020-06-28 09:44:51 +02:00
|
|
|
const subtitle = i18n.tr(i18n.TR.STATISTICS_HOURS_SUBTITLE);
|
2020-06-26 06:05:58 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<div class="graph">
|
2020-06-28 06:21:31 +02:00
|
|
|
<h1>{title}</h1>
|
2020-06-26 06:05:58 +02:00
|
|
|
|
2020-06-28 09:44:51 +02:00
|
|
|
<div class="subtitle">{subtitle}</div>
|
|
|
|
|
2020-06-26 06:05:58 +02:00
|
|
|
<svg bind:this={svg} viewBox={`0 0 ${bounds.width} ${bounds.height}`}>
|
|
|
|
<g class="bars" />
|
2020-06-27 04:35:13 +02:00
|
|
|
<path class="area" />
|
2020-06-26 06:05:58 +02:00
|
|
|
<g class="hoverzone" />
|
|
|
|
<AxisTicks {bounds} />
|
|
|
|
</svg>
|
|
|
|
</div>
|