Antd Menu组件应该如何结合react-router Link组件?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Antd Menu组件应该如何结合react-router Link组件?相关的知识,希望对你有一定的参考价值。

参考技术A 在通过create-react-app脚手架搭建项目,antd作为UI部分的实现。
通过侧边栏导航Menu的Menu.Item控制Content部分的变化。

干货 | antd 源码解读 notification


Notification

这是一个全局变量的组件,可以在任意地方调用其函数就能够生成一个,我们就来看看这个组件又是用了什么奇巧淫技来实现的。

-- 注意:解读的antd的源码版本为 2.13.4 rc-notification 版本为 2.0.0 结合源码查看的时候不要下载错了。

本节讲点

  1. 查看 notification 组件源码的文件顺序和入口点

  2. rc-utils 组件中的 createChainedFunction 函数

  3. 缓存机制

  4. ReactDOM.unmountComponentAtNode

快速阅读代码

我将带大家使用 略览 代码的方法来进行一个组件的快速通读,这就跟高中英语阅读时使用的一种阅读方法一样,快速阅读,略过细节,抓主线路,理清整个组件工作原理之后再去查看细节。

1. antd-design-master/components/index.tsx

因为使用方法是直接使用的 notification.api(config),所以想到先去看看是怎么抛出的。 export{defaultasnotification}from'./notification'

2. antd-design-master/components/notification/index.tsx

再看看引用的文件是怎么抛出的。 exportdefaultapiasNotificationApi;

3. antd-design-master/components/notification/index.tsx

由下往上看代码,看到 api 的构成,再看到 api.notice-> functionnotice-> functiongetNotificationInstance-> (Notificationasany).newInstance-> importNotificationfrom'rc-notification';

 
   
   
 
  1.    getNotificationInstance(

  2.      outerPrefixCls,

  3.      args.placement || defaultPlacement

  4.    ).notice({

  5.      content: (

  6.        <div className={iconNode ? `${prefixCls}-with-icon` : ''}>

  7.          {iconNode}

  8.          <div className={`${prefixCls}-message`}>

  9.            {autoMarginTag}

  10.            {args.message}

  11.          </div>

  12.          <div className={`${prefixCls}-description`}>{args.description}</div>

  13.          {args.btn ? <span className={`${prefixCls}-btn`}>{args.btn}</span> : null}

  14.        </div>

  15.      ),

  16.      duration,

  17.      closable: true,

  18.      onClose: args.onClose,

  19.      key: args.key,

  20.      style: args.style || {},

  21.      className: args.className,

  22.    })

在这个文件中比较重要的一条代码线就是上面展示的这一条,剩下的代码可以一眼带过,比较特殊的就是他将生成的 notification 实例都存在一个全局常量中,方便第二次使用只要这个实例没有被 destroy。

4. rc-notification/src/index.js

找到入口文件 importNotificationfrom'./Notification';

5. rc-notification/src/Notification.jsx

在上面第 3 条我们看到有的一个方法 newInstance 是用来创建新实例,所以我们在这个文件中也可以看到相应的代码 Notification.newInstance=functionnewNotificationInstance,在这个函数中我们继续略览代码,看到 ReactDOM.render(<Notification{...props}ref={ref}/>,div); 我们知道这是将一个组件渲染在一个 dom 节点,所以下一个查看点就应该是 Notification 这个组件类。

6. rc-notification/src/Notification.jsx

看到文件上面 classNotificationextendsComponent,可以看到整个组件的实现,我们可以在 render 函数中看到一个循环输出,那就是在循环输出 state 中存的 notice, state 中的 notice 是通过上面第 3 点展示的代码,获取实例之后使用 notice 函数调用的实例的 add 函数进行添加的。

 
   
   
 
  1.  const onClose = createChainedFunction(this.remove.bind(this, notice.key), notice.onClose);

  2.  return (<Notice

  3.    prefixCls={props.prefixCls}

  4.    {...notice}

  5.    onClose={onClose}

  6.  >

  7.    {notice.content}

  8.  </Notice>);

7. rc-notification/src/Notice.jsx

 
   
   
 
  1.  componentDidMount() {

  2.    if (this.props.duration) {

  3.      this.closeTimer = setTimeout(() => {

  4.        this.close();

  5.      }, this.props.duration * 1000);

  6.    }

  7.  }

  8.  componentWillUnmount() {

  9.    this.clearCloseTimer();

  10.  }

  11.  clearCloseTimer = () => {

  12.    if (this.closeTimer) {

  13.      clearTimeout(this.closeTimer);

  14.      this.closeTimer = null;

  15.    }

  16.  }

  17.  close = () => {

  18.    this.clearCloseTimer();

  19.    this.props.onClose();

  20.  }

