React
在项目开发中经常会遇到需要开发各种各样加载动画的需求, 可以使用已有的动画库手动改造实现(比如说基于 loaders.css 手动改造), 也可以自己独立设计, 但是这意味着需要花一定的时间调研和开发.
为了减少这部分的时间, 并让加载动画的设计更加简化和易用, 开发了一款开箱即用的加载动画库 react-loading, 内置了多种风格的加载动画, 开发者可以轻松选择自己需要的动画, 并一键安装到自己的项目中, 简单又轻量.
React的加载动画库 - 图1
github地址: https://github.com/MrXujiang/react-loading
接下来就介绍一下这个动画库.

技术实现

@alex_xu/react-loading 是基于 loaders.css 二次封装的 React 加载动画组件库, 帮你轻松的在项目中使用不同风格的加载动画.
React的加载动画库 - 图2
demo.gif
从技术上, 为了让使用者使用的更轻量简单, 将 loaders.css 的每个动画样式和元素拆成了一个个动画组件, 并设计了相对灵活的 api 接口, 使得开发者可以更简单高效的使用, 如下:
React的加载动画库 - 图3

组件设计

该动画组件库采用 React Hooks 和 Typescript 实现, 分为 Loader 容器 和 Spining .
Loader 容器主要是对加载动画做整体封装, 使得对 Spining 动画组件的使用更简单, Spining 主要提供动画 “骨架” . Loader 具体实现如下:

  1. import React from 'react';
  2. import { ILoadingProp } from '../type';
  3. import './index.less';
  4. const Loader: React.FC<ILoadingProp> = ({
  5. text,
  6. visible = true,
  7. textOffset,
  8. textColor,
  9. style,
  10. children,
  11. }) => {
  12. return visible ? (
  13. <div className="react-loader-wrap" style={style}>
  14. {children}
  15. {!!text && (
  16. <div
  17. className="react-loader-text-tip"
  18. style={{ marginTop: `${textOffset}px`, color: textColor }}
  19. >
  20. {' '}
  21. {text}{' '}
  22. </div>
  23. )}
  24. </div>
  25. ) : null;
  26. };
  27. export default Loader;

Spining 动画组件主要是具体的动画内容, 这里选取了 10 余种动画进行封装, 举一个 BallBeat 的例子:

  1. import React, { memo } from 'react';
  2. import Loader from '../Loader';
  3. import { ILoadingProp } from '../type';
  4. import './style';
  5. export default memo(
  6. ({ text, style, color, textColor, size, visible }: ILoadingProp) => {
  7. return (
  8. <Loader text={text} style={style} visible={visible} textColor={textColor}>
  9. <div className="ball-scale">
  10. <div
  11. style={{
  12. backgroundColor: color,
  13. width: `${size}px`,
  14. height: `${size}px`,
  15. }}
  16. ></div>
  17. </div>
  18. </Loader>
  19. );
  20. },
  21. );

在项目中具体使用方式如下:

  1. import { BallPulse, BallClipRotate, SquareSpin } from '@alex_xu/react-loading';
  2. export default () => <BallClipRotate text="H5-Dooring" />;

按需导入配置:

  1. extraBabelPlugins: [
  2. [
  3. 'babel-plugin-import',
  4. {
  5. libraryName: '@alex_xu/react-loading',
  6. libraryDirectory: 'es',
  7. camel2DashComponentName: false,
  8. style: true,
  9. },
  10. ],
  11. ],

后续会持续丰富加载动画库, 包括骨架屏动画等, 欢迎大家使用 并 star 支持~
React的加载动画库 - 图4
github地址: https://github.com/MrXujiang/react-loading