refactor: extract charts and metrics to single component

This commit is contained in:
moonrailgun 2023-11-15 22:09:10 +08:00
parent 8e3a81e42f
commit 8fee03999d
3 changed files with 240 additions and 224 deletions

View File

@ -0,0 +1,148 @@
import { AreaConfig, Area } from '@ant-design/charts';
import { Select } from 'antd';
import dayjs, { Dayjs } from 'dayjs';
import { uniqBy } from 'lodash';
import React, { useState, useMemo } from 'react';
import { useSocketSubscribeList } from '../../api/socketio';
import { trpc } from '../../api/trpc';
import { useCurrentWorkspaceId } from '../../store/user';
export const MonitorDataChart: React.FC<{ monitorId: string }> = React.memo(
(props) => {
const workspaceId = useCurrentWorkspaceId();
const { monitorId } = props;
const [rangeType, setRangeType] = useState('recent');
const subscribedDataList = useSocketSubscribeList(
'onMonitorReceiveNewData',
{
filter: (data) => {
return data.monitorId === props.monitorId;
},
}
);
const range = useMemo((): [Dayjs, Dayjs] => {
if (rangeType === '3h') {
return [dayjs().subtract(3, 'hour'), dayjs()];
}
if (rangeType === '6h') {
return [dayjs().subtract(6, 'hour'), dayjs()];
}
if (rangeType === '24h') {
return [dayjs().subtract(24, 'hour'), dayjs()];
}
if (rangeType === '1w') {
return [dayjs().subtract(1, 'week'), dayjs()];
}
return [dayjs().subtract(0.5, 'hour'), dayjs()];
}, [rangeType]);
const { data: _recentData = [] } = trpc.monitor.recentData.useQuery({
workspaceId,
monitorId,
take: 40,
});
const { data: _data = [] } = trpc.monitor.data.useQuery({
workspaceId,
monitorId,
startAt: range[0].valueOf(),
endAt: range[1].valueOf(),
});
const { data, annotations } = useMemo(() => {
const annotations: AreaConfig['annotations'] = [];
let start: number | null = null;
let fetchedData = rangeType === 'recent' ? _recentData : _data;
const data = uniqBy(
[...fetchedData, ...subscribedDataList],
'createdAt'
).map((d, i, arr) => {
const value = d.value > 0 ? d.value : null;
const time = dayjs(d.createdAt).valueOf();
if (!value && !start && arr[i - 1]) {
start = dayjs(arr[i - 1]['createdAt']).valueOf();
} else if (value && start) {
annotations.push({
type: 'region',
start: [start, 'min'],
end: [time, 'max'],
style: {
fill: 'red',
fillOpacity: 0.25,
},
});
start = null;
}
return {
value,
time,
};
});
return { data, annotations };
}, [_recentData, _data, subscribedDataList]);
const config = useMemo<AreaConfig>(() => {
return {
data,
height: 200,
xField: 'time',
yField: 'value',
smooth: true,
meta: {
time: {
formatter(value) {
return dayjs(value).format(
rangeType === '1w' ? 'MM-DD HH:mm' : 'HH:mm'
);
},
},
},
color: 'rgb(34 197 94 / 0.8)',
areaStyle: () => {
return {
fill: 'l(270) 0:rgb(34 197 94 / 0.2) 0.5:rgb(34 197 94 / 0.5) 1:rgb(34 197 94 / 0.8)',
};
},
annotations,
tooltip: {
title: (title, datum) => {
return dayjs(datum.time).format('YYYY-MM-DD HH:mm');
},
formatter(datum) {
return {
name: 'usage',
value: datum.value ? datum.value + 'ms' : 'null',
};
},
},
};
}, [data, rangeType]);
return (
<div>
<div className="mb-4 text-right">
<Select
className="w-20 text-center"
size="small"
value={rangeType}
onChange={(val) => setRangeType(val)}
>
<Select.Option value="recent">Recent</Select.Option>
<Select.Option value="3h">3h</Select.Option>
<Select.Option value="6h">6h</Select.Option>
<Select.Option value="24h">24h</Select.Option>
<Select.Option value="1w">1w</Select.Option>
</Select>
</div>
<Area {...config} />
</div>
);
}
);
MonitorDataChart.displayName = 'MonitorDataChart';

View File

