mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 06:22:22 -04:00

* Pack FSRS data into card.data * Update FSRS card data when preset or weights change + Show FSRS stats in card stats * Show a warning when there's a limited review history * Add some translations; tweak UI * Fix default requested retention * Add browser columns, fix calculation of R * Property searches eg prop:d>0.1 * Integrate FSRS into reviewer * Warn about long learning steps * Hide minimum interval when FSRS is on * Don't apply interval multiplier to FSRS intervals * Expose memory state to Python * Don't set memory state on new cards * Port Jarret's new tests; add some helpers to make tests more compact https://github.com/open-spaced-repetition/fsrs-rs/pull/64 * Fix learning cards not being given memory state * Require update to v3 scheduler * Don't exclude single learning step when calculating memory state * Use relearning step when learning steps unavailable * Update docstring * fix single_card_revlog_to_items (#2656) * not need check the review_kind for unique_dates * add email address to CONTRIBUTORS * fix last first learn & keep early review * cargo fmt * cargo clippy --fix * Add Jarrett to about screen * Fix fsrs_memory_state being initialized to default in get_card() * Set initial memory state on graduate * Update to latest FSRS * Fix experiment.log being empty * Fix broken colpkg imports Introduced by "Update FSRS card data when preset or weights change" * Update memory state during (re)learning; use FSRS for graduating intervals * Reset memory state when cards are manually rescheduled as new * Add difficulty graph; hide eases when FSRS enabled * Add retrievability graph * Derive memory_state from revlog when it's missing and shouldn't be --------- Co-authored-by: Jarrett Ye <jarrett.ye@outlook.com>
90 lines
2.2 KiB
TypeScript
90 lines
2.2 KiB
TypeScript
// Copyright: Ankitects Pty Ltd and contributors
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
/* eslint
|
|
@typescript-eslint/no-explicit-any: "off",
|
|
*/
|
|
|
|
import "./graphs-base.scss";
|
|
|
|
import { ModuleName, setupI18n } from "@tslib/i18n";
|
|
import { checkNightMode } from "@tslib/nightmode";
|
|
import type { SvelteComponent } from "svelte";
|
|
|
|
import GraphsPage from "./GraphsPage.svelte";
|
|
|
|
const i18n = setupI18n({ modules: [ModuleName.STATISTICS, ModuleName.SCHEDULING] });
|
|
|
|
export async function setupGraphs(
|
|
graphs: typeof SvelteComponent<any>[],
|
|
{
|
|
search = "deck:current",
|
|
days = 365,
|
|
controller = null as typeof SvelteComponent<any> | null,
|
|
} = {},
|
|
): Promise<GraphsPage> {
|
|
checkNightMode();
|
|
await i18n;
|
|
|
|
return new GraphsPage({
|
|
target: document.body,
|
|
props: {
|
|
initialSearch: search,
|
|
initialDays: days,
|
|
graphs,
|
|
controller,
|
|
},
|
|
});
|
|
}
|
|
|
|
import AddedGraph from "./AddedGraph.svelte";
|
|
import ButtonsGraph from "./ButtonsGraph.svelte";
|
|
import CalendarGraph from "./CalendarGraph.svelte";
|
|
import CardCounts from "./CardCounts.svelte";
|
|
import DifficultyGraph from "./DifficultyGraph.svelte";
|
|
import EaseGraph from "./EaseGraph.svelte";
|
|
import FutureDue from "./FutureDue.svelte";
|
|
import { RevlogRange } from "./graph-helpers";
|
|
import HourGraph from "./HourGraph.svelte";
|
|
import IntervalsGraph from "./IntervalsGraph.svelte";
|
|
import RangeBox from "./RangeBox.svelte";
|
|
import RetrievabilityGraph from "./RetrievabilityGraph.svelte";
|
|
import ReviewsGraph from "./ReviewsGraph.svelte";
|
|
import TodayStats from "./TodayStats.svelte";
|
|
|
|
setupGraphs(
|
|
[
|
|
TodayStats,
|
|
FutureDue,
|
|
CalendarGraph,
|
|
ReviewsGraph,
|
|
CardCounts,
|
|
IntervalsGraph,
|
|
EaseGraph,
|
|
DifficultyGraph,
|
|
RetrievabilityGraph,
|
|
HourGraph,
|
|
ButtonsGraph,
|
|
AddedGraph,
|
|
],
|
|
{
|
|
controller: RangeBox,
|
|
},
|
|
);
|
|
|
|
export const graphComponents = {
|
|
TodayStats,
|
|
FutureDue,
|
|
CalendarGraph,
|
|
ReviewsGraph,
|
|
CardCounts,
|
|
IntervalsGraph,
|
|
EaseGraph,
|
|
DifficultyGraph,
|
|
RetrievabilityGraph,
|
|
HourGraph,
|
|
ButtonsGraph,
|
|
AddedGraph,
|
|
RangeBox,
|
|
RevlogRange,
|
|
};
|