2020-06-26 11:25:02 +02:00
|
|
|
<script lang="typescript">
|
2020-11-05 02:01:30 +01:00
|
|
|
import type { I18n } from "anki/i18n";
|
2020-11-01 05:26:58 +01:00
|
|
|
import type { HistogramData } from "./histogram-graph";
|
|
|
|
import { GraphRange, RevlogRange } from "./graph-helpers";
|
|
|
|
import type { TableDatum } from "./graph-helpers";
|
|
|
|
import { gatherData, buildHistogram } from "./future-due";
|
|
|
|
import type { GraphData } from "./future-due";
|
2020-11-05 02:01:30 +01:00
|
|
|
import type pb from "anki/backend_proto";
|
2020-06-26 11:25:02 +02:00
|
|
|
import HistogramGraph from "./HistogramGraph.svelte";
|
2020-07-17 05:46:06 +02:00
|
|
|
import GraphRangeRadios from "./GraphRangeRadios.svelte";
|
2020-08-04 07:15:57 +02:00
|
|
|
import TableData from "./TableData.svelte";
|
2021-01-25 16:33:18 +01:00
|
|
|
import { createEventDispatcher } from "svelte";
|
2021-01-25 17:36:04 +01:00
|
|
|
import type { PreferenceStore } from "./preferences";
|
2020-06-26 11:25:02 +02:00
|
|
|
|
|
|
|
export let sourceData: pb.BackendProto.GraphsOut | null = null;
|
2020-06-27 14:10:56 +02:00
|
|
|
export let i18n: I18n;
|
2021-01-25 17:36:04 +01:00
|
|
|
export let preferences: PreferenceStore;
|
2020-06-27 14:10:56 +02:00
|
|
|
|
2021-01-25 16:33:18 +01:00
|
|
|
const dispatch = createEventDispatcher();
|
|
|
|
|
2020-06-26 11:25:02 +02:00
|
|
|
let graphData = null as GraphData | null;
|
|
|
|
let histogramData = null as HistogramData | null;
|
2020-08-04 07:15:57 +02:00
|
|
|
let tableData: TableDatum[] = [] as any;
|
2020-07-17 05:46:06 +02:00
|
|
|
let graphRange: GraphRange = GraphRange.Month;
|
2021-01-27 01:15:19 +01:00
|
|
|
let { browserLinksSupported, futureDueShowBacklog } = preferences;
|
2020-06-26 11:25:02 +02:00
|
|
|
|
|
|
|
$: if (sourceData) {
|
|
|
|
graphData = gatherData(sourceData);
|
|
|
|
}
|
|
|
|
|
|
|
|
$: if (graphData) {
|
2020-08-10 06:37:23 +02:00
|
|
|
({ histogramData, tableData } = buildHistogram(
|
2020-08-04 07:15:57 +02:00
|
|
|
graphData,
|
|
|
|
graphRange,
|
2021-01-27 01:15:19 +01:00
|
|
|
$futureDueShowBacklog,
|
2021-01-25 16:33:18 +01:00
|
|
|
i18n,
|
|
|
|
dispatch,
|
2021-01-25 17:36:04 +01:00
|
|
|
$browserLinksSupported
|
2020-08-10 06:37:23 +02:00
|
|
|
));
|
2020-06-26 11:25:02 +02:00
|
|
|
}
|
2020-06-27 14:10:56 +02:00
|
|
|
|
2020-06-28 06:21:31 +02:00
|
|
|
const title = i18n.tr(i18n.TR.STATISTICS_FUTURE_DUE_TITLE);
|
2020-06-28 09:44:51 +02:00
|
|
|
const subtitle = i18n.tr(i18n.TR.STATISTICS_FUTURE_DUE_SUBTITLE);
|
2020-06-28 11:34:19 +02:00
|
|
|
const backlogLabel = i18n.tr(i18n.TR.STATISTICS_BACKLOG_CHECKBOX);
|
2020-06-26 11:25:02 +02:00
|
|
|
</script>
|
|
|
|
|
2020-07-16 20:44:21 +02:00
|
|
|
<div class="graph" id="graph-future-due">
|
2020-07-06 06:01:49 +02:00
|
|
|
<h1>{title}</h1>
|
2020-06-26 11:25:02 +02:00
|
|
|
|
2020-08-04 09:40:26 +02:00
|
|
|
<div class="subtitle">{subtitle}</div>
|
|
|
|
|
2020-07-06 06:01:49 +02:00
|
|
|
<div class="range-box-inner">
|
2020-08-10 06:37:23 +02:00
|
|
|
{#if graphData && graphData.haveBacklog}
|
|
|
|
<label>
|
2021-01-27 01:15:19 +01:00
|
|
|
<input type="checkbox" bind:checked={$futureDueShowBacklog} />
|
2020-08-10 06:37:23 +02:00
|
|
|
{backlogLabel}
|
|
|
|
</label>
|
|
|
|
{/if}
|
2020-06-26 11:25:02 +02:00
|
|
|
|
2020-07-17 05:46:06 +02:00
|
|
|
<GraphRangeRadios bind:graphRange {i18n} revlogRange={RevlogRange.All} />
|
2020-07-06 06:01:49 +02:00
|
|
|
</div>
|
2020-06-26 11:25:02 +02:00
|
|
|
|
2021-01-25 17:36:04 +01:00
|
|
|
<HistogramGraph data={histogramData} {i18n} />
|
2020-06-26 11:25:02 +02:00
|
|
|
|
2020-08-04 07:15:57 +02:00
|
|
|
<TableData {i18n} {tableData} />
|
2020-07-06 06:01:49 +02:00
|
|
|
</div>
|