React 折騰記 - (7) 基於React+Antd封裝聊天記錄(用到React的memo,lazy, Suspense這些)

CRPER發表於2018-11-22

前言

在重構的路上,總能寫點什麼東西出來 , 這元件並不複雜,放出來的總覺得有點用處

一方面當做筆記,一方面可以給有需要的人; 有興趣的小夥伴可以瞅瞅...


效果圖

React 折騰記 - (7) 基於React+Antd封裝聊天記錄(用到React的memo,lazy, Suspense這些)

React 折騰記 - (7) 基於React+Antd封裝聊天記錄(用到React的memo,lazy, Suspense這些)


實現的功能

  • 渲染支援圖片,文字,圖文
  • 支援刪除條目(並給予父回撥)

用到技術點:

  • css module: 包括內建的繼承特性,類似less的巢狀寫法那種
  • 用到的react 16.6特性
    • lazy, Suspense來實現子元件的懶載入
    • memo讓函式式元件有PureComponent的特性(淺比較)
  • flexbox來佈局
  • 用了lodashisEqual來深度比較物件,用於getDerivedStateFromProps(避免每次都更新state)

程式碼實現

index.js : 元件的主入口


import React, { PureComponent, lazy, Suspense } from 'react';
import { Avatar, Icon, Popover } from 'antd';
import style from './index.css';

// lodash 深比較
import isEqual from 'lodash/isEqual';

// 渲染不同內容的元件
const LazyComponent = lazy(() => import('./RenderContent'));

export default class index extends PureComponent {
  state = {
    deleteBtnSpin: false,
    loading: true,
    list: [
      {
        time: '2018-11-12 15:35:15',
        avatar:
          'https://sx-stag.oss-cn-shenzhen.aliyuncs.com/user-avatar/3_avatar.jpg?x-oss-process=image/resize,m_fixed,w_90,h_90/quality,q_90',
        nickname: '使用者甲',
        pos: 1,
        voice:
          'https://sx-stag.oss-cn-shenzhen.aliyuncs.com/user-chat/3_508340417_c84f79407f5bc16b9e7ee0373631cf35.aac',
        text: '',
      },
      {
        time: '2018-11-12 15:36:15',
        avatar:
          'https://sx-stag.oss-cn-shenzhen.aliyuncs.com/user-avatar/3_avatar.jpg?x-oss-process=image/resize,m_fixed,w_90,h_90/quality,q_90',
        nickname: '使用者甲',
        pos: 1,
        voice:
          'https://sx-stag.oss-cn-shenzhen.aliyuncs.com/user-chat/3_508340417_c84f79407f5bc16b9e7ee0373631cf35.aac',
        text: '',
      },
      {
        time: '2018-11-12 15:37:15',
        avatar:
          'https://sx-stag.oss-cn-shenzhen.aliyuncs.com/user-avatar/3_avatar.jpg?x-oss-process=image/resize,m_fixed,w_90,h_90/quality,q_90',
        nickname: '卡布奇諾',
        pos: 2,
        voice: '',
        text:
          '該詞語多用於諷刺和揶揄調侃。也有送快遞、查水電氣、社群送溫暖等引申說法。例如:(1)有人在網路上發表了不合乎相關法律法規或者破壞社會穩定和諧等訊息而被警方捕;(2)在貼吧或論壇裡擁有刪帖許可權的大小吧主,檢查貼吧裡是否存在灌水的帖子或跟帖,遇到就進行刪除的行為。',
      },
      {
        time: '2018-11-12 15:38:15',
        avatar:
          'https://sx-stag.oss-cn-shenzhen.aliyuncs.com/user-avatar/3_avatar.jpg?x-oss-process=image/resize,m_fixed,w_90,h_90/quality,q_90',
        nickname: '卡布奇諾',
        pos: 2,
        voice: '',
        img:
          'https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=3040115650,4147729993&fm=26&gp=0.jpg',
        text:
          '該詞語多用於諷刺和揶揄調侃。也有送快遞、查水電氣、社群送溫暖等引申說法。例如:(1)有人在網路上發表了不合乎相關法律法規或者破壞社會穩定和諧等訊息而被警方捕;(2)在貼吧或論壇裡擁有刪帖許可權的大小吧主,檢查貼吧裡是否存在灌水的帖子或跟帖,遇到就進行刪除的行為。',
      },
      {
        time: '2018-11-12 15:39:15',
        avatar:
          'https://sx-stag.oss-cn-shenzhen.aliyuncs.com/user-avatar/3_avatar.jpg?x-oss-process=image/resize,m_fixed,w_90,h_90/quality,q_90',
        nickname: '卡布奇諾',
        pos: 2,
        voice: '',
        img:
          'https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=3040115650,4147729993&fm=26&gp=0.jpg',
      },
    ],
  };

