anki/ts/graphs/CardCounts.svelte

122 lines
3.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="typescript">
import { createEventDispatcher } from "svelte";
import type pb from "lib/backend_proto";
import type { PreferenceStore } from "sveltelib/preferences";
import Graph from "./Graph.svelte";
import InputBox from "./InputBox.svelte";
import { defaultGraphBounds } from "./graph-helpers";
import type { SearchEventMap } from "./graph-helpers";
import { gatherData, renderCards } from "./card-counts";
import type { GraphData, TableDatum } from "./card-counts";
2020-07-06 06:01:49 +02:00
export let sourceData: pb.BackendProto.GraphsOut;
import * as tr2 from "lib/i18n";
2021-04-15 01:12:10 +02:00
export let preferences: PreferenceStore<pb.BackendProto.GraphPreferences>;
let { cardCountsSeparateInactive, browserLinksSupported } = preferences;
const dispatch = createEventDispatcher<SearchEventMap>();
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-22 06:11:22 +02:00
let graphData = (null as unknown) as GraphData;
let tableData = (null as unknown) as TableDatum[];
2020-07-06 06:01:49 +02:00
$: {
graphData = gatherData(sourceData, $cardCountsSeparateInactive);
2020-08-12 10:58:21 +02:00
tableData = renderCards(svg as any, bounds, graphData);
2020-06-27 13:10:17 +02:00
}
const label = tr2.statisticsCountsSeparateSuspendedBuriedCards();
const total = tr2.statisticsCountsTotalCards();
2020-07-04 05:38:46 +02:00
</script>
<style lang="scss">
2020-07-06 06:01:49 +02:00
svg {
transition: opacity 1s;
}
2020-08-12 10:58:21 +02:00
.counts-outer {
display: flex;
justify-content: center;
}
.counts-table {
display: flex;
2020-08-12 10:58:21 +02:00
flex-direction: column;
justify-content: center;
td {
white-space: nowrap;
}
}
table {
border-spacing: 1em 0;
}
.right {
text-align: right;
}
.search-link:hover {
cursor: pointer;
color: var(--link);
text-decoration: underline;
}
2020-07-06 06:01:49 +02:00
</style>
<Graph title={graphData.title}>
<InputBox>
<label>
<input type="checkbox" bind:checked={$cardCountsSeparateInactive} />
{label}
</label>
</InputBox>
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>
{#each tableData as d, _idx}
2020-08-12 10:58:21 +02:00
<tr>
<!-- prettier-ignore -->
2020-08-12 10:58:21 +02:00
<td>
<span style="color: {d.colour};">&nbsp;</span>
{#if browserLinksSupported}
<span class="search-link" on:click={() => dispatch('search', { query: d.query })}>{d.label}</span>
{:else}
<span>{d.label}</span>
{/if}
2020-08-12 10:58:21 +02:00
</td>
<td class="right">{d.count}</td>
<td class="right">{d.percent}</td>
</tr>
{/each}
<tr>
<td><span style="visibility: hidden;"></span> {total}</td>
2020-08-12 10:58:21 +02:00
<td class="right">{graphData.totalCards}</td>
<td />
</tr>
2020-08-12 10:58:21 +02:00
</table>
</div>
</div>
</Graph>