mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 00:36:38 -04:00

* polish graphs of simulator and forgetting curve * True Retention: decrease precision of percentages * apply uniform sampling rate to forgetting curve * don't display time, only date when maxDays >= 365 * don't floor the totalDaysSinceLastReview * correct cramming condition * improve code-style * polish ticks & tooltip of simulator * remove unused import * fix minor error of daysSinceFirstLearn * filter out revlog entries from before the reset https://forums.ankiweb.net/t/anki-24-10-beta/49989/63?u=l.m.sherlock * use Math.ceil for windowSize * fill currentColor for legend text * remove mix-blend-mode: multiply * tune the position of legend
40 lines
1.1 KiB
Svelte
40 lines
1.1 KiB
Svelte
<!--
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
-->
|
|
<script lang="ts">
|
|
import type { GraphsResponse } from "@generated/anki/stats_pb";
|
|
import * as tr from "@generated/ftl";
|
|
|
|
import { renderTrueRetention } from "./true-retention";
|
|
import Graph from "./Graph.svelte";
|
|
import type { RevlogRange } from "./graph-helpers";
|
|
|
|
export let revlogRange: RevlogRange;
|
|
export let sourceData: GraphsResponse | null = null;
|
|
|
|
let trueRetentionHtml: string;
|
|
|
|
$: if (sourceData) {
|
|
trueRetentionHtml = renderTrueRetention(sourceData, revlogRange);
|
|
}
|
|
|
|
const title = tr.statisticsTrueRetentionTitle();
|
|
const subtitle = tr.statisticsTrueRetentionSubtitle();
|
|
</script>
|
|
|
|
<Graph {title} {subtitle}>
|
|
{#if trueRetentionHtml}
|
|
<div class="true-retention-table">
|
|
{@html trueRetentionHtml}
|
|
</div>
|
|
{/if}
|
|
</Graph>
|
|
|
|
<style>
|
|
.true-retention-table {
|
|
overflow-x: auto;
|
|
margin-top: 1rem;
|
|
display: flex;
|
|
}
|
|
</style>
|