File size: 9,385 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 |
import { useEffect } from 'react';
import { PayloadAction } from '@reduxjs/toolkit';
import { useAppDispatch, useAppSelector } from '../state/hooks';
import { selectEventEmitter, selectSyncId, selectSyncMethod } from '../state/selectors/rootPropsSelectors';
import { BRUSH_SYNC_EVENT, eventCenter, TOOLTIP_SYNC_EVENT } from '../util/Events';
import { createEventEmitter } from '../state/optionsSlice';
import { setSyncInteraction, TooltipIndex, TooltipSyncState } from '../state/tooltipSlice';
import { selectTooltipDataKey } from '../state/selectors/selectors';
import { ChartCoordinate, Coordinate, TickItem, TooltipEventType } from '../util/types';
import { TooltipTrigger } from '../chart/types';
import { selectTooltipAxisTicks } from '../state/selectors/tooltipSelectors';
import { selectSynchronisedTooltipState } from './syncSelectors';
import { useChartLayout, useViewBox } from '../context/chartLayoutContext';
import { BrushStartEndIndex } from '../context/brushUpdateContext';
import { setDataStartEndIndexes } from '../state/chartDataSlice';
import { MouseHandlerDataParam } from './types';
const noop = () => {};
function useTooltipSyncEventsListener() {
const mySyncId = useAppSelector(selectSyncId);
const myEventEmitter = useAppSelector(selectEventEmitter);
const dispatch = useAppDispatch();
const syncMethod = useAppSelector(selectSyncMethod);
const tooltipTicks = useAppSelector(selectTooltipAxisTicks);
const layout = useChartLayout();
const viewBox = useViewBox();
const className = useAppSelector(state => state.rootProps.className);
useEffect(() => {
if (mySyncId == null) {
// This chart is not synchronised with any other chart so we don't need to listen for any events.
return noop;
}
const listener = (incomingSyncId: number | string, action: PayloadAction<TooltipSyncState>, emitter: symbol) => {
if (myEventEmitter === emitter) {
// We don't want to dispatch actions that we sent ourselves.
return;
}
if (mySyncId !== incomingSyncId) {
// This event is not for this chart
return;
}
if (syncMethod === 'index') {
dispatch(action);
// This is the default behaviour, we don't need to do anything else.
return;
}
if (tooltipTicks == null) {
// for the other two sync methods, we need the ticks to be available
return;
}
let activeTick: TickItem | undefined;
if (typeof syncMethod === 'function') {
/*
* This is what the data shape in 2.x CategoricalChartState used to look like.
* In 3.x we store things differently but let's try to keep the old shape for compatibility.
*/
const syncMethodParam: MouseHandlerDataParam = {
activeTooltipIndex: action.payload.index == null ? undefined : Number(action.payload.index),
isTooltipActive: action.payload.active,
activeIndex: action.payload.index == null ? undefined : Number(action.payload.index),
activeLabel: action.payload.label,
activeDataKey: action.payload.dataKey,
activeCoordinate: action.payload.coordinate,
};
// Call a callback function. If there is an application specific algorithm
const activeTooltipIndex = syncMethod(tooltipTicks, syncMethodParam);
activeTick = tooltipTicks[activeTooltipIndex];
} else if (syncMethod === 'value') {
// labels are always strings, tick.value might be a string or a number, depending on axis type
activeTick = tooltipTicks.find(tick => String(tick.value) === action.payload.label);
}
const { coordinate } = action.payload;
if (activeTick == null || action.payload.active === false || coordinate == null || viewBox == null) {
dispatch(
setSyncInteraction({
active: false,
coordinate: undefined,
dataKey: undefined,
index: null,
label: undefined,
}),
);
return;
}
const { x, y } = coordinate;
const validateChartX = Math.min(x, viewBox.x + viewBox.width);
const validateChartY = Math.min(y, viewBox.y + viewBox.height);
const activeCoordinate: Coordinate = {
x: layout === 'horizontal' ? activeTick.coordinate : validateChartX,
y: layout === 'horizontal' ? validateChartY : activeTick.coordinate,
};
const syncAction = setSyncInteraction({
active: action.payload.active,
coordinate: activeCoordinate,
dataKey: action.payload.dataKey,
index: String(activeTick.index),
label: action.payload.label,
});
dispatch(syncAction);
};
eventCenter.on(TOOLTIP_SYNC_EVENT, listener);
return () => {
eventCenter.off(TOOLTIP_SYNC_EVENT, listener);
};
}, [className, dispatch, myEventEmitter, mySyncId, syncMethod, tooltipTicks, layout, viewBox]);
}
function useBrushSyncEventsListener() {
const mySyncId = useAppSelector(selectSyncId);
const myEventEmitter = useAppSelector(selectEventEmitter);
const dispatch = useAppDispatch();
useEffect(() => {
if (mySyncId == null) {
// This chart is not synchronised with any other chart so we don't need to listen for any events.
return noop;
}
const listener = (incomingSyncId: number | string, action: BrushStartEndIndex, emitter: symbol) => {
if (myEventEmitter === emitter) {
// We don't want to dispatch actions that we sent ourselves.
return;
}
if (mySyncId === incomingSyncId) {
dispatch(setDataStartEndIndexes(action));
}
};
eventCenter.on(BRUSH_SYNC_EVENT, listener);
return () => {
eventCenter.off(BRUSH_SYNC_EVENT, listener);
};
}, [dispatch, myEventEmitter, mySyncId]);
}
/**
* Will receive synchronisation events from other charts.
*
* Reads syncMethod from state and decides how to synchronise the tooltip based on that.
*
* @returns void
*/
export function useSynchronisedEventsFromOtherCharts() {
const dispatch = useAppDispatch();
useEffect(() => {
dispatch(createEventEmitter());
}, [dispatch]);
useTooltipSyncEventsListener();
useBrushSyncEventsListener();
}
/**
* Will send events to other charts.
* If syncId is undefined, no events will be sent.
*
* This ignores the syncMethod, because that is set and computed on the receiving end.
*
* @param tooltipEventType from Tooltip
* @param trigger from Tooltip
* @param activeCoordinate from state
* @param activeLabel from state
* @param activeIndex from state
* @param isTooltipActive from state
* @returns void
*/
export function useTooltipChartSynchronisation(
tooltipEventType: TooltipEventType | undefined,
trigger: TooltipTrigger,
activeCoordinate: ChartCoordinate | undefined,
activeLabel: string | number | undefined,
activeIndex: TooltipIndex | undefined,
isTooltipActive: boolean,
) {
const activeDataKey = useAppSelector(state => selectTooltipDataKey(state, tooltipEventType, trigger));
const eventEmitterSymbol = useAppSelector(selectEventEmitter);
const syncId = useAppSelector(selectSyncId);
const syncMethod = useAppSelector(selectSyncMethod);
const tooltipState = useAppSelector(selectSynchronisedTooltipState);
const isReceivingSynchronisation = tooltipState?.active;
useEffect(() => {
if (isReceivingSynchronisation) {
/*
* This chart currently has active tooltip, synchronised from another chart.
* Let's not send any outgoing synchronisation events while that's happening
* to avoid infinite loops.
*/
return;
}
if (syncId == null) {
/*
* syncId is not set, means that this chart is not synchronised with any other chart,
* means we don't need to send synchronisation events
*/
return;
}
if (eventEmitterSymbol == null) {
/*
* When using Recharts internal hooks and selectors outside charts context,
* these properties will be undefined. Let's return silently instead of throwing an error.
*/
return;
}
const syncAction = setSyncInteraction({
active: isTooltipActive,
coordinate: activeCoordinate,
dataKey: activeDataKey,
index: activeIndex,
label: typeof activeLabel === 'number' ? String(activeLabel) : activeLabel,
});
eventCenter.emit(TOOLTIP_SYNC_EVENT, syncId, syncAction, eventEmitterSymbol);
}, [
isReceivingSynchronisation,
activeCoordinate,
activeDataKey,
activeIndex,
activeLabel,
eventEmitterSymbol,
syncId,
syncMethod,
isTooltipActive,
]);
}
export function useBrushChartSynchronisation() {
const syncId = useAppSelector(selectSyncId);
const eventEmitterSymbol = useAppSelector(selectEventEmitter);
const brushStartIndex = useAppSelector(state => state.chartData.dataStartIndex);
const brushEndIndex = useAppSelector(state => state.chartData.dataEndIndex);
useEffect(() => {
if (syncId == null || brushStartIndex == null || brushEndIndex == null || eventEmitterSymbol == null) {
return;
}
const syncAction: BrushStartEndIndex = { startIndex: brushStartIndex, endIndex: brushEndIndex };
eventCenter.emit(BRUSH_SYNC_EVENT, syncId, syncAction, eventEmitterSymbol);
}, [brushEndIndex, brushStartIndex, eventEmitterSymbol, syncId]);
}
|