anki/ts/graphs/added.ts

143 lines
3.8 KiB
TypeScript
Raw Normal View History

2020-06-24 01:41:07 +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",
*/
2021-07-10 11:52:31 +02:00
import type { Backend, Cards } from "lib/proto";
import {
extent,
histogram,
sum,
scaleLinear,
scaleSequential,
interpolateBlues,
} from "d3";
import type { Bin } from "d3";
import type { HistogramData } from "./histogram-graph";
import { dayLabel } from "lib/time";
import { GraphRange } from "./graph-helpers";
import type { TableDatum, SearchDispatch } from "./graph-helpers";
import * as tr from "lib/i18n";
2020-06-24 01:41:07 +02:00
export interface GraphData {
daysAdded: number[];
}
refactor protobuf handling for split/import In order to split backend.proto into a more manageable size, the protobuf handling needed to be updated. This took more time than I would have liked, as each language handles protobuf differently: - The Python Protobuf code ignores "package" directives, and relies solely on how the files are laid out on disk. While it would have been nice to keep the generated files in a private subpackage, Protobuf gets confused if the files are located in a location that does not match their original .proto layout, so the old approach of storing them in _backend/ will not work. They now clutter up pylib/anki instead. I'm rather annoyed by that, but alternatives seem to be having to add an extra level to the Protobuf path, making the other languages suffer, or trying to hack around the issue by munging sys.modules. - Protobufjs fails to expose packages if they don't start with a capital letter, despite the fact that lowercase packages are the norm in most languages :-( This required a patch to fix. - Rust was the easiest, as Prost is relatively straightforward compared to Google's tools. The Protobuf files are now stored in /proto/anki, with a separate package for each file. I've split backend.proto into a few files as a test, but the majority of that work is still to come. The Python Protobuf building is a bit of a hack at the moment, hard-coding "proto" as the top level folder, but it seems to get the job done for now. Also changed the workspace name, as there seems to be a number of Bazel repos moving away from the more awkward reverse DNS naming style.
2021-07-10 09:50:18 +02:00
export function gatherData(data: Backend.GraphsResponse): GraphData {
2021-07-10 11:52:31 +02:00
const daysAdded = (data.cards as Cards.Card[]).map((card) => {
2020-06-24 01:41:07 +02:00
const elapsedSecs = (card.id as number) / 1000 - data.nextDayAtSecs;
return Math.ceil(elapsedSecs / 86400);
});
return { daysAdded };
}
function makeQuery(start: number, end: number): string {
const include = `"added:${start}"`;
if (start === 1) {
return include;
}
const exclude = `-"added:${end}"`;
return `${include} AND ${exclude}`;
}
2020-06-26 11:25:02 +02:00
export function buildHistogram(
data: GraphData,
range: GraphRange,
dispatch: SearchDispatch,
2021-01-25 17:36:04 +01:00
browserLinksSupported: boolean
2020-08-04 08:01:11 +02:00
): [HistogramData | null, TableDatum[]] {
2020-06-24 01:41:07 +02:00
// get min/max
const total = data.daysAdded.length;
if (!total) {
2020-08-04 08:01:11 +02:00
return [null, []];
2020-06-24 01:41:07 +02:00
}
const [xMinOrig] = extent(data.daysAdded);
2020-06-24 01:41:07 +02:00
let xMin = xMinOrig;
// cap max to selected range
switch (range) {
case GraphRange.Month:
2020-06-24 01:41:07 +02:00
xMin = -31;
break;
case GraphRange.ThreeMonths:
2020-06-24 01:41:07 +02:00
xMin = -90;
break;
case GraphRange.Year:
2020-06-24 01:41:07 +02:00
xMin = -365;
break;
case GraphRange.AllTime:
2020-06-24 01:41:07 +02:00
break;
}
const xMax = 1;
const desiredBars = Math.min(70, Math.abs(xMin!));
const scale = scaleLinear().domain([xMin!, xMax]);
const bins = histogram()
.domain(scale.domain() as any)
.thresholds(scale.ticks(desiredBars))(data.daysAdded);
2020-07-06 06:01:49 +02:00
// empty graph?
if (!sum(bins, (bin) => bin.length)) {
2020-08-04 08:01:11 +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-24 01:41:07 +02:00
2020-08-04 08:01:11 +02:00
const totalInPeriod = sum(bins, (bin) => bin.length);
const periodDays = Math.abs(xMin!);
const cardsPerDay = Math.round(totalInPeriod / periodDays);
2020-08-04 08:01:11 +02:00
const tableData = [
{
label: tr.statisticsTotal(),
value: tr.statisticsCards({ cards: totalInPeriod }),
2020-08-04 08:01:11 +02:00
},
{
label: tr.statisticsAverage(),
value: tr.statisticsCardsPerDay({ count: cardsPerDay }),
2020-08-04 08:01:11 +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
): string {
const day = dayLabel(bin.x0!, bin.x1!);
const cards = tr.statisticsCards({ cards: bin.length });
const total = tr.statisticsRunningTotal();
const totalCards = tr.statisticsCards({ cards: cumulative });
2020-06-28 12:52:38 +02:00
return `${day}:<br>${cards}<br>${total}: ${totalCards}`;
}
function onClick(bin: Bin<number, number>): void {
const start = Math.abs(bin.x0!) + 1;
const end = Math.abs(bin.x1!) + 1;
const query = makeQuery(start, end);
dispatch("search", { query });
2021-01-07 12:22:50 +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,
];
2020-06-24 01:41:07 +02:00
}