这个文件中玄妙之处其实在于以上三个函数,在 componentDidMount 之时,添加了一个定时器,将在规定时间之后删除掉当前的这个提示窗,并且这个删除动作是交由给外层文件去删除当前这个提示框的实例进行的也就是第 6 点文件中的 remove 函数,在最新的(3.0.0)rc-notification 中添加了以下代码,为了能够在鼠标移上去之后不让消息框消失,增加了用户体验度。

 
   
   
 
  1.  componentDidMount() {

  2.    this.startCloseTimer();

  3.  }

  4.  componentWillUnmount() {

  5.    this.clearCloseTimer();

  6.  }

  7.  close = () => {

  8.    this.clearCloseTimer();

  9.    this.props.onClose();

  10.  }

  11.  startCloseTimer = () => {

  12.    if (this.props.duration) {

  13.      this.closeTimer = setTimeout(() => {

  14.        this.close();

  15.      }, this.props.duration * 1000);

  16.    }

  17.  }

  18.  clearCloseTimer = () => {

  19.    if (this.closeTimer) {

  20.      clearTimeout(this.closeTimer);

  21.      this.closeTimer = null;

  22.    }

  23.  }

  24.  render() {

  25.    const props = this.props;

  26.    const componentClass = `${props.prefixCls}-notice`;

  27.    const className = {

  28.      [`${componentClass}`]: 1,

  29.      [`${componentClass}-closable`]: props.closable,

  30.      [props.className]: !!props.className,

  31.    };

  32.    return (

  33.      <div className={classNames(className)} style={props.style} onMouseEnter={this.clearCloseTimer}

  34.        onMouseLeave={this.startCloseTimer}

  35.      >

  36.        <div className={`${componentClass}-content`}>{props.children}</div>

  37.          {props.closable ?

  38.            <a tabIndex="0" onClick={this.close} className={`${componentClass}-close`}>

  39.              <span className={`${componentClass}-close-x`}></span>

  40.            </a> : null

  41.          }

  42.      </div>

  43.    );

  44.  }

CreateChainedFunction

这个函数是使用在上面第 6 点,目的是为了能够删除当前的 notification 的缓存值,然后再执行外部传入的关闭回调函数,这个函数的实现在 rc-util 包中,这个包中有很多的方法是值得学习的,但是他在 github 上面的 star 数量却只有 73 个,这里软推一下吧。

 
   
   
 
  1. export default function createChainedFunction() {

  2.  const args = [].slice.call(arguments, 0);

  3.  if (args.length === 1) {

  4.    return args[0];

  5.  }

  6.  return function chainedFunction() {

  7.    for (let i = 0; i < args.length; i++) {

  8.      if (args[i] && args[i].apply) {

  9.        args[i].apply(this, arguments);

  10.      }

  11.    }

  12.  };

  13. }

这个函数中使用了 call 来将传入的参数变成一个数组,然后使用 apply 将传入的函数一一执行,这样子就能够实现一个函数接受多个函数,然后按照顺序执行,并且在第 6 点的代码中 this.remove.bind(this,notice.key) 使用了 bind 函数指定了 this 和传入参数,方法很精妙也很经典。

缓存机制

notification 组件在 ant-design-master 中使用了。

 
   
   
 
  1. const notificationInstance = {};

  2. destroy() {

  3. Object.keys(notificationInstance).forEach(cacheKey => {

  4.  notificationInstance[cacheKey].destroy();

  5.  delete notificationInstance[cacheKey];

  6. });

  7. }

来进行对创建实例的缓存,然后在销毁时将缓存的实例删除。

在 notification2.0.0 中也使用了缓存机制。

 
   
   
 
  1. add = (notice) => {

  2. const key = notice.key = notice.key || getUuid();

  3. this.setState(previousState => {

  4.  const notices = previousState.notices;

  5.  if (!notices.filter(v => v.key === key).length) {

  6.    return {

  7.      notices: notices.concat(notice),

  8.    };

  9.  }

  10. });

  11. }

  12. remove = (key) => {

  13. this.setState(previousState => {

  14.  return {

  15.    notices: previousState.notices.filter(notice => notice.key !== key),

  16.  };

  17. });

  18. }

在这个代码中看到这个缓存机制是使用的数组的方式实现的,但是在外层封装却是用的是是对象的方式实现,我猜想这两个代码不是一个人写的。。。代码风格不统一呢。

ReactDOM.unmountComponentAtNode

 
   
   
 
  1. Notification.newInstance = function newNotificationInstance(properties) {

  2. const {getContainer, ...props} = properties || {};

  3. let div;

  4. if (getContainer) {

  5.  div = getContainer();

  6. } else {

  7.  div = document.createElement('div');

  8.  document.body.appendChild(div);

  9. }

  10. const notification = ReactDOM.render(<Notification {...props} />, div);

  11. return {

  12.  notice(noticeProps) {

  13.    notification.add(noticeProps);

  14.  },

  15.  removeNotice(key) {

  16.    notification.remove(key);

  17.  },

  18.  component: notification,

  19.  destroy() {

  20.    ReactDOM.unmountComponentAtNode(div);

  21.    document.body.removeChild(div);

  22.  },

  23. };

  24. };

从上面的代码中看出, notification 组件使用 unmountComponentAtNode 函数将其进行销毁,这个方法适用于某些不能在当前组件中进行组件销毁的情况,举个例子,模态框的删除也可以使用这个方法执行。



长按指纹

一键关注


以上是关于Antd Menu组件应该如何结合react-router Link组件?的主要内容,如果未能解决你的问题,请参考以下文章

react+ts 造轮子仿antd Menu组件(初级版)

react+ts 造轮子仿antd Menu组件(升级版)

antd menu收缩时二级菜单不跟随的问题。

UMI学习-8 antd Menu点击 切换框架页内容页面

antd menu 样式修改

react antd Tabs组件如何修改默认样式-友好的解决方法