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 import styles from './JourneyView.module.css'; const NODE_HEIGHT = 60; const NODE_GAP = 10; const LINE_WIDTH = 3; export default function JourneyView() { const [selectedNode, setSelectedNode] = useState(null); const [activeNode, setActiveNode] = useState(null); const { report } = useContext(ReportContext); const { data, parameters } = report || {}; useEscapeKey(() => setSelectedNode(null)); const columns = useMemo(() => { if (!data) { return []; } const selectedPaths = selectedNode?.paths ?? []; const activePaths = activeNode?.paths ?? []; return Array(Number(parameters.steps)) .fill(undefined) .map((nodes = {}, index) => { data.forEach(({ items, count }) => { const name = items[index]; if (name) { const selected = !!selectedPaths.find(path => path.items[index] === name); const active = selected && !!activePaths.find(path => path.items[index] === name); if (!nodes[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 }; } else { obj[name].count += count; } return obj; }, {}); nodes[name] = { name, count, total: count, columnIndex: index, selected, active, paths, from: objectToArray(from), }; } else { nodes[name].total += count; } } }); return { nodes: objectToArray(nodes).sort(firstBy('total', -1)), }; }); }, [data, selectedNode, activeNode]); const handleClick = (name: string, index: number, paths: any[]) => { if (name !== selectedNode?.name || index !== selectedNode?.index) { setSelectedNode({ name, index, paths }); } else { setSelectedNode(null); setActiveNode(null); } }; if (!data) { return null; } return (