umami/src/app/(main)/reports/journey/JourneyView.tsx

179 lines
6.5 KiB
TypeScript
Raw Normal View History

2024-06-01 18:45:06 +00:00
import { useContext, useMemo, useState } from 'react';
import { firstBy } from 'thenby';
import classNames from 'classnames';
import { useEscapeKey } from 'components/hooks';
import { objectToArray } from 'lib/data';
import { ReportContext } from '../[reportId]/Report';
// eslint-disable-next-line css-modules/no-unused-class
2024-06-05 02:53:49 +00:00
import styles from './JourneyView.module.css';
2024-05-17 08:42:36 +00:00
const NODE_HEIGHT = 60;
const NODE_GAP = 10;
2024-06-08 05:44:00 +00:00
const LINE_WIDTH = 3;
2024-05-17 08:42:36 +00:00
export default function JourneyView() {
2024-06-05 02:53:49 +00:00
const [selectedNode, setSelectedNode] = useState(null);
const [activeNode, setActiveNode] = useState(null);
2024-05-17 08:42:36 +00:00
const { report } = useContext(ReportContext);
2024-06-04 06:40:38 +00:00
const { data, parameters } = report || {};
2024-06-05 02:53:49 +00:00
useEscapeKey(() => setSelectedNode(null));
2024-06-01 18:45:06 +00:00
const columns = useMemo(() => {
if (!data) {
return [];
}
2024-06-04 06:40:38 +00:00
return Array(Number(parameters.steps))
2024-06-01 18:45:06 +00:00
.fill(undefined)
.map((column = {}, index) => {
2024-06-01 18:45:06 +00:00
data.forEach(({ items, count }) => {
const name = items[index];
const selectedNodes = selectedNode?.paths ?? [];
if (name) {
if (!column[name]) {
const selected = !!selectedNodes.find(a => a.items[index] === name);
const paths = data.filter((d, i) => {
return i !== index && d.items[index] === name;
});
const from =
index > 0 &&
selected &&
paths.reduce((obj, path) => {
const { items, count } = path;
const name = items[index - 1];
if (!obj[name]) {
obj[name] = { name, count: +count };
} else {
obj[name].count += +count;
}
return obj;
}, {});
2024-06-01 18:45:06 +00:00
column[name] = {
name,
2024-06-01 18:45:06 +00:00
total: +count,
columnIndex: index,
selected,
paths,
from: objectToArray(from),
2024-06-01 18:45:06 +00:00
};
} else {
column[name].total += +count;
2024-06-01 18:45:06 +00:00
}
}
});
return {
nodes: objectToArray(column).sort(firstBy('total', -1)),
};
2024-06-01 18:45:06 +00:00
});
2024-06-05 02:53:49 +00:00
}, [data, selectedNode]);
2024-06-01 18:45:06 +00:00
const handleClick = (item: string, index: number, paths: any[]) => {
2024-06-05 02:53:49 +00:00
if (item !== selectedNode?.item || index !== selectedNode?.index) {
setSelectedNode({ item, index, paths });
2024-06-01 18:45:06 +00:00
} else {
2024-06-05 02:53:49 +00:00
setSelectedNode(null);
2024-06-01 18:45:06 +00:00
}
};
2024-05-17 08:42:36 +00:00
if (!data) {
return null;
}
//console.log({ columns, selectedNode, activeNode });
2024-06-01 18:45:06 +00:00
return (
<div className={styles.container}>
<div className={styles.view}>
{columns.map((column, columnIndex) => {
2024-06-01 18:45:06 +00:00
return (
<div
key={columnIndex}
2024-06-08 05:44:00 +00:00
className={classNames(styles.column, { [styles.active]: activeNode })}
2024-06-01 18:45:06 +00:00
>
<div className={styles.header}>
<div className={styles.num}>{columnIndex + 1}</div>
2024-06-01 18:45:06 +00:00
</div>
2024-06-05 02:53:49 +00:00
<div className={styles.nodes}>
2024-06-08 05:44:00 +00:00
{column.nodes.map(({ name, total, selected, paths, from }, nodeIndex) => {
const active =
selected && activeNode?.paths.find(path => path.items[columnIndex] === name);
2024-06-08 05:44:00 +00:00
const lines = from?.reduce((arr, { name }: any) => {
const fromIndex = columns[columnIndex - 1]?.nodes.findIndex(node => {
return node.name === name && node.selected;
});
2024-06-08 05:44:00 +00:00
if (fromIndex > -1) {
arr.push([fromIndex, nodeIndex]);
}
2024-06-08 05:44:00 +00:00
return arr;
}, []);
2024-06-05 02:53:49 +00:00
return (
<div
key={name}
2024-06-05 02:53:49 +00:00
className={classNames(styles.item, {
[styles.selected]: selected,
[styles.active]: active,
2024-06-05 02:53:49 +00:00
})}
onClick={() => handleClick(name, columnIndex, paths)}
onMouseEnter={() => selected && setActiveNode({ name, columnIndex, paths })}
onMouseLeave={() => selected && setActiveNode(null)}
2024-06-05 02:53:49 +00:00
>
<div className={styles.name}>{name}</div>
<div className={styles.count}>{total}</div>
{columnIndex < columns.length &&
2024-06-08 05:44:00 +00:00
lines.map(([fromIndex, nodeIndex], i) => {
const height =
(Math.abs(nodeIndex - fromIndex) + 1) * (NODE_HEIGHT + NODE_GAP) -
NODE_GAP;
const midHeight =
(Math.abs(nodeIndex - fromIndex) - 1) * (NODE_HEIGHT + NODE_GAP) +
NODE_GAP +
LINE_WIDTH;
const nodeName = columns[columnIndex - 1]?.nodes[fromIndex].name;
return (
<div
2024-06-08 05:44:00 +00:00
key={`${fromIndex}${nodeIndex}${i}`}
className={classNames(styles.line, {
[styles.active]:
active &&
activeNode?.paths.find(
path =>
path.items[columnIndex] === name &&
path.items[columnIndex - 1] === nodeName,
),
[styles.up]: fromIndex < nodeIndex,
[styles.down]: fromIndex > nodeIndex,
[styles.flat]: fromIndex === nodeIndex,
})}
style={{ height }}
>
<div className={classNames(styles.segment, styles.start)} />
<div
className={classNames(styles.segment, styles.mid)}
style={{
height: midHeight,
}}
/>
<div className={classNames(styles.segment, styles.end)} />
</div>
);
})}
2024-06-05 02:53:49 +00:00
</div>
);
})}
</div>
2024-06-01 18:45:06 +00:00
</div>
);
})}
</div>
</div>
);
2024-05-17 08:42:36 +00:00
}