tianji/src/client/components/WebsiteOverview.tsx

259 lines
6.7 KiB
TypeScript
Raw Normal View History

2023-09-17 06:41:50 +00:00
import { Button, message, Tag } from 'antd';
2023-09-15 16:03:09 +00:00
import React, { useMemo } from 'react';
import { Column, ColumnConfig } from '@ant-design/charts';
2023-09-01 16:52:43 +00:00
import { ArrowRightOutlined, SyncOutlined } from '@ant-design/icons';
import { DateFilter } from './DateFilter';
import { HealthBar } from './HealthBar';
2023-09-15 16:03:09 +00:00
import {
2023-09-19 11:29:28 +00:00
StatsItemType,
2023-09-15 16:03:09 +00:00
useWorkspaceWebsitePageview,
2023-09-19 11:29:28 +00:00
useWorkspaceWebsiteStats,
2023-09-15 16:03:09 +00:00
useWorspaceWebsites,
WebsiteInfo,
} from '../api/model/website';
import { Loading } from './Loading';
2023-09-15 16:03:09 +00:00
import dayjs from 'dayjs';
import {
DateUnit,
formatDate,
formatDateWithUnit,
getDateArray,
} from '../utils/date';
2023-09-17 06:41:50 +00:00
import { useEvent } from '../hooks/useEvent';
2023-09-19 11:29:28 +00:00
import { MetricCard } from './MetricCard';
import { formatNumber, formatShortTime } from '../utils/common';
import { useTheme } from '../hooks/useTheme';
2023-09-28 10:01:04 +00:00
import { WebsiteOnlineCount } from './WebsiteOnlineCount';
2023-09-01 16:52:43 +00:00
interface WebsiteOverviewProps {
workspaceId: string;
}
export const WebsiteOverview: React.FC<WebsiteOverviewProps> = React.memo(
(props) => {
const { isLoading, websites } = useWorspaceWebsites(props.workspaceId);
if (isLoading) {
return <Loading />;
}
return (
<div>
{websites.map((website) => (
<WebsiteOverviewItem key={website.id} website={website} />
))}
</div>
);
}
);
WebsiteOverview.displayName = 'WebsiteOverview';
const WebsiteOverviewItem: React.FC<{
website: WebsiteInfo;
}> = React.memo((props) => {
2023-09-15 16:03:09 +00:00
const unit: DateUnit = 'hour';
const startDate = dayjs().subtract(1, 'day').add(1, unit).startOf(unit);
const endDate = dayjs().endOf(unit);
2023-09-19 11:29:28 +00:00
const {
pageviews,
sessions,
isLoading: isLoadingPageview,
refetch: refetchPageview,
} = useWorkspaceWebsitePageview(
props.website.workspaceId,
props.website.id,
startDate.unix() * 1000,
endDate.unix() * 1000,
unit
);
const {
stats,
isLoading: isLoadingStats,
refetch: refetchStats,
} = useWorkspaceWebsiteStats(
props.website.workspaceId,
props.website.id,
startDate.unix() * 1000,
endDate.unix() * 1000,
unit
);
2023-09-17 06:41:50 +00:00
const handleRefresh = useEvent(async () => {
2023-09-19 11:29:28 +00:00
await Promise.all([refetchPageview(), refetchStats()]);
2023-09-17 06:41:50 +00:00
message.success('Refreshed');
});
2023-09-15 16:03:09 +00:00
const chartData = useMemo(() => {
2023-09-16 08:12:19 +00:00
const pageviewsArr = getDateArray(pageviews, startDate, endDate, unit);
const sessionsArr = getDateArray(sessions, startDate, endDate, unit);
return [
...pageviewsArr.map((item) => ({ ...item, type: 'pageview' })),
...sessionsArr.map((item) => ({ ...item, type: 'session' })),
];
}, [pageviews, sessions, unit]);
2023-09-15 16:03:09 +00:00
2023-09-19 11:29:28 +00:00
if (isLoadingPageview || isLoadingStats) {
2023-09-15 16:03:09 +00:00
return <Loading />;
}
2023-09-01 16:52:43 +00:00
return (
<div className="mb-10 pb-10 border-b">
2023-09-01 16:52:43 +00:00
<div className="flex">
<div className="flex flex-1 text-2xl font-bold items-center">
<span className="mr-2" title={props.website.domain ?? ''}>
{props.website.name}
</span>
2023-09-01 16:52:43 +00:00
<HealthBar
beats={Array.from({ length: 13 }).map(() => ({
status: 'health',
}))}
2023-09-01 16:52:43 +00:00
/>
2023-09-28 10:01:04 +00:00
<div className="ml-4 text-base font-normal">
<WebsiteOnlineCount
workspaceId={props.website.workspaceId}
websiteId={props.website.id}
/>
</div>
2023-09-01 16:52:43 +00:00
</div>
<div>
<Button type="primary" size="large">
View Details <ArrowRightOutlined />
</Button>
</div>
</div>
<div className="flex mb-10 flex-wrap">
2023-09-19 11:29:28 +00:00
{stats && <MetricsBar stats={stats} />}
2023-09-01 16:52:43 +00:00
<div className="flex items-center gap-2 justify-end w-full lg:w-1/3">
2023-09-17 06:41:50 +00:00
<Button
size="large"
icon={<SyncOutlined />}
onClick={handleRefresh}
/>
2023-09-01 16:52:43 +00:00
<DateFilter />
</div>
</div>
<div>
2023-09-15 16:03:09 +00:00
<StatsChart data={chartData} unit={unit} />
2023-09-01 16:52:43 +00:00
</div>
</div>
);
});
WebsiteOverviewItem.displayName = 'WebsiteOverviewItem';
2023-09-01 16:52:43 +00:00
2023-09-19 11:29:28 +00:00
export const MetricsBar: React.FC<{
stats: {
bounces: StatsItemType;
pageviews: StatsItemType;
totaltime: StatsItemType;
uniques: StatsItemType;
};
2023-09-01 16:52:43 +00:00
}> = React.memo((props) => {
2023-09-19 11:29:28 +00:00
const { pageviews, uniques, bounces, totaltime } = props.stats || {};
const num = Math.min(uniques.value, bounces.value);
const diffs = {
pageviews: pageviews.value - pageviews.change,
uniques: uniques.value - uniques.change,
bounces: bounces.value - bounces.change,
totaltime: totaltime.value - totaltime.change,
};
2023-09-01 16:52:43 +00:00
return (
2023-09-19 11:29:28 +00:00
<div className="flex gap-5 flex-wrap w-full lg:w-2/3">
<MetricCard
label="Views"
value={pageviews.value}
change={pageviews.change}
/>
<MetricCard
label="Visitors"
value={uniques.value}
change={uniques.change}
/>
<MetricCard
label="Bounce rate"
value={uniques.value ? (num / uniques.value) * 100 : 0}
change={
uniques.value && uniques.change
? (num / uniques.value) * 100 -
(Math.min(diffs.uniques, diffs.bounces) / diffs.uniques) *
100 || 0
: 0
}
format={(n) => formatNumber(n) + '%'}
/>
<MetricCard
label="Average visit time"
value={
totaltime.value && pageviews.value
? totaltime.value / (pageviews.value - bounces.value)
: 0
}
change={
totaltime.value && pageviews.value
? (diffs.totaltime / (diffs.pageviews - diffs.bounces) -
totaltime.value / (pageviews.value - bounces.value)) *
-1 || 0
: 0
}
format={(n) =>
`${n < 0 ? '-' : ''}${formatShortTime(
Math.abs(~~n),
['m', 's'],
' '
)}`
}
/>
2023-09-01 16:52:43 +00:00
</div>
);
});
2023-09-19 11:29:28 +00:00
MetricsBar.displayName = 'MetricsBar';
2023-09-01 16:52:43 +00:00
2023-09-15 16:03:09 +00:00
export const StatsChart: React.FC<{
2023-09-16 08:12:19 +00:00
data: { x: string; y: number; type: string }[];
2023-09-15 16:03:09 +00:00
unit: DateUnit;
}> = React.memo((props) => {
const { colors } = useTheme();
const config = useMemo(
() =>
({
data: props.data,
isStack: true,
xField: 'x',
yField: 'y',
seriesField: 'type',
2023-09-15 16:03:09 +00:00
label: {
position: 'middle' as const,
style: {
fill: '#FFFFFF',
opacity: 0.6,
},
},
tooltip: {
title: (t) => formatDate(t),
},
color: [colors.chart.pv, colors.chart.uv],
xAxis: {
label: {
autoHide: true,
autoRotate: false,
formatter: (text) => formatDateWithUnit(text, props.unit),
},
2023-09-15 16:03:09 +00:00
},
} as ColumnConfig),
2023-09-15 16:03:09 +00:00
[props.data, props.unit]
);
2023-09-01 16:52:43 +00:00
return <Column {...config} />;
});
2023-09-15 16:03:09 +00:00
StatsChart.displayName = 'StatsChart';