2020-06-26 11:25:02 +02:00
|
|
|
// Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
|
|
|
|
/* eslint
|
|
|
|
@typescript-eslint/no-non-null-assertion: "off",
|
|
|
|
@typescript-eslint/no-explicit-any: "off",
|
|
|
|
*/
|
|
|
|
|
|
|
|
import pb from "../backend/proto";
|
2020-06-27 13:10:17 +02:00
|
|
|
import { extent, histogram, rollup, sum, Bin } from "d3-array";
|
2020-06-26 11:25:02 +02:00
|
|
|
import { scaleLinear, scaleSequential } from "d3-scale";
|
|
|
|
import { CardQueue } from "../cards";
|
|
|
|
import { HistogramData } from "./histogram-graph";
|
|
|
|
import { interpolateGreens } from "d3-scale-chromatic";
|
2020-06-28 11:34:19 +02:00
|
|
|
import { dayLabel } from "../time";
|
|
|
|
import { I18n } from "../i18n";
|
2020-08-04 07:15:57 +02:00
|
|
|
import { GraphRange, TableDatum } from "./graphs";
|
2020-06-26 11:25:02 +02:00
|
|
|
|
|
|
|
export interface GraphData {
|
|
|
|
dueCounts: Map<number, number>;
|
2020-08-10 06:37:23 +02:00
|
|
|
haveBacklog: boolean;
|
2020-06-26 11:25:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export function gatherData(data: pb.BackendProto.GraphsOut): GraphData {
|
2020-07-30 01:10:40 +02:00
|
|
|
const isLearning = (queue: number): boolean =>
|
|
|
|
[CardQueue.Learn, CardQueue.PreviewRepeat].includes(queue);
|
2020-08-10 06:37:23 +02:00
|
|
|
let haveBacklog = false;
|
2020-06-26 11:25:02 +02:00
|
|
|
const due = (data.cards as pb.BackendProto.Card[])
|
2020-07-24 03:09:22 +02:00
|
|
|
.filter(
|
|
|
|
(c) =>
|
|
|
|
// reviews
|
|
|
|
[CardQueue.Review, CardQueue.DayLearn].includes(c.queue) ||
|
|
|
|
// or learning cards due today
|
2020-07-30 01:10:40 +02:00
|
|
|
(isLearning(c.queue) && c.due < data.nextDayAtSecs)
|
2020-07-24 03:09:22 +02:00
|
|
|
)
|
2020-07-26 02:28:56 +02:00
|
|
|
.map((c) => {
|
2020-07-30 01:10:40 +02:00
|
|
|
if (isLearning(c.queue)) {
|
2020-07-26 02:28:56 +02:00
|
|
|
return 0;
|
|
|
|
} else {
|
2020-07-27 04:10:45 +02:00
|
|
|
// - testing just odue fails on day 1
|
|
|
|
// - testing just odid fails on lapsed cards that
|
|
|
|
// have due calculated at regraduation time
|
2020-08-31 09:09:49 +02:00
|
|
|
const due = c.originalDeckId && c.originalDue ? c.originalDue : c.due;
|
2020-08-10 06:37:23 +02:00
|
|
|
const dueDay = due - data.daysElapsed;
|
|
|
|
if (dueDay < 0) {
|
|
|
|
haveBacklog = true;
|
|
|
|
}
|
|
|
|
return dueDay;
|
2020-07-26 02:28:56 +02:00
|
|
|
}
|
|
|
|
});
|
2020-07-24 03:09:22 +02:00
|
|
|
|
2020-06-26 11:25:02 +02:00
|
|
|
const dueCounts = rollup(
|
|
|
|
due,
|
|
|
|
(v) => v.length,
|
|
|
|
(d) => d
|
|
|
|
);
|
2020-08-10 06:37:23 +02:00
|
|
|
return { dueCounts, haveBacklog };
|
2020-06-26 11:25:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function binValue(d: Bin<Map<number, number>, number>): number {
|
|
|
|
return sum(d, (d) => d[1]);
|
|
|
|
}
|
|
|
|
|
2020-08-10 06:37:23 +02:00
|
|
|
export interface FutureDueOut {
|
|
|
|
histogramData: HistogramData | null;
|
|
|
|
tableData: TableDatum[];
|
|
|
|
}
|
|
|
|
|
2020-06-26 11:25:02 +02:00
|
|
|
export function buildHistogram(
|
|
|
|
sourceData: GraphData,
|
2020-07-17 05:46:06 +02:00
|
|
|
range: GraphRange,
|
2020-06-28 11:34:19 +02:00
|
|
|
backlog: boolean,
|
|
|
|
i18n: I18n
|
2020-08-10 06:37:23 +02:00
|
|
|
): FutureDueOut {
|
|
|
|
const output = { histogramData: null, tableData: [] };
|
2020-06-26 11:25:02 +02:00
|
|
|
// get min/max
|
|
|
|
const data = sourceData.dueCounts;
|
|
|
|
if (!data) {
|
2020-08-10 06:37:23 +02:00
|
|
|
return output;
|
2020-06-26 11:25:02 +02:00
|
|
|
}
|
|
|
|
|
2020-06-28 11:34:19 +02:00
|
|
|
const [xMinOrig, origXMax] = extent<number>(data.keys());
|
|
|
|
let xMin = xMinOrig;
|
|
|
|
if (!backlog) {
|
|
|
|
xMin = 0;
|
|
|
|
}
|
2020-06-26 11:25:02 +02:00
|
|
|
let xMax = origXMax;
|
|
|
|
|
|
|
|
// cap max to selected range
|
|
|
|
switch (range) {
|
2020-07-17 05:46:06 +02:00
|
|
|
case GraphRange.Month:
|
2020-06-26 11:25:02 +02:00
|
|
|
xMax = 31;
|
|
|
|
break;
|
2020-07-17 05:46:06 +02:00
|
|
|
case GraphRange.ThreeMonths:
|
2020-06-26 11:25:02 +02:00
|
|
|
xMax = 90;
|
|
|
|
break;
|
2020-07-17 05:46:06 +02:00
|
|
|
case GraphRange.Year:
|
2020-06-26 11:25:02 +02:00
|
|
|
xMax = 365;
|
|
|
|
break;
|
2020-07-17 05:46:06 +02:00
|
|
|
case GraphRange.AllTime:
|
2020-06-26 11:25:02 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
// cap bars to available range
|
|
|
|
const desiredBars = Math.min(70, xMax! - xMin!);
|
|
|
|
|
2020-08-04 07:15:57 +02:00
|
|
|
const x = scaleLinear().domain([xMin!, xMax!]);
|
2020-06-26 11:25:02 +02:00
|
|
|
const bins = histogram()
|
|
|
|
.value((m) => {
|
|
|
|
return m[0];
|
|
|
|
})
|
|
|
|
.domain(x.domain() as any)
|
|
|
|
.thresholds(x.ticks(desiredBars))(data.entries() as any);
|
|
|
|
|
2020-07-06 06:01:49 +02:00
|
|
|
// empty graph?
|
|
|
|
if (!sum(bins, (bin) => bin.length)) {
|
2020-08-10 06:37:23 +02:00
|
|
|
return output;
|
2020-07-06 06:01:49 +02:00
|
|
|
}
|
|
|
|
|
2020-08-05 07:35:07 +02:00
|
|
|
const adjustedRange = scaleLinear().range([0.7, 0.3]);
|
2020-06-28 06:21:31 +02:00
|
|
|
const colourScale = scaleSequential((n) =>
|
|
|
|
interpolateGreens(adjustedRange(n))
|
2020-08-04 07:15:57 +02:00
|
|
|
).domain([xMin!, xMax!]);
|
2020-06-26 11:25:02 +02:00
|
|
|
|
|
|
|
const total = sum(bins as any, binValue);
|
|
|
|
|
2020-06-28 11:34:19 +02:00
|
|
|
function hoverText(
|
|
|
|
data: HistogramData,
|
|
|
|
binIdx: number,
|
|
|
|
cumulative: number,
|
|
|
|
_percent: number
|
|
|
|
): string {
|
|
|
|
const bin = data.bins[binIdx];
|
|
|
|
const days = dayLabel(i18n, bin.x0!, bin.x1!);
|
|
|
|
const cards = i18n.tr(i18n.TR.STATISTICS_CARDS_DUE, {
|
|
|
|
cards: binValue(data.bins[binIdx] as any),
|
|
|
|
});
|
|
|
|
const totalLabel = i18n.tr(i18n.TR.STATISTICS_RUNNING_TOTAL);
|
|
|
|
|
|
|
|
return `${days}:<br>${cards}<br>${totalLabel}: ${cumulative}`;
|
|
|
|
}
|
|
|
|
|
2020-08-04 07:15:57 +02:00
|
|
|
const periodDays = xMax! - xMin!;
|
|
|
|
const tableData = [
|
|
|
|
{
|
|
|
|
label: i18n.tr(i18n.TR.STATISTICS_TOTAL),
|
|
|
|
value: i18n.tr(i18n.TR.STATISTICS_REVIEWS, { reviews: total }),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: i18n.tr(i18n.TR.STATISTICS_AVERAGE),
|
|
|
|
value: i18n.tr(i18n.TR.STATISTICS_REVIEWS_PER_DAY, {
|
|
|
|
count: Math.round(total / periodDays),
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: i18n.tr(i18n.TR.STATISTICS_DUE_TOMORROW),
|
|
|
|
value: i18n.tr(i18n.TR.STATISTICS_REVIEWS, {
|
|
|
|
reviews: sourceData.dueCounts.get(1) ?? 0,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
2020-08-10 06:37:23 +02:00
|
|
|
return {
|
|
|
|
histogramData: {
|
2020-08-04 07:15:57 +02:00
|
|
|
scale: x,
|
|
|
|
bins,
|
|
|
|
total,
|
|
|
|
hoverText,
|
|
|
|
showArea: true,
|
|
|
|
colourScale,
|
|
|
|
binValue,
|
|
|
|
},
|
|
|
|
tableData,
|
2020-08-10 06:37:23 +02:00
|
|
|
};
|
2020-06-26 11:25:02 +02:00
|
|
|
}
|