@ -0,0 +1,85 @@
import React, { useMemo } from 'react';
import { trpc } from '../../api/trpc';
import { useCurrentWorkspaceId } from '../../store/user';
import { ErrorTip } from '../ErrorTip';
import { Loading } from '../Loading';
import { getMonitorProvider } from '../modals/monitor/provider';
import { MonitorStatsBlock } from './MonitorStatsBlock';
export const MonitorDataMetrics: React.FC<{
monitorId: string;
monitorType: string;
currectResponse?: number;
}> = React.memo((props) => {
const workspaceId = useCurrentWorkspaceId();
const { monitorId, monitorType, currectResponse } = props;
const { data, isLoading } = trpc.monitor.dataMetrics.useQuery({
workspaceId,
monitorId,
});
const providerOverview = useMemo(() => {
const provider = getMonitorProvider(monitorType);
if (!provider || !provider.overview) {
return null;
}
return (
<>
{provider.overview.map((Component) => (
<Component monitorId={monitorId} />
))}
</>
);
}, [monitorId, monitorType]);
if (isLoading) {
return <Loading />;
}
if (!data) {
return <ErrorTip />;
}
return (
<div className="flex justify-between text-center">
{typeof currectResponse === 'number' && (
<MonitorStatsBlock
title="Response"
desc="(Current)"
text={`${currectResponse} ms`}
/>
)}
<MonitorStatsBlock
title="Avg. Response"
desc="(24 hour)"
text={`${parseFloat(data.recent1DayAvg.toFixed(0))} ms`}
/>
<MonitorStatsBlock
title="Uptime"
desc="(24 hour)"
text={`${parseFloat(
(
(data.recent1DayOnlineCount /
(data.recent1DayOnlineCount + data.recent1DayOfflineCount)) *
100
).toFixed(2)
)} %`}
/>
<MonitorStatsBlock
title="Uptime"
desc="(30 days)"
text={`${parseFloat(
(
(data.recent30DayOnlineCount /
(data.recent30DayOnlineCount + data.recent30DayOfflineCount)) *
100
).toFixed(2)
)} %`}
/>
{providerOverview}
</div>
);
});
MonitorDataMetrics.displayName = 'MonitorDataMetrics';

View File

