2023-02-14 04:40:31 +01:00
|
|
|
<template>
|
|
|
|
<div ref="rootEl">
|
2023-04-08 02:01:42 +02:00
|
|
|
<MkLoading v-if="fetching" />
|
2023-02-14 04:40:31 +01:00
|
|
|
<div v-else>
|
|
|
|
<canvas ref="chartEl"></canvas>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-04-08 02:01:42 +02:00
|
|
|
</template>
|
2023-02-14 04:40:31 +01:00
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2023-04-08 02:01:42 +02:00
|
|
|
import {
|
|
|
|
markRaw,
|
|
|
|
version as vueVersion,
|
|
|
|
onMounted,
|
|
|
|
onBeforeUnmount,
|
|
|
|
nextTick,
|
|
|
|
watch,
|
|
|
|
} from "vue";
|
|
|
|
import { Chart } from "chart.js";
|
|
|
|
import tinycolor from "tinycolor2";
|
|
|
|
import { MatrixController, MatrixElement } from "chartjs-chart-matrix";
|
|
|
|
import * as os from "@/os";
|
|
|
|
import { defaultStore } from "@/store";
|
|
|
|
import { useChartTooltip } from "@/scripts/use-chart-tooltip";
|
|
|
|
import { chartVLine } from "@/scripts/chart-vline";
|
|
|
|
import { alpha } from "@/scripts/color";
|
|
|
|
import { initChart } from "@/scripts/init-chart";
|
2023-02-14 04:40:31 +01:00
|
|
|
|
|
|
|
initChart();
|
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
src: string;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const rootEl = $shallowRef<HTMLDivElement>(null);
|
|
|
|
const chartEl = $shallowRef<HTMLCanvasElement>(null);
|
|
|
|
const now = new Date();
|
|
|
|
let chartInstance: Chart = null;
|
|
|
|
let fetching = $ref(true);
|
|
|
|
|
|
|
|
const { handler: externalTooltipHandler } = useChartTooltip({
|
2023-04-08 02:01:42 +02:00
|
|
|
position: "middle",
|
2023-02-14 04:40:31 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
async function renderChart() {
|
|
|
|
if (chartInstance) {
|
|
|
|
chartInstance.destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
const wide = rootEl.offsetWidth > 700;
|
|
|
|
const narrow = rootEl.offsetWidth < 400;
|
|
|
|
|
|
|
|
const weeks = wide ? 50 : narrow ? 10 : 25;
|
|
|
|
const chartLimit = 7 * weeks;
|
|
|
|
|
|
|
|
const getDate = (ago: number) => {
|
|
|
|
const y = now.getFullYear();
|
|
|
|
const m = now.getMonth();
|
|
|
|
const d = now.getDate();
|
|
|
|
|
|
|
|
return new Date(y, m, d - ago);
|
|
|
|
};
|
|
|
|
|
|
|
|
const format = (arr) => {
|
|
|
|
return arr.map((v, i) => {
|
|
|
|
const dt = getDate(i);
|
2023-04-08 02:01:42 +02:00
|
|
|
const iso = `${dt.getFullYear()}-${(dt.getMonth() + 1)
|
|
|
|
.toString()
|
|
|
|
.padStart(2, "0")}-${dt.getDate().toString().padStart(2, "0")}`;
|
2023-02-14 04:40:31 +01:00
|
|
|
return {
|
|
|
|
x: iso,
|
|
|
|
y: dt.getDay(),
|
|
|
|
d: iso,
|
|
|
|
v,
|
|
|
|
};
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
let values;
|
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
if (props.src === "active-users") {
|
|
|
|
const raw = await os.api("charts/active-users", {
|
|
|
|
limit: chartLimit,
|
|
|
|
span: "day",
|
|
|
|
});
|
2023-02-14 04:40:31 +01:00
|
|
|
values = raw.readWrite;
|
2023-04-08 02:01:42 +02:00
|
|
|
} else if (props.src === "notes") {
|
|
|
|
const raw = await os.api("charts/notes", {
|
|
|
|
limit: chartLimit,
|
|
|
|
span: "day",
|
|
|
|
});
|
2023-02-14 04:40:31 +01:00
|
|
|
values = raw.local.inc;
|
2023-04-08 02:01:42 +02:00
|
|
|
} else if (props.src === "ap-requests-inbox-received") {
|
|
|
|
const raw = await os.api("charts/ap-request", {
|
|
|
|
limit: chartLimit,
|
|
|
|
span: "day",
|
|
|
|
});
|
2023-02-14 04:40:31 +01:00
|
|
|
values = raw.inboxReceived;
|
2023-04-08 02:01:42 +02:00
|
|
|
} else if (props.src === "ap-requests-deliver-succeeded") {
|
|
|
|
const raw = await os.api("charts/ap-request", {
|
|
|
|
limit: chartLimit,
|
|
|
|
span: "day",
|
|
|
|
});
|
2023-02-14 04:40:31 +01:00
|
|
|
values = raw.deliverSucceeded;
|
2023-04-08 02:01:42 +02:00
|
|
|
} else if (props.src === "ap-requests-deliver-failed") {
|
|
|
|
const raw = await os.api("charts/ap-request", {
|
|
|
|
limit: chartLimit,
|
|
|
|
span: "day",
|
|
|
|
});
|
2023-02-14 04:40:31 +01:00
|
|
|
values = raw.deliverFailed;
|
|
|
|
}
|
|
|
|
|
|
|
|
fetching = false;
|
|
|
|
|
|
|
|
await nextTick();
|
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
const color = defaultStore.state.darkMode ? "#ebbcba" : "#d7827e";
|
2023-02-14 04:40:31 +01:00
|
|
|
|
|
|
|
// 視覚上の分かりやすさのため上から最も大きい3つの値の平均を最大値とする
|
2023-04-08 02:01:42 +02:00
|
|
|
const max =
|
|
|
|
values
|
|
|
|
.slice()
|
|
|
|
.sort((a, b) => b - a)
|
|
|
|
.slice(0, 3)
|
|
|
|
.reduce((a, b) => a + b, 0) / 3;
|
2023-02-14 04:40:31 +01:00
|
|
|
|
|
|
|
const min = Math.max(0, Math.min(...values) - 1);
|
|
|
|
|
|
|
|
const marginEachCell = 4;
|
|
|
|
|
|
|
|
chartInstance = new Chart(chartEl, {
|
2023-04-08 02:01:42 +02:00
|
|
|
type: "matrix",
|
2023-02-14 04:40:31 +01:00
|
|
|
data: {
|
2023-04-08 02:01:42 +02:00
|
|
|
datasets: [
|
|
|
|
{
|
|
|
|
label: "Read & Write",
|
|
|
|
data: format(values),
|
|
|
|
pointRadius: 0,
|
|
|
|
borderWidth: 0,
|
|
|
|
borderJoinStyle: "round",
|
|
|
|
borderRadius: 3,
|
|
|
|
backgroundColor(c) {
|
|
|
|
const value = c.dataset.data[c.dataIndex].v;
|
|
|
|
let a = (value - min) / max;
|
|
|
|
if (value !== 0) {
|
|
|
|
// 0でない限りは完全に不可視にはしない
|
|
|
|
a = Math.max(a, 0.05);
|
|
|
|
}
|
|
|
|
return alpha(color, a);
|
|
|
|
},
|
|
|
|
fill: true,
|
|
|
|
width(c) {
|
|
|
|
const a = c.chart.chartArea ?? {};
|
|
|
|
return (a.right - a.left) / weeks - marginEachCell;
|
|
|
|
},
|
|
|
|
height(c) {
|
|
|
|
const a = c.chart.chartArea ?? {};
|
|
|
|
return (a.bottom - a.top) / 7 - marginEachCell;
|
|
|
|
},
|
2023-02-14 04:40:31 +01:00
|
|
|
},
|
2023-04-08 02:01:42 +02:00
|
|
|
],
|
2023-02-14 04:40:31 +01:00
|
|
|
},
|
|
|
|
options: {
|
|
|
|
aspectRatio: wide ? 6 : narrow ? 1.8 : 3.2,
|
|
|
|
layout: {
|
|
|
|
padding: {
|
|
|
|
left: 8,
|
|
|
|
right: 0,
|
|
|
|
top: 0,
|
|
|
|
bottom: 0,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
scales: {
|
|
|
|
x: {
|
2023-04-08 02:01:42 +02:00
|
|
|
type: "time",
|
2023-02-14 04:40:31 +01:00
|
|
|
offset: true,
|
2023-04-08 02:01:42 +02:00
|
|
|
position: "bottom",
|
2023-02-14 04:40:31 +01:00
|
|
|
time: {
|
2023-04-08 02:01:42 +02:00
|
|
|
unit: "week",
|
|
|
|
round: "week",
|
2023-02-14 04:40:31 +01:00
|
|
|
isoWeekday: 0,
|
|
|
|
displayFormats: {
|
2023-04-08 02:01:42 +02:00
|
|
|
day: "M/d",
|
|
|
|
month: "Y/M",
|
|
|
|
week: "M/d",
|
2023-02-14 04:40:31 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
grid: {
|
|
|
|
display: false,
|
|
|
|
},
|
|
|
|
ticks: {
|
|
|
|
display: true,
|
|
|
|
maxRotation: 0,
|
|
|
|
autoSkipPadding: 8,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
y: {
|
|
|
|
offset: true,
|
|
|
|
reverse: true,
|
2023-04-08 02:01:42 +02:00
|
|
|
position: "right",
|
2023-02-14 04:40:31 +01:00
|
|
|
grid: {
|
|
|
|
display: false,
|
|
|
|
},
|
|
|
|
ticks: {
|
|
|
|
maxRotation: 0,
|
|
|
|
autoSkip: true,
|
|
|
|
padding: 1,
|
|
|
|
font: {
|
|
|
|
size: 9,
|
|
|
|
},
|
2023-04-08 02:01:42 +02:00
|
|
|
callback: (value, index, values) =>
|
|
|
|
["", "Mon", "", "Wed", "", "Fri", ""][value],
|
2023-02-14 04:40:31 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
plugins: {
|
|
|
|
legend: {
|
|
|
|
display: false,
|
|
|
|
},
|
|
|
|
tooltip: {
|
|
|
|
enabled: false,
|
|
|
|
callbacks: {
|
|
|
|
title(context) {
|
2023-04-08 02:01:42 +02:00
|
|
|
const v =
|
|
|
|
context[0].dataset.data[context[0].dataIndex];
|
2023-02-14 04:40:31 +01:00
|
|
|
return v.d;
|
|
|
|
},
|
|
|
|
label(context) {
|
|
|
|
const v = context.dataset.data[context.dataIndex];
|
2023-04-08 02:01:42 +02:00
|
|
|
return ["Active: " + v.v];
|
2023-02-14 04:40:31 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
//mode: 'index',
|
|
|
|
animation: {
|
|
|
|
duration: 0,
|
|
|
|
},
|
|
|
|
external: externalTooltipHandler,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
watch(
|
|
|
|
() => props.src,
|
|
|
|
() => {
|
|
|
|
fetching = true;
|
|
|
|
renderChart();
|
|
|
|
}
|
|
|
|
);
|
2023-02-14 04:40:31 +01:00
|
|
|
|
|
|
|
onMounted(async () => {
|
|
|
|
renderChart();
|
|
|
|
});
|
|
|
|
</script>
|