openreplay/frontend/app/components/Errors/Error/SideSection.tsx
2025-03-13 11:45:22 +01:00

114 lines
3 KiB
TypeScript

import cn from 'classnames';
import { observer } from 'mobx-react-lite';
import React from 'react';
import { countries } from 'App/constants';
import { useStore } from 'App/mstore';
import { Loader } from 'UI';
import { errorService } from 'App/services';
import DateAgo from './DateAgo';
import DistributionBar from './DistributionBar';
import Trend from './Trend';
import { useTranslation } from 'react-i18next';
import i18n from 'App/i18n'
const MAX_PERCENTAGE = 3;
const MIN_COUNT = 4;
const MAX_COUNT = 10;
function hidePredicate(percentage, index) {
if (index < MIN_COUNT) return false;
if (index < MAX_COUNT && percentage < MAX_PERCENTAGE) return false;
return true;
}
function partitionsWrapper(partitions = [], mapCountry = false) {
const t = i18n.t
const counts = partitions.map(({ count }) => count);
const sum = counts.reduce((a, b) => parseInt(a) + parseInt(b), 0);
if (sum === 0) {
return [];
}
const otherPrcs = counts.map((c) => (c / sum) * 100).filter(hidePredicate);
const otherPrcsSum = otherPrcs.reduce((a, b) => a + b, 0);
const showLength = partitions.length - otherPrcs.length;
const show = partitions
.sort((a, b) => b.count - a.count)
.slice(0, showLength)
.map((p) => ({
label: mapCountry ? countries[p.name] || 'Unknown' : p.name,
prc: (p.count / sum) * 100,
}));
if (otherPrcsSum > 0) {
show.push({
label: t('Other'),
prc: otherPrcsSum,
other: true,
});
}
return show;
}
function tagsWrapper(tags = []) {
return tags.map(({ name, partitions }) => ({
name,
partitions: partitionsWrapper(partitions, name === 'country'),
}));
}
function dataWrapper(data = {}) {
return {
chart24: data.chart24 || [],
chart30: data.chart30 || [],
tags: tagsWrapper(data.tags),
};
}
function SideSection(props) {
const { t } = useTranslation();
const [data, setData] = React.useState({
chart24: [],
chart30: [],
tags: [],
});
const { className } = props;
const { errorStore } = useStore();
const error = errorStore.instance;
React.useEffect(() => {
setData(dataWrapper(error));
}, [error.errorId]);
return (
<div className={cn(className, 'pl-5')}>
<h3 className="text-xl mb-2">{t('Overview')}</h3>
<Trend chart={data.chart24} title={t('Past 24 hours')} />
<div className="mb-6" />
<Trend chart={data.chart30} title={t('Last 30 days')} timeFormat="l" />
<div className="mb-6" />
<DateAgo
className="my-4"
title={t('First Seen')}
timestamp={error.firstOccurrence}
/>
<DateAgo
className="my-4"
title={t('Last Seen')}
timestamp={error.lastOccurrence}
/>
{data.tags.length > 0 && (
<h4 className="text-xl mt-6 mb-3">{t('Summary')}</h4>
)}
{data.tags.map(({ name, partitions }) => (
<DistributionBar
key={name}
title={name}
partitions={partitions}
className="mb-6"
/>
))}
</div>
);
}
export default observer(SideSection);