* start moving ui to redux tlk * remove unused reducer * changes for gdpr and site types * ui: migrating duck/roles to mobx * ui: drop unreferenced types * ui: drop unreferenced types * ui: move player slice reducer to mobx family * ui: move assignments to issueReportingStore.ts * remove issues store * some fixes after issues store * remove errors reducer, drop old components * finish removing errors reducer * start moving integrations state to mobx * change(ui): funnel duck cleanup * change(ui): custom fields * change(ui): customMetrics cleanup * change(ui): customMetrics cleanup * change(ui): duck/filters minor cleanup * change(ui): duck/filters cleanup * change(ui): duck/customMetrics cleanup and upgrades * fix integrations service, fix babel config to >.25 + not ie * refactoring integrations reducers etc WIP * finish removing integrations state * some fixes for integrated check * start of projects refactoring * move api and "few" files to new project store * new batch for site -> projects * fix setid context * move all critical components, drop site duck * remove all duck/site refs, remove old components * fixup for SessionTags.tsx, remove duck/sources (?) * move session store * init sessionstore outside of context * fix userfilter * replace simple actions for session store * sessions sotre * Rtm temp (#2597) * change(ui): duck/search wip * change(ui): duck/search wip * change(ui): duck/search wip * change(ui): duck/searchLive wip * change(ui): duck/searchLive wip * change(ui): duck/searchLive wip * change(ui): duck/searchLive wip * change(ui): search states * change(ui): search states * change(ui): search states * change(ui): fix savedSearch store * change(ui): fix savedSearch store * some fixes for session connector * change(ui): fix savedSearch store * change(ui): fix searchLive * change(ui): fix searchLive * fixes for session replay * change(ui): bookmark fetch * last components for sessions * add fetchautoplaylist * finish session reducer, remove deleted reducers * change(ui): fix the search fetch * change(ui): fix the search fetch * fix integrations call ctx * ensure ctx for sessionstore * fix(ui): checking for latest sessions path * start removing user reducer * removing user reducer pt2... * finish user store * remove rand log * fix crashes * tinkering workflow file for tracker test * making sure prefetched sessions work properly * fix conflict * fix router redirects during loading --------- Co-authored-by: Shekar Siri <sshekarsiri@gmail.com>
120 lines
3.2 KiB
JavaScript
120 lines
3.2 KiB
JavaScript
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 DateAgo from './DateAgo';
|
|
import DistributionBar from './DistributionBar';
|
|
import Trend from './Trend';
|
|
import { errorService } from 'App/services';
|
|
|
|
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 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: '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 [data, setData] = React.useState({
|
|
chart24: [],
|
|
chart30: [],
|
|
tags: [],
|
|
});
|
|
const [loading, setLoading] = React.useState(false);
|
|
const { className } = props;
|
|
const { errorStore } = useStore();
|
|
const error = errorStore.instance;
|
|
|
|
|
|
const grabData = async () => {
|
|
setLoading(true);
|
|
errorService.fetchErrorStats(error.errorId)
|
|
.then(data => {
|
|
setData(dataWrapper(data))
|
|
})
|
|
.finally(() => setLoading(false));
|
|
}
|
|
|
|
React.useEffect(() => {
|
|
setData(dataWrapper(error))
|
|
}, [error.errorId])
|
|
|
|
return (
|
|
<div className={cn(className, 'pl-5')}>
|
|
<h3 className="text-xl mb-2">Overview</h3>
|
|
<Trend chart={data.chart24} title="Past 24 hours" />
|
|
<div className="mb-6" />
|
|
<Trend chart={data.chart30} title="Last 30 days" timeFormat={'l'} />
|
|
<div className="mb-6" />
|
|
<DateAgo
|
|
className="my-4"
|
|
title="First Seen"
|
|
timestamp={error.firstOccurrence}
|
|
/>
|
|
<DateAgo
|
|
className="my-4"
|
|
title="Last Seen"
|
|
timestamp={error.lastOccurrence}
|
|
/>
|
|
{data.tags.length > 0 && <h4 className="text-xl mt-6 mb-3">Summary</h4>}
|
|
<Loader loading={loading}>
|
|
{data.tags.map(({ name, partitions }) => (
|
|
<DistributionBar
|
|
key={name}
|
|
title={name}
|
|
partitions={partitions}
|
|
className="mb-6"
|
|
/>
|
|
))}
|
|
</Loader>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default observer(SideSection);
|