aea0a6fcc6
Running and testing should be working on the three platforms, but there's still a fair bit that needs to be done: - Wheel building + testing in a venv still needs to be implemented. - Python requirements still need to be compiled with piptool and pinned; need to compile on all platforms then merge - Cargo deps in cargo/ and rslib/ need to be cleaned up, and ideally unified into one place - Currently using rustls to work around openssl compilation issues on Linux, but this will break corporate proxies with custom SSL authorities; need to conditionally use openssl or use https://github.com/seanmonstar/reqwest/pull/1058 - Makefiles and docs still need cleaning up - It may make sense to reparent ts/* to the top level, as we don't nest the other modules under a specific language. - rspy and pylib must always be updated in lock-step, so merging rspy into pylib as a private module would simplify things. - Merging desktop-ftl and mobile-ftl into the core ftl would make managing and updating translations easier. - Obsolete scripts need removing. - And probably more.
86 lines
2.3 KiB
Svelte
86 lines
2.3 KiB
Svelte
<script lang="typescript">
|
|
import { defaultGraphBounds } from "./graph-helpers";
|
|
import { gatherData, renderCards } from "./card-counts";
|
|
import type { GraphData, TableDatum } from "./card-counts";
|
|
import type pb from "anki/ts/lib/backend_proto";
|
|
import type { I18n } from "anki/ts/lib/i18n";
|
|
|
|
export let sourceData: pb.BackendProto.GraphsOut;
|
|
export let i18n: I18n;
|
|
|
|
let svg = null as HTMLElement | SVGElement | null;
|
|
|
|
let bounds = defaultGraphBounds();
|
|
bounds.width = 225;
|
|
bounds.marginBottom = 0;
|
|
|
|
let graphData = (null as unknown) as GraphData;
|
|
let tableData = (null as unknown) as TableDatum[];
|
|
$: {
|
|
graphData = gatherData(sourceData, i18n);
|
|
tableData = renderCards(svg as any, bounds, graphData);
|
|
}
|
|
|
|
const total = i18n.tr(i18n.TR.STATISTICS_COUNTS_TOTAL_CARDS);
|
|
</script>
|
|
|
|
<style>
|
|
svg {
|
|
transition: opacity 1s;
|
|
}
|
|
|
|
.counts-outer {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.counts-table {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
table {
|
|
border-spacing: 1em 0;
|
|
}
|
|
|
|
.right {
|
|
text-align: right;
|
|
}
|
|
</style>
|
|
|
|
<div class="graph" id="graph-card-counts">
|
|
<h1>{graphData.title}</h1>
|
|
|
|
<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}
|
|
<tr>
|
|
<!-- prettier-ignore -->
|
|
<td>
|
|
<span style="color: {d.colour};">■ </span>{d.label}
|
|
</td>
|
|
<td class="right">{d.count}</td>
|
|
<td class="right">{d.percent}</td>
|
|
</tr>
|
|
{/each}
|
|
|
|
<tr>
|
|
<td><span style="visibility: hidden;">■</span> {total}</td>
|
|
<td class="right">{graphData.totalCards}</td>
|
|
<td />
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|