anki/ts/graphs/ReviewsGraph.svelte

76 lines
2.3 KiB
Svelte
Raw Normal View History

2020-06-27 04:35:13 +02:00
<script lang="typescript">
import type pb from "anki/backend_proto";
import type { I18n } from "anki/i18n";
import Graph from "./Graph.svelte";
import InputBox from "./InputBox.svelte";
2020-07-06 06:01:49 +02:00
import NoDataOverlay from "./NoDataOverlay.svelte";
import CumulativeOverlay from "./CumulativeOverlay.svelte";
import GraphRangeRadios from "./GraphRangeRadios.svelte";
import TableData from "./TableData.svelte";
import AxisTicks from "./AxisTicks.svelte";
import HoverColumns from "./HoverColumns.svelte";
2020-06-27 04:35:13 +02:00
import { defaultGraphBounds, RevlogRange, GraphRange } from "./graph-helpers";
import type { TableDatum } from "./graph-helpers";
import { gatherData, renderReviews } from "./reviews";
import type { GraphData } from "./reviews";
2020-06-27 04:35:13 +02:00
export let sourceData: pb.BackendProto.GraphsOut | null = null;
2020-07-06 10:29:35 +02:00
export let revlogRange: RevlogRange;
2020-06-27 14:10:56 +02:00
export let i18n: I18n;
2020-06-27 04:35:13 +02:00
let graphData: GraphData | null = null;
let bounds = defaultGraphBounds();
let svg = null as HTMLElement | SVGElement | null;
let graphRange: GraphRange = GraphRange.Month;
2020-06-27 04:35:13 +02:00
let showTime = false;
2020-06-27 07:35:34 +02:00
2020-06-27 04:35:13 +02:00
$: if (sourceData) {
graphData = gatherData(sourceData);
}
let tableData: TableDatum[] = [] as any;
2020-06-27 04:35:13 +02:00
$: if (graphData) {
tableData = renderReviews(
2020-08-04 06:28:46 +02:00
svg as SVGElement,
bounds,
graphData,
graphRange,
showTime,
i18n
);
2020-06-27 04:35:13 +02:00
}
2020-06-27 14:10:56 +02:00
2020-06-28 06:21:31 +02:00
const title = i18n.tr(i18n.TR.STATISTICS_REVIEWS_TITLE);
2020-06-28 11:34:19 +02:00
const time = i18n.tr(i18n.TR.STATISTICS_REVIEWS_TIME_CHECKBOX);
2020-07-22 06:11:22 +02:00
let subtitle = "";
$: if (showTime) {
subtitle = i18n.tr(i18n.TR.STATISTICS_REVIEWS_TIME_SUBTITLE);
} else {
subtitle = i18n.tr(i18n.TR.STATISTICS_REVIEWS_COUNT_SUBTITLE);
}
2020-06-27 04:35:13 +02:00
</script>
<Graph {title} {subtitle}>
<InputBox>
<label> <input type="checkbox" bind:checked={showTime} /> {time} </label>
2020-06-27 04:35:13 +02:00
<GraphRangeRadios bind:graphRange {i18n} {revlogRange} followRevlog={true} />
</InputBox>
2020-06-27 04:35:13 +02:00
<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 />
2020-06-27 04:35:13 +02:00
<AxisTicks {bounds} />
2020-07-06 06:01:49 +02:00
<NoDataOverlay {bounds} {i18n} />
2020-06-27 04:35:13 +02:00
</svg>
<TableData {i18n} {tableData} />
</Graph>