@ -1,6 +1,6 @@
import { Button, Card, Select, Space, Spin } from 'antd';
import dayjs, { Dayjs } from 'dayjs';
import React, { useMemo, useState } from 'react';
import { Button, Card, Space, Spin } from 'antd';
import dayjs from 'dayjs';
import React, { useState } from 'react';
import {
defaultErrorHandler,
defaultSuccessHandler,
@ -8,19 +8,17 @@ import {
} from '../../api/trpc';
import { useCurrentWorkspaceId } from '../../store/user';
import { Loading } from '../Loading';
import { getMonitorLink, getMonitorProvider } from '../modals/monitor/provider';
import { getMonitorLink } from '../modals/monitor/provider';
import { NotFoundTip } from '../NotFoundTip';
import { MonitorInfo as MonitorInfoType } from '../../../types';
import { Area, AreaConfig } from '@ant-design/charts';
import { MonitorHealthBar } from './MonitorHealthBar';
import { useSocketSubscribeList } from '../../api/socketio';
import { last, uniqBy } from 'lodash-es';
import { ErrorTip } from '../ErrorTip';
import { last } from 'lodash-es';
import { ColorTag } from '../ColorTag';
import { useNavigate } from 'react-router';
import { MonitorStatsBlock } from './MonitorStatsBlock';
import { MonitorEventList } from './MonitorEventList';
import { useEvent } from '../../hooks/useEvent';
import { MonitorDataMetrics } from './MonitorDataMetrics';
import { MonitorDataChart } from './MonitorDataChart';
interface MonitorInfoProps {
monitorId: string;
@ -175,218 +173,3 @@ export const MonitorInfo: React.FC<MonitorInfoProps> = React.memo((props) => {
);
});
MonitorInfo.displayName = 'MonitorInfo';
export const MonitorDataMetrics: React.FC<{
monitorId: string;
monitorType: string;
currectResponse: number;
}> = React.memo((props) => {
const workspaceId = useCurrentWorkspaceId();
const { monitorId, monitorType, currectResponse } = props;
const { data, isLoading } = trpc.monitor.dataMetrics.useQuery({
workspaceId,
monitorId,
});
const providerOverview = useMemo(() => {
const provider = getMonitorProvider(monitorType);
if (!provider || !provider.overview) {
return null;
}
return (
<>
{provider.overview.map((Component) => (
<Component monitorId={monitorId} />
))}
</>
);
}, [monitorId, monitorType]);
if (isLoading) {
return <Loading />;
}
if (!data) {
return <ErrorTip />;
}
return (
<div className="flex justify-between text-center">
<MonitorStatsBlock
title="Response"
desc="(Current)"
text={`${currectResponse} ms`}
/>
<MonitorStatsBlock
title="Avg. Response"
desc="(24 hour)"
text={`${parseFloat(data.recent1DayAvg.toFixed(0))} ms`}
/>
<MonitorStatsBlock
title="Uptime"
desc="(24 hour)"
text={`${parseFloat(
(
(data.recent1DayOnlineCount /
(data.recent1DayOnlineCount + data.recent1DayOfflineCount)) *
100
).toFixed(2)
)} %`}
/>
<MonitorStatsBlock
title="Uptime"
desc="(30 days)"
text={`${parseFloat(
(
(data.recent30DayOnlineCount /
(data.recent30DayOnlineCount + data.recent30DayOfflineCount)) *
100
).toFixed(2)
)} %`}
/>
{providerOverview}
</div>
);
});
MonitorDataMetrics.displayName = 'MonitorDataMetrics';
const MonitorDataChart: React.FC<{ monitorId: string }> = React.memo(
(props) => {
const workspaceId = useCurrentWorkspaceId();
const { monitorId } = props;
const [rangeType, setRangeType] = useState('recent');
const subscribedDataList = useSocketSubscribeList(
'onMonitorReceiveNewData',
{
filter: (data) => {
return data.monitorId === props.monitorId;
},
}
);
const range = useMemo((): [Dayjs, Dayjs] => {
if (rangeType === '3h') {
return [dayjs().subtract(3, 'hour'), dayjs()];
}
if (rangeType === '6h') {
return [dayjs().subtract(6, 'hour'), dayjs()];
}
if (rangeType === '24h') {
return [dayjs().subtract(24, 'hour'), dayjs()];
}
if (rangeType === '1w') {
return [dayjs().subtract(1, 'week'), dayjs()];
}
return [dayjs().subtract(0.5, 'hour'), dayjs()];
}, [rangeType]);
const { data: _recentData = [] } = trpc.monitor.recentData.useQuery({
workspaceId,
monitorId,
take: 40,
});
const { data: _data = [] } = trpc.monitor.data.useQuery({
workspaceId,
monitorId,
startAt: range[0].valueOf(),
endAt: range[1].valueOf(),
});
const { data, annotations } = useMemo(() => {
const annotations: AreaConfig['annotations'] = [];
let start: number | null = null;
let fetchedData = rangeType === 'recent' ? _recentData : _data;
const data = uniqBy(
[...fetchedData, ...subscribedDataList],
'createdAt'
).map((d, i, arr) => {
const value = d.value > 0 ? d.value : null;
const time = dayjs(d.createdAt).valueOf();
if (!value && !start && arr[i - 1]) {
start = dayjs(arr[i - 1]['createdAt']).valueOf();
} else if (value && start) {
annotations.push({
type: 'region',
start: [start, 'min'],
end: [time, 'max'],
style: {
fill: 'red',
fillOpacity: 0.25,
},
});
start = null;
}
return {
value,
time,
};
});
return { data, annotations };
}, [_recentData, _data, subscribedDataList]);
const config = useMemo<AreaConfig>(() => {
return {
data,
height: 200,
xField: 'time',
yField: 'value',
smooth: true,
meta: {
time: {
formatter(value) {
return dayjs(value).format(
rangeType === '1w' ? 'MM-DD HH:mm' : 'HH:mm'
);
},
},
},
color: 'rgb(34 197 94 / 0.8)',
areaStyle: () => {
return {
fill: 'l(270) 0:rgb(34 197 94 / 0.2) 0.5:rgb(34 197 94 / 0.5) 1:rgb(34 197 94 / 0.8)',
};
},
annotations,
tooltip: {
title: (title, datum) => {
return dayjs(datum.time).format('YYYY-MM-DD HH:mm');
},
formatter(datum) {
return {
name: 'usage',
value: datum.value ? datum.value + 'ms' : 'null',
};
},
},
};
}, [data, rangeType]);
return (
<div>
<div className="mb-4 text-right">
<Select
className="w-20 text-center"
size="small"
value={rangeType}
onChange={(val) => setRangeType(val)}
>
<Select.Option value="recent">Recent</Select.Option>
<Select.Option value="3h">3h</Select.Option>
<Select.Option value="6h">6h</Select.Option>
<Select.Option value="24h">24h</Select.Option>
<Select.Option value="1w">1w</Select.Option>
</Select>
</div>
<Area {...config} />
</div>
);
}
);
MonitorDataChart.displayName = 'MonitorDataChart';