-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[charts] Move axis interaction to selectors #17039
Conversation
Thanks for adding a type label to the PR! 👍 |
Deploy preview: https://deploy-preview-17039--material-ui-x.netlify.app/ |
CodSpeed Performance ReportMerging #17039 will not alter performanceComparing Summary
|
* For a pointer coordinate, this function returns the value and dataIndex associated. | ||
* Returns `null` if the coordinate is outside of values. | ||
*/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This func needs some updated docs :)
Did you check with other charts as well? On my PR I noticed that in some instances, the pointer events from We can probably remove the |
index: number; | ||
}; | ||
|
||
// TODO: probably remove in favor of the two more specific. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we do this in this PR?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've a follow up PR in which it will be easier
packages/x-charts/src/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisValue.ts
Show resolved
Hide resolved
...x-charts/src/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.ts
Outdated
Show resolved
Hide resolved
...ts/src/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.ts
Outdated
Show resolved
Hide resolved
@@ -23,15 +26,15 @@ export default function ChartsXHighlight(props: { | |||
|
|||
const xScale = useXScale(); | |||
|
|||
const store = useStore(); | |||
const axisX = useSelector(store, selectorChartsInteractionXAxis); | |||
const store = useStore<[UseChartCartesianAxisSignature]>(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do we need to type the store now but didn't need it before? 🤔
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TL;TR
The selectorChartXAxis
require to get access to the cartesian data. So selectorChartsInteractionXAxisIndex
does too:
export const selectorChartsInteractionXAxisIndex = createSelector(
[selectorChartsInteractionPointerX, selectorChartXAxis],
(x, xAxes) => (x === null ? null : getAxisIndex(xAxes.axis[xAxes.axisIds[0]], x)),
);
Why in this PR
Before the axis interaciton state was handles only by the interaction plugging. And we were able to defaultize the result of the selector to { x: null, y: null }
if the state do not exist.
Now we use the up to date value of axes with selectorChartXAxis
Why it's not requirering the interaction signature? -> Because it's included by default in the useStore
typing
export function useStore<TSignatures extends ChartAnyPluginSignature[] = []>(): ChartStore<
[...TSignatures, UseChartInteractionSignature, UseChartHighlightSignature]
> {
Is it a good thing?
I think yes. It forces us to take into consideration that this does nto work for polar charts.
An improvement might be to move it from required to optional pluggin. if we have fallback. But that would require to re-work bit the store typing.
…to renaime-internals
Fix #15565 at least for axes
The idea is to limit the stored data to the x/y position of the pointer. Knowing the index or value associated to the pointer position is computed by the selectors. Such that updating the axis will automatically trigger a new computation of the index/value
I still have some issues.
For a reason I ignorewhen the pointer crosses the line the tooltip disappear.Seems to come from the
pointerout
here which looks like a duplicate ofpointerleave
according to the MWN docs:In brief, I suspect the pointer to enter and leave the line item, which triggers the
pointerout
since it's leaving a child of the SVG.mui-x/packages/x-charts/src/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.ts
Lines 113 to 117 in 3d7e504
@JCQuintas Any reason to keep both out and leave?
Demo
Capture.video.du.2025-03-19.15-04-12.mp4
The code of the demo in the recoding