2020-06-26 02:42:10 +02:00
|
|
|
<script lang="typescript">
|
2021-01-05 16:13:06 +01:00
|
|
|
import { defaultGraphBounds } from "./graph-helpers";
|
2020-11-01 05:26:58 +01:00
|
|
|
import { gatherData, renderCards } from "./card-counts";
|
|
|
|
import type { GraphData, TableDatum } from "./card-counts";
|
2020-11-05 02:01:30 +01:00
|
|
|
import type pb from "anki/backend_proto";
|
|
|
|
import type { I18n } from "anki/i18n";
|
2021-01-05 16:13:06 +01:00
|
|
|
import SeparateInactiveCheckbox from "./SeparateInactiveCheckbox.svelte";
|
2020-06-26 02:42:10 +02:00
|
|
|
|
2020-07-06 06:01:49 +02:00
|
|
|
export let sourceData: pb.BackendProto.GraphsOut;
|
2020-06-27 13:10:17 +02:00
|
|
|
export let i18n: I18n;
|
2020-06-26 02:42:10 +02:00
|
|
|
|
2020-07-04 05:38:46 +02:00
|
|
|
let svg = null as HTMLElement | SVGElement | null;
|
|
|
|
|
|
|
|
let bounds = defaultGraphBounds();
|
2020-08-12 10:58:21 +02:00
|
|
|
bounds.width = 225;
|
|
|
|
bounds.marginBottom = 0;
|
2020-07-31 09:19:31 +02:00
|
|
|
|
2020-07-22 06:11:22 +02:00
|
|
|
let graphData = (null as unknown) as GraphData;
|
2020-07-31 09:19:31 +02:00
|
|
|
let tableData = (null as unknown) as TableDatum[];
|
2021-01-21 13:45:49 +01:00
|
|
|
let cardCountsSeparateInactive = false;
|
2021-01-04 14:04:51 +01:00
|
|
|
|
2020-07-06 06:01:49 +02:00
|
|
|
$: {
|
2021-01-21 13:45:49 +01:00
|
|
|
graphData = gatherData(sourceData, cardCountsSeparateInactive, i18n);
|
2020-08-12 10:58:21 +02:00
|
|
|
tableData = renderCards(svg as any, bounds, graphData);
|
2020-06-27 13:10:17 +02:00
|
|
|
}
|
|
|
|
|
2020-07-04 05:38:46 +02:00
|
|
|
const total = i18n.tr(i18n.TR.STATISTICS_COUNTS_TOTAL_CARDS);
|
|
|
|
</script>
|
|
|
|
|
2020-07-06 06:01:49 +02:00
|
|
|
<style>
|
|
|
|
svg {
|
|
|
|
transition: opacity 1s;
|
|
|
|
}
|
2020-07-31 09:19:31 +02:00
|
|
|
|
2020-08-12 10:58:21 +02:00
|
|
|
.counts-outer {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
2020-07-31 09:19:31 +02:00
|
|
|
.counts-table {
|
|
|
|
display: flex;
|
2020-08-12 10:58:21 +02:00
|
|
|
flex-direction: column;
|
2020-07-31 09:19:31 +02:00
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
table {
|
|
|
|
border-spacing: 1em 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.right {
|
|
|
|
text-align: right;
|
|
|
|
}
|
2020-07-06 06:01:49 +02:00
|
|
|
</style>
|
|
|
|
|
2020-07-16 20:44:21 +02:00
|
|
|
<div class="graph" id="graph-card-counts">
|
2020-07-06 06:01:49 +02:00
|
|
|
<h1>{graphData.title}</h1>
|
2020-07-04 05:38:46 +02:00
|
|
|
|
2021-01-04 14:04:51 +01:00
|
|
|
<div class="range-box-inner">
|
2021-01-21 13:45:49 +01:00
|
|
|
<SeparateInactiveCheckbox {i18n} bind:cardCountsSeparateInactive />
|
2021-01-04 14:04:51 +01:00
|
|
|
</div>
|
|
|
|
|
2020-08-12 10:58:21 +02:00
|
|
|
<div class="counts-outer">
|
|
|
|
<svg
|
|
|
|
bind:this={svg}
|
|
|
|
viewBox={`0 0 ${bounds.width} ${bounds.height}`}
|
|
|
|
width={bounds.width}
|
|
|
|
height={bounds.height}
|
|
|
|
style="opacity: {graphData.totalCards ? 1 : 0}">
|
|
|
|
<g class="counts" />
|
|
|
|
</svg>
|
|
|
|
<div class="counts-table">
|
|
|
|
<table>
|
2020-11-01 05:26:58 +01:00
|
|
|
{#each tableData as d, _idx}
|
2020-08-12 10:58:21 +02:00
|
|
|
<tr>
|
2020-08-21 07:06:03 +02:00
|
|
|
<!-- prettier-ignore -->
|
2020-08-12 10:58:21 +02:00
|
|
|
<td>
|
2020-08-21 07:06:03 +02:00
|
|
|
<span style="color: {d.colour};">■ </span>{d.label}
|
2020-08-12 10:58:21 +02:00
|
|
|
</td>
|
|
|
|
<td class="right">{d.count}</td>
|
|
|
|
<td class="right">{d.percent}</td>
|
|
|
|
</tr>
|
|
|
|
{/each}
|
|
|
|
|
|
|
|
<tr>
|
2020-11-01 05:26:58 +01:00
|
|
|
<td><span style="visibility: hidden;">■</span> {total}</td>
|
2020-08-12 10:58:21 +02:00
|
|
|
<td class="right">{graphData.totalCards}</td>
|
|
|
|
<td />
|
2020-07-31 09:19:31 +02:00
|
|
|
</tr>
|
2020-08-12 10:58:21 +02:00
|
|
|
</table>
|
|
|
|
</div>
|
2020-07-31 09:19:31 +02:00
|
|
|
</div>
|
2020-07-06 06:01:49 +02:00
|
|
|
</div>
|