2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2022-12-28 05:13:47 +00:00
|
|
|
<template>
|
|
|
|
<div ref="rootEl">
|
|
|
|
<MkLoading v-if="fetching"/>
|
|
|
|
<div v-else>
|
|
|
|
<canvas ref="chartEl"></canvas>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2023-02-16 14:09:41 +00:00
|
|
|
import { onMounted, nextTick } from 'vue';
|
2023-01-02 01:18:47 +00:00
|
|
|
import { Chart } from 'chart.js';
|
2023-09-19 07:37:43 +00:00
|
|
|
import * as os from '@/os.js';
|
|
|
|
import { defaultStore } from '@/store.js';
|
|
|
|
import { useChartTooltip } from '@/scripts/use-chart-tooltip.js';
|
|
|
|
import { alpha } from '@/scripts/color.js';
|
|
|
|
import { initChart } from '@/scripts/init-chart.js';
|
2022-12-28 05:13:47 +00:00
|
|
|
|
2023-01-02 01:18:47 +00:00
|
|
|
initChart();
|
2022-12-28 05:13:47 +00:00
|
|
|
|
2023-01-03 01:12:37 +00:00
|
|
|
const rootEl = $shallowRef<HTMLDivElement>(null);
|
|
|
|
const chartEl = $shallowRef<HTMLCanvasElement>(null);
|
2022-12-28 05:13:47 +00:00
|
|
|
const now = new Date();
|
|
|
|
let chartInstance: Chart = null;
|
|
|
|
let fetching = $ref(true);
|
|
|
|
|
|
|
|
const { handler: externalTooltipHandler } = useChartTooltip({
|
|
|
|
position: 'middle',
|
|
|
|
});
|
|
|
|
|
|
|
|
async function renderChart() {
|
|
|
|
if (chartInstance) {
|
|
|
|
chartInstance.destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
const wide = rootEl.offsetWidth > 600;
|
|
|
|
const narrow = rootEl.offsetWidth < 400;
|
|
|
|
|
2023-03-15 08:43:13 +00:00
|
|
|
const maxDays = wide ? 10 : narrow ? 5 : 7;
|
2022-12-28 05:13:47 +00:00
|
|
|
|
2023-03-15 08:43:13 +00:00
|
|
|
let raw = await os.api('retention', { });
|
|
|
|
|
2023-05-11 09:20:48 +00:00
|
|
|
raw = raw.slice(0, maxDays + 1);
|
2022-12-28 05:13:47 +00:00
|
|
|
|
|
|
|
const data = [];
|
|
|
|
for (const record of raw) {
|
2023-04-20 01:41:09 +00:00
|
|
|
data.push({
|
|
|
|
x: 0,
|
|
|
|
y: record.createdAt,
|
|
|
|
v: record.users,
|
|
|
|
});
|
|
|
|
|
|
|
|
let i = 1;
|
2022-12-28 05:13:47 +00:00
|
|
|
for (const date of Object.keys(record.data).sort((a, b) => new Date(a).getTime() - new Date(b).getTime())) {
|
|
|
|
data.push({
|
|
|
|
x: i,
|
|
|
|
y: record.createdAt,
|
|
|
|
v: record.data[date],
|
|
|
|
});
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fetching = false;
|
|
|
|
|
|
|
|
await nextTick();
|
|
|
|
|
|
|
|
const color = defaultStore.state.darkMode ? '#b4e900' : '#86b300';
|
|
|
|
|
2023-04-20 01:41:09 +00:00
|
|
|
const getYYYYMMDD = (date: Date) => {
|
|
|
|
const y = date.getFullYear().toString().padStart(2, '0');
|
|
|
|
const m = (date.getMonth() + 1).toString().padStart(2, '0');
|
|
|
|
const d = date.getDate().toString().padStart(2, '0');
|
|
|
|
return `${y}/${m}/${d}`;
|
|
|
|
};
|
|
|
|
|
|
|
|
const max = (createdAt: string) => raw.find(x => x.createdAt === createdAt)!.users;
|
2022-12-28 05:13:47 +00:00
|
|
|
|
2023-03-15 08:43:13 +00:00
|
|
|
const marginEachCell = 12;
|
2022-12-28 05:13:47 +00:00
|
|
|
|
|
|
|
chartInstance = new Chart(chartEl, {
|
|
|
|
type: 'matrix',
|
|
|
|
data: {
|
|
|
|
datasets: [{
|
|
|
|
label: 'Active',
|
|
|
|
data: data,
|
|
|
|
pointRadius: 0,
|
|
|
|
borderWidth: 0,
|
|
|
|
borderJoinStyle: 'round',
|
|
|
|
borderRadius: 3,
|
|
|
|
backgroundColor(c) {
|
|
|
|
const value = c.dataset.data[c.dataIndex].v;
|
2023-05-12 03:15:54 +00:00
|
|
|
const m = max(c.dataset.data[c.dataIndex].y);
|
|
|
|
if (m === 0) {
|
|
|
|
return alpha(color, 0);
|
|
|
|
} else {
|
|
|
|
const a = value / m;
|
|
|
|
return alpha(color, a);
|
|
|
|
}
|
2022-12-28 05:13:47 +00:00
|
|
|
},
|
|
|
|
fill: true,
|
|
|
|
width(c) {
|
|
|
|
const a = c.chart.chartArea ?? {};
|
|
|
|
return (a.right - a.left) / maxDays - marginEachCell;
|
|
|
|
},
|
|
|
|
height(c) {
|
|
|
|
const a = c.chart.chartArea ?? {};
|
|
|
|
return (a.bottom - a.top) / maxDays - (marginEachCell / 1.5);
|
|
|
|
},
|
|
|
|
}],
|
|
|
|
},
|
|
|
|
options: {
|
|
|
|
aspectRatio: wide ? 2 : narrow ? 2 : 2,
|
|
|
|
layout: {
|
|
|
|
padding: {
|
|
|
|
left: 8,
|
|
|
|
right: 0,
|
|
|
|
top: 0,
|
|
|
|
bottom: 0,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
scales: {
|
|
|
|
x: {
|
|
|
|
position: 'top',
|
|
|
|
suggestedMax: maxDays,
|
|
|
|
grid: {
|
|
|
|
display: false,
|
|
|
|
},
|
|
|
|
ticks: {
|
|
|
|
display: true,
|
2022-12-29 00:58:11 +00:00
|
|
|
padding: 0,
|
2022-12-28 05:13:47 +00:00
|
|
|
maxRotation: 0,
|
2022-12-29 00:58:11 +00:00
|
|
|
autoSkipPadding: 0,
|
|
|
|
autoSkip: false,
|
2023-04-20 01:41:09 +00:00
|
|
|
callback: (value, index, values) => value,
|
2022-12-28 05:13:47 +00:00
|
|
|
},
|
2023-05-12 01:29:27 +00:00
|
|
|
title: {
|
|
|
|
display: true,
|
|
|
|
text: 'Days later',
|
|
|
|
},
|
2022-12-28 05:13:47 +00:00
|
|
|
},
|
|
|
|
y: {
|
|
|
|
type: 'time',
|
|
|
|
min: new Date(new Date().getFullYear(), new Date().getMonth(), new Date().getDate() - maxDays),
|
|
|
|
offset: true,
|
|
|
|
reverse: true,
|
|
|
|
position: 'left',
|
|
|
|
time: {
|
|
|
|
unit: 'day',
|
|
|
|
round: 'day',
|
|
|
|
},
|
|
|
|
grid: {
|
|
|
|
display: false,
|
|
|
|
},
|
|
|
|
ticks: {
|
|
|
|
maxRotation: 0,
|
|
|
|
autoSkip: true,
|
|
|
|
padding: 1,
|
|
|
|
font: {
|
|
|
|
size: 9,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
plugins: {
|
|
|
|
legend: {
|
|
|
|
display: false,
|
|
|
|
},
|
|
|
|
tooltip: {
|
|
|
|
enabled: false,
|
|
|
|
callbacks: {
|
|
|
|
title(context) {
|
|
|
|
const v = context[0].dataset.data[context[0].dataIndex];
|
2023-04-20 01:41:09 +00:00
|
|
|
return getYYYYMMDD(new Date(new Date(v.y).getTime() + (v.x * 86400000)));
|
2022-12-28 05:13:47 +00:00
|
|
|
},
|
|
|
|
label(context) {
|
|
|
|
const v = context.dataset.data[context.dataIndex];
|
2023-05-12 03:15:54 +00:00
|
|
|
const m = max(v.y);
|
|
|
|
if (m === 0) {
|
|
|
|
return [`Active: ${v.v} (-%)`];
|
|
|
|
} else {
|
|
|
|
return [`Active: ${v.v} (${Math.round((v.v / m) * 100)}%)`];
|
|
|
|
}
|
2022-12-28 05:13:47 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
//mode: 'index',
|
|
|
|
animation: {
|
|
|
|
duration: 0,
|
|
|
|
},
|
|
|
|
external: externalTooltipHandler,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
onMounted(async () => {
|
|
|
|
renderChart();
|
|
|
|
});
|
|
|
|
</script>
|