Blame view

天文台pc/tianwentai-ui/node_modules/framer-motion/dist/es/components/MotionConfig/index.mjs 1.79 KB
bc518174   王天杨   提交两个项目文件
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
  "use client";
  import { jsx } from 'react/jsx-runtime';
  import { useContext, useMemo } from 'react';
  import { resolveTransition } from 'motion-dom';
  import { MotionConfigContext } from '../../context/MotionConfigContext.mjs';
  import { loadExternalIsValidProp } from '../../render/dom/utils/filter-props.mjs';
  import { useConstant } from '../../utils/use-constant.mjs';
  
  /**
   * `MotionConfig` is used to set configuration options for all children `motion` components.
   *
   * ```jsx
   * import { motion, MotionConfig } from "framer-motion"
   *
   * export function App() {
   *   return (
   *     <MotionConfig transition={{ type: "spring" }}>
   *       <motion.div animate={{ x: 100 }} />
   *     </MotionConfig>
   *   )
   * }
   * ```
   *
   * @public
   */
  function MotionConfig({ children, isValidProp, ...config }) {
      isValidProp && loadExternalIsValidProp(isValidProp);
      /**
       * Inherit props from any parent MotionConfig components
       */
      const parentConfig = useContext(MotionConfigContext);
      config = { ...parentConfig, ...config };
      config.transition = resolveTransition(config.transition, parentConfig.transition);
      /**
       * Don't allow isStatic to change between renders as it affects how many hooks
       * motion components fire.
       */
      config.isStatic = useConstant(() => config.isStatic);
      /**
       * Creating a new config context object will re-render every `motion` component
       * every time it renders. So we only want to create a new one sparingly.
       */
      const context = useMemo(() => config, [
          JSON.stringify(config.transition),
          config.transformPagePoint,
          config.reducedMotion,
          config.skipAnimations,
      ]);
      return (jsx(MotionConfigContext.Provider, { value: context, children: children }));
  }
  
  export { MotionConfig };
  //# sourceMappingURL=index.mjs.map