* Various UX, UI and Functional Improvements in Dashboards & Cards - Depth filter of Sankey chart data in frontend - Dashboard & Cards empty state view updates - Disabled save image feature on cards * Fixed empty views and headers * Various improvements across dashboards and cards.
100 lines
3.1 KiB
TypeScript
100 lines
3.1 KiB
TypeScript
import React from 'react';
|
|
import { useStore } from 'App/mstore';
|
|
import { observer } from 'mobx-react-lite';
|
|
import ClickMapRenderer from 'App/components/Session/Player/ClickMapRenderer';
|
|
import { NoContent } from 'App/components/ui';
|
|
import {InfoCircleOutlined} from '@ant-design/icons';
|
|
|
|
function ClickMapCard() {
|
|
const [customSession, setCustomSession] = React.useState<any>(null);
|
|
const { metricStore, dashboardStore, sessionStore } = useStore();
|
|
const fetchInsights = sessionStore.fetchInsights;
|
|
const insights = sessionStore.insights;
|
|
const onMarkerClick = (s: string, innerText: string) => {
|
|
metricStore.changeClickMapSearch(s, innerText);
|
|
};
|
|
|
|
const sessionId = metricStore.instance.data.sessionId;
|
|
const url = metricStore.instance.data.path;
|
|
const operator = metricStore.instance.series[0]?.filter.filters[0]?.operator ? metricStore.instance.series[0].filter.filters[0].operator : 'startsWith'
|
|
|
|
|
|
React.useEffect(() => {
|
|
return () => setCustomSession(null);
|
|
}, []);
|
|
|
|
React.useEffect(() => {
|
|
if (
|
|
metricStore.instance.data.domURL &&
|
|
sessionId &&
|
|
sessionId !== customSession?.sessionId
|
|
) {
|
|
setCustomSession(null);
|
|
setTimeout(() => {
|
|
setCustomSession(metricStore.instance.data);
|
|
}, 100);
|
|
}
|
|
}, [metricStore.instance, sessionId]);
|
|
|
|
React.useEffect(() => {
|
|
if (!url || !sessionId) return;
|
|
const rangeValue = dashboardStore.drillDownPeriod.rangeValue;
|
|
const startDate = dashboardStore.drillDownPeriod.start;
|
|
const endDate = dashboardStore.drillDownPeriod.end;
|
|
void fetchInsights({
|
|
url: url || '/',
|
|
startDate,
|
|
endDate,
|
|
rangeValue,
|
|
clickRage: metricStore.clickMapFilter,
|
|
operator,
|
|
});
|
|
}, [
|
|
sessionId,
|
|
url,
|
|
dashboardStore.drillDownPeriod.start,
|
|
dashboardStore.drillDownPeriod.end,
|
|
dashboardStore.drillDownPeriod.rangeValue,
|
|
metricStore.clickMapFilter,
|
|
]);
|
|
|
|
if (!metricStore.instance.data.domURL || insights.length === 0) {
|
|
return (
|
|
<NoContent
|
|
style={{ minHeight: 220 }}
|
|
title={
|
|
<div className="flex items-center relative">
|
|
<InfoCircleOutlined className='hidden md:inline-block mr-1' />
|
|
Set a start point to visualize the heatmap. If set, try adjusting filters.
|
|
</div>
|
|
}
|
|
show={true}
|
|
/>
|
|
);
|
|
}
|
|
|
|
if (!metricStore.instance.data?.sessionId || !customSession) {
|
|
return <div className="py-2">Loading session</div>;
|
|
}
|
|
|
|
const jumpToEvent = metricStore.instance.data.events.find(
|
|
(evt: Record<string, any>) => {
|
|
if (url) return evt.path.includes(url);
|
|
return evt;
|
|
}
|
|
) || { timestamp: metricStore.instance.data.startTs };
|
|
const ts = jumpToEvent.timestamp ?? metricStore.instance.data.startTs;
|
|
const domTime = jumpToEvent.domBuildingTime ?? 0;
|
|
const jumpTimestamp = ts - metricStore.instance.data.startTs + domTime + 99; // 99ms safety margin to give some time for the DOM to load
|
|
return (
|
|
<div id="clickmap-render">
|
|
<ClickMapRenderer
|
|
session={customSession}
|
|
jumpTimestamp={jumpTimestamp}
|
|
onMarkerClick={onMarkerClick}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default observer(ClickMapCard);
|