anki/ts/graphs/intervals.ts

183 lines
4.9 KiB
TypeScript
Raw Normal View History

// 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",
2020-06-23 05:43:23 +02:00
*/
import type { Bin } from "d3";
import {
extent,
histogram,
interpolateBlues,
mean,
quantile,
scaleLinear,
scaleSequential,
sum,
} from "d3";
import { CardType } from "../lib/cards";
Refactor i18n (#1405) Merging note: the typing changes were fixed in a separate PR. * Put rootDirs into subprojects - typings do not work for any ts or svelte files - if we set the 'rootDirs' in ts/tsconfig.json to '../bazel-bin/ts' and then inherit them from e.g. editor, the root will be changed to '../../bazel-bin/ts', however editor needs look in '../../bazel-bin/ts/editor' instead. * Rename i18n and i18n_helpers to i18n-generated and i18n - This way, we can restrict the awkwardness of importing files outside the ts directory within lib * Fix missing typing of i18n and backend_proto by adding back symlinks * Split up i18n-generated into i18n-{translate,modules} * Change i18n from singleton to functions * Revert "Put rootDirs into subprojects" This partially reverts commit e1d4292ce3979e7b7ee21bf3951b8a462d45c29c. It seems like this might not be necessary after all. However some other change made on this branch seems to have fixed the .svelte.d.ts imports * Introduce i18n-bundles to remove circular import There was a circular import i18n.ts <-> i18n-translate.ts * Create own directory for i18n * Move lib/i18n/translate to lib/translate * This restores tree shaking * Update tsconfig libs and module * es2018-2020 have wide support on all modern browsers including * Switch bundles and langs inside i18n to variables again * Add missing copyright header * Rename translate.ts to ftl.ts * Remove the symlinks again I added them to fix to have completion for tr, however this would have also have meant to abandon the tree shaking. As we want to have tree shaking, it's also not necessary to have the symlinks anymore * Revert "Update tsconfig libs and module" This reverts commit 0a96776a475e9901c1f9f3407c726d1d002fb9ef. * move withCollapsedWhitespace back to i18n/utils * Add back /ts as in rootDirs
2021-10-07 15:31:49 +02:00
import * as tr from "../lib/ftl";
import { localizedNumber } from "../lib/i18n";
import type { Cards, Stats } from "../lib/proto";
Refactor i18n (#1405) Merging note: the typing changes were fixed in a separate PR. * Put rootDirs into subprojects - typings do not work for any ts or svelte files - if we set the 'rootDirs' in ts/tsconfig.json to '../bazel-bin/ts' and then inherit them from e.g. editor, the root will be changed to '../../bazel-bin/ts', however editor needs look in '../../bazel-bin/ts/editor' instead. * Rename i18n and i18n_helpers to i18n-generated and i18n - This way, we can restrict the awkwardness of importing files outside the ts directory within lib * Fix missing typing of i18n and backend_proto by adding back symlinks * Split up i18n-generated into i18n-{translate,modules} * Change i18n from singleton to functions * Revert "Put rootDirs into subprojects" This partially reverts commit e1d4292ce3979e7b7ee21bf3951b8a462d45c29c. It seems like this might not be necessary after all. However some other change made on this branch seems to have fixed the .svelte.d.ts imports * Introduce i18n-bundles to remove circular import There was a circular import i18n.ts <-> i18n-translate.ts * Create own directory for i18n * Move lib/i18n/translate to lib/translate * This restores tree shaking * Update tsconfig libs and module * es2018-2020 have wide support on all modern browsers including * Switch bundles and langs inside i18n to variables again * Add missing copyright header * Rename translate.ts to ftl.ts * Remove the symlinks again I added them to fix to have completion for tr, however this would have also have meant to abandon the tree shaking. As we want to have tree shaking, it's also not necessary to have the symlinks anymore * Revert "Update tsconfig libs and module" This reverts commit 0a96776a475e9901c1f9f3407c726d1d002fb9ef. * move withCollapsedWhitespace back to i18n/utils * Add back /ts as in rootDirs
2021-10-07 15:31:49 +02:00
import { timeSpan } from "../lib/time";
import type { SearchDispatch, TableDatum } from "./graph-helpers";
import type { HistogramData } from "./histogram-graph";
export interface IntervalGraphData {
intervals: number[];
}
export enum IntervalRange {
Month = 0,
Percentile50 = 1,
Percentile95 = 2,
2020-08-05 06:50:08 +02:00
All = 3,
}
export function gatherIntervalData(data: Stats.GraphsResponse): IntervalGraphData {
2021-07-10 11:52:31 +02:00
const intervals = (data.cards as Cards.Card[])
.filter((c) => [CardType.Review, CardType.Relearn].includes(c.ctype))
.map((c) => c.interval);
return { intervals };
}
2020-06-28 12:52:38 +02:00
export function intervalLabel(
daysStart: number,
daysEnd: number,
cards: number,
2020-06-24 01:41:07 +02:00
): string {
2020-06-28 12:52:38 +02:00
if (daysEnd - daysStart <= 1) {
// singular
return tr.statisticsIntervalsDaySingle({
2020-06-28 12:52:38 +02:00
day: daysStart,
cards,
});
} else {
// range
return tr.statisticsIntervalsDayRange({
2020-06-28 12:52:38 +02:00
daysStart,
daysEnd: daysEnd - 1,
2020-06-28 12:52:38 +02:00
cards,
});
}
2020-06-23 10:40:53 +02:00
}
function makeQuery(start: number, end: number): string {
if (start === end) {
return `"prop:ivl=${start}"`;
}
const fromQuery = `"prop:ivl>=${start}"`;
const tillQuery = `"prop:ivl<=${end}"`;
return `${fromQuery} AND ${tillQuery}`;
}
2020-06-23 11:07:47 +02:00
export function prepareIntervalData(
data: IntervalGraphData,
2020-06-28 12:52:38 +02:00
range: IntervalRange,
dispatch: SearchDispatch,
browserLinksSupported: boolean,
2020-08-04 07:28:41 +02:00
): [HistogramData | null, TableDatum[]] {
// get min/max
const allIntervals = data.intervals;
2020-06-23 12:43:19 +02:00
if (!allIntervals.length) {
2020-08-04 07:28:41 +02:00
return [null, []];
2020-06-23 12:43:19 +02:00
}
const xMin = 0;
let [, xMax] = extent(allIntervals);
let niceNecessary = false;
// cap max to selected range
switch (range) {
2020-06-23 05:43:23 +02:00
case IntervalRange.Month:
xMax = Math.min(xMax!, 30);
2020-06-23 05:43:23 +02:00
break;
case IntervalRange.Percentile50:
xMax = quantile(allIntervals, 0.5);
niceNecessary = true;
2020-06-23 05:43:23 +02:00
break;
case IntervalRange.Percentile95:
xMax = quantile(allIntervals, 0.95);
niceNecessary = true;
2020-06-23 05:43:23 +02:00
break;
case IntervalRange.All:
niceNecessary = true;
2020-06-23 05:43:23 +02:00
break;
}
2020-06-23 10:40:53 +02:00
xMax = xMax! + 1;
2020-06-23 05:43:23 +02:00
// do not show the zero interval
const increment = (x: number): number => x + 1;
const adjustTicks = (x: number, idx: number, ticks: number[]): number[] =>
idx === ticks.length - 1 ? [x - (ticks[0] - 1), x + 1] : [x - (ticks[0] - 1)];
// cap bars to available range
const desiredBars = Math.min(70, xMax! - xMin!);
const prescale = scaleLinear().domain([xMin!, xMax!]);
const scale = scaleLinear().domain(
(niceNecessary ? prescale.nice() : prescale).domain().map(increment),
);
const bins = histogram()
.domain(scale.domain() as [number, number])
.thresholds(scale.ticks(desiredBars).flatMap(adjustTicks))(allIntervals);
2020-06-23 05:43:23 +02:00
2020-07-06 06:01:49 +02:00
// empty graph?
const totalInPeriod = sum(bins, (bin) => bin.length);
if (!totalInPeriod) {
2020-08-04 07:28:41 +02:00
return [null, []];
2020-07-06 06:01:49 +02:00
}
const adjustedRange = scaleLinear().range([0.7, 0.3]);
const colourScale = scaleSequential((n) =>
interpolateBlues(adjustedRange(n)!),
).domain([xMax!, xMin!]);
2020-06-23 12:43:19 +02:00
2020-06-28 12:52:38 +02:00
function hoverText(
2021-01-30 02:08:01 +01:00
bin: Bin<number, number>,
2020-06-28 12:52:38 +02:00
_cumulative: number,
percent: number,
2020-06-28 12:52:38 +02:00
): string {
// const day = dayLabel(bin.x0!, bin.x1!);
const interval = intervalLabel(bin.x0!, bin.x1!, bin.length);
const total = tr.statisticsRunningTotal();
return `${interval}<br>${total}: \u200e${localizedNumber(percent, 1)}%`;
2020-06-28 12:52:38 +02:00
}
function onClick(bin: Bin<number, number>): void {
const start = bin.x0!;
const end = bin.x1! - 1;
const query = makeQuery(start, end);
dispatch("search", { query });
}
2020-08-04 07:28:41 +02:00
const meanInterval = Math.round(mean(allIntervals) ?? 0);
const meanIntervalString = timeSpan(meanInterval * 86400, false);
2020-08-04 07:28:41 +02:00
const tableData = [
{
label: tr.statisticsAverageInterval(),
2020-08-04 07:28:41 +02:00
value: meanIntervalString,
},
];
2021-01-25 17:36:04 +01:00
return [
2021-01-08 14:28:38 +01:00
{
scale,
bins,
total: totalInPeriod,
hoverText,
2021-01-25 17:36:04 +01:00
onClick: browserLinksSupported ? onClick : null,
2021-01-08 14:28:38 +01:00
colourScale,
showArea: true,
},
tableData,
];
}