@mui/x-charts
Version:
The community edition of the Charts components (MUI X).
55 lines (51 loc) • 2.19 kB
JavaScript
'use client';
import { Globals, useIsomorphicLayoutEffect } from '@react-spring/web';
import * as React from 'react';
import { AnimationContext } from "./AnimationContext.js";
import { jsx as _jsx } from "react/jsx-runtime";
function AnimationProvider(props) {
// Part of the behavior was taken from:
// https://github.com/pmndrs/react-spring/blob/fd65b605b85c3a24143c4ce9dd322fdfca9c66be/packages/shared/src/hooks/useReducedMotion.ts
const {
children,
skipAnimation: inSkipAnimation
} = props;
// Skip animation test/jsdom
const isAnimationDisabledEnvironment = typeof window === 'undefined' || !window?.matchMedia;
// We use the value of `isAnimationDisabledEnvironment` as the initial value of `skipAnimation` to avoid
// re-rendering the component on environments where matchMedia is not supported, hence skipAnimation will always be true.
const [skipAnimation, setSkipAnimation] = React.useState(isAnimationDisabledEnvironment || undefined);
useIsomorphicLayoutEffect(() => {
if (isAnimationDisabledEnvironment) {
return undefined;
}
const handleMediaChange = event => {
// This hook can remove animation but never activate it.
const inputValue = event.matches || undefined;
setSkipAnimation(inputValue);
Globals.assign({
skipAnimation: inputValue
});
};
const mql = window.matchMedia('(prefers-reduced-motion)');
handleMediaChange(mql);
// MatchMedia is not fully supported in all environments, so we need to check if it exists before calling addEventListener
mql?.addEventListener?.('change', handleMediaChange);
return () => {
mql?.removeEventListener?.('change', handleMediaChange);
};
}, []);
const value = React.useMemo(() => ({
isInitialized: true,
data: {
// If dev sets `skipAnimation` to true, it will skip all animations.
// If dev sets `skipAnimation` to false, it will use user's preference.
skipAnimation: inSkipAnimation || skipAnimation
}
}), [skipAnimation, inSkipAnimation]);
return /*#__PURE__*/_jsx(AnimationContext.Provider, {
value: value,
children: children
});
}
export { AnimationProvider };