  static getDerivedStateFromProps(nextProps, prevState) {
    const { data } = nextProps;

    // 若是props和快取state一致,則不更新state
    if (isEqual(prevState.prevData, nextProps.data)) {
      return null;
    }
    // 若是沒有傳入props也是
    if (!data || !Array.isArray(data) || data.length <= 0) {
      return null;
    }
    return {
      list: data,
      prevData: nextProps.data,
    };
  }

  // 喚醒子元件的回撥過程
  wakeUpLazyComponent = () => {
    return <div>loading.....</div>;
  };

  // 懸浮條目顯示刪除按鈕
  showOperatBtn = index => {
    let tmpList = [...this.state.list];
    tmpList = tmpList.map((item, innerIndex) => {
      if (index === innerIndex) {
        item.operatBtn = true;
      } else {
        item.operatBtn = false;
      }
      return item;
    });
    this.setState({ list: tmpList });
  };

  // 關閉操作按鈕
  hideOperatBtn = index => {
    let tmpList = [...this.state.list];
    tmpList = tmpList.map((item, innerIndex) => {
      item.operatBtn = false;
      return item;
    });
    this.setState({ list: tmpList });
  };

  // 刪除這條回覆
  deleteCurrentReplay = (index, itemInfo) => {
    let tmpList = [...this.state.list];
    tmpList.splice(index, 1);
    this.setState({ list: tmpList });
    // 給父的回撥,把該item的所有資訊返回,外部再去執行介面操作什麼的
    if (this.props.deleteItem) {
      this.props.deleteItem(itemInfo);
    }
  };

  render() {
    const { list, deleteBtnSpin } = this.state;
    // 是否顯示操作區域
    const { operate } = this.props;
    // 渲染元件的前置條件
    const isRender = list && list.length > 0;
    return (
      <ul className={style['list-wrapper']}>
        {isRender &&
          list.map((item, listIndex) => {
            return (
              <Suspense fallback={this.wakeUpLazyComponent()} key={listIndex}>
                <li
                  className={style['list-item']}
                  onMouseOver={() => this.showOperatBtn(listIndex)}
                  onMouseLeave={() => this.hideOperatBtn(listIndex)}
                >
                  <span className={style['time']}>{item.time ? item.time : '時間佔位符'}</span>
                  <div
                    className={
                      item.pos === 1
                        ? style['list-item-horizontal']
                        : style['list-item-horizontal-reverse']
                    }
                  >
                    <Avatar
                      shape="square"
                      src={
                        item.avatar
                          ? item.avatar
                          : 'https://zos.alipayobjects.com/rmsportal/ODTLcjxAfvqbxHnVXCYX.png'
                      }
                    />
                    <div
                      className={
                        item.pos === 1 ? style['content-wrapper-flex'] : style['content-wrapper']
                      }
                    >
                      <p className={item.pos === 1 ? style.nickname : style['nickname-right']}>
                        {item.nickname ? item.nickname : '使用者暱稱佔位符'}
                      </p>
                      <div className={style.content}>
                        <LazyComponent {...item} />
                      </div>
                    </div>
                    {!!operate && item.operatBtn ? (
                      <Popover
                        content={'此操作會刪除該記錄'}
                        title="謹慎操作!"
                        onMouseEnter={() => {
                          this.setState({ deleteBtnSpin: true });
                        }}
                        onMouseLeave={() => {
                          this.setState({ deleteBtnSpin: false });
                        }}
                      >
                        <Icon
                          type="delete"
                          spin={deleteBtnSpin}
                          style={{
                            fontSize: 24,
                            alignSelf: 'flex-end',
                            color: `${this.state.deleteBtnSpin ? '#ec1414' : '#1890ff'}`,
                          }}
                          onClick={() => this.deleteCurrentReplay(listIndex, item)}
                        />
                      </Popover>
                    ) : null}
                  </div>
                </li>
              </Suspense>
            );
          })}
      </ul>
    );
  }
}


複製程式碼

RenderContent.js:渲染對話條目


import React, { memo } from 'react';
import style from './index.css';

// antd 圖文元件
import { Card } from 'antd';
const { Meta } = Card;

const RenderContent = memo(props => {
  if (props.img && props.text) {
    return (
      <Card
        hoverable
        style={{ width: 300 }}
        cover={<img alt="example" src={props.img ? props.img : ''} />}
      >
        <Meta description={props.text ? props.text : ''} />
      </Card>
    );
  }
  if (props.img) {
    return (
      <div className={style['img-wrapper']}>
        <img className={style['img-preview']} src={props.img ? props.img : ''} alt="photos" />
      </div>
    );
  }
  if (props.text) {
    return <div className={style['bubble']}>{props.text}</div>;
  }
  if (props.voice) {
    return <audio src={props.voice ? props.voice : ''} controls />;
  }
  return null;
});

export default RenderContent;


複製程式碼

index.css : 樣式

composescss module能識別的特殊欄位,用於繼承其他樣式的

/* 列表全域性樣式 */
.list-wrapper {
  list-style-type: none;
  list-style: none;
  padding-left: 0;
}

/* 列表基本樣式 */
.list-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-content: flex-start;
  margin: 15px 0;
}

/* 水平展開 */
.list-item-horizontal {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

/* 右對齊方式變化 */
.list-item-horizontal-reverse {
  composes: list-item-horizontal;
  flex-direction: row-reverse;
}

/* 使用者名稱 */
.nickname {
  font-size: 12px;
  padding:0 10px;
  color: #8a8484;
  margin-bottom: 5px;
}

/* 使用者名稱右對齊 */
.nickname-right {
  composes: nickname;
  text-align: right;
}

/* 時間樣式 */
.time {
  text-align: center;
  background-color: #cecece;
  color: #fff;
  border-radius: 3px;
  align-self: center;
  font-size: 12px;
  padding: 5px;
  margin:5px;
}

/* 內容區域 */
.content-wrapper {
  margin: 0 15px;
}

/* 彈性伸縮 */
.content-wrapper-responsive {
  flex: 1;
}

/* 氣泡文字 */
.bubble {
  padding: 8px;
  color: #333;
  max-width: 300px;
  line-height: 1.5;
  background-color: #a7e544;
  border-radius: 3px;
  text-align: left;
  text-indent: 10px;
  margin:0 3px;
}

/* 圖片預覽 */
.img-wrapper {
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 2px 1px -1px rgba(0, 0, 0, 0.12);
  border-radius: 3px;
  padding: 5px;
}

.img-preview {
  max-width: 200px;
}


複製程式碼

使用姿勢

接受的props

  • data, 格式是[Obj](陣列物件);
  • operate : 布林值(是否顯示操作區域)

列表條目欄位解釋

  • time: 時間
  • avatar: 使用者頭像
  • nickname:使用者暱稱
  • pos: 1 (1在左側渲染,2在右側渲染)
  • voice(音訊)/text(文字內容)/ img(圖片內容) => voice(唯一)/text + img / text(唯一)

  {
    time: '2018-11-12 15:35:15',
    avatar:
      'https://sx-stag.oss-cn-shenzhen.aliyuncs.com/user-avatar/3_avatar.jpg?x-oss-process=image/resize,m_fixed,w_90,h_90/quality,q_90',
    nickname: '使用者甲',
    pos: 1,
    voice:
      'https://sx-stag.oss-cn-shenzhen.aliyuncs.com/user-chat/3_508340417_c84f79407f5bc16b9e7ee0373631cf35.aac',
    text: '',
    img:
          'https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=3040115650,4147729993&fm=26&gp=0.jpg'
  },

複製程式碼

總結

  • 上拉下拉不考慮,因為沒這個需求,資料量不大..一個人的留言十幾二十多條到頂了
  • 有需要的可以自行新增,也就是多暴露兩個事件給外部(判斷滾動的高度)

有不對之處請留言,會及時修正,謝謝閱讀...

相關文章