41 lines
778 B
TypeScript
41 lines
778 B
TypeScript
import type { KVs } from "../core.js";
|
|
import Chart from "../core.js";
|
|
import { name, schema } from "./entities/test-grouped.js";
|
|
|
|
/**
|
|
* For testing
|
|
*/
|
|
|
|
export default class TestGroupedChart extends Chart<typeof schema> {
|
|
private total = {} as Record<string, number>;
|
|
|
|
constructor() {
|
|
super(name, schema, true);
|
|
}
|
|
|
|
protected async tickMajor(
|
|
group: string,
|
|
): Promise<Partial<KVs<typeof schema>>> {
|
|
return {
|
|
"foo.total": this.total[group],
|
|
};
|
|
}
|
|
|
|
protected async tickMinor(): Promise<Partial<KVs<typeof schema>>> {
|
|
return {};
|
|
}
|
|
|
|
public async increment(group: string): Promise<void> {
|
|
if (this.total[group] == null) this.total[group] = 0;
|
|
|
|
this.total[group]++;
|
|
|
|
await this.commit(
|
|
{
|
|
"foo.total": 1,
|
|
"foo.inc": 1,
|
|
},
|
|
group,
|
|
);
|
|
}
|
|
}
|