91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

react 創建單例組件的方法

發布時間:2020-10-25 14:37:55 來源:腳本之家 閱讀:596 作者:Unique111 欄目:web開發

需求背景

最近有個需求,需要在項目中添加一個消息通知彈窗,告知用戶一些信息。

用戶看過消息后,就不再彈窗了。

問題

很明顯,這個需要后端的介入,提供相應的接口(這樣可擴展性更好)。

在開發過程中,遇到個問題:由于我們的系統是多頁面的,所以每次切換頁面,都會去請求后端的消息接口。。有一定的性能損耗。

因為是多頁面系統,使用單例組件貌似也沒啥意義(不過是個機會學習學習單例組件是怎么寫的)。
于是,想到使用瀏覽器緩存來記錄是否彈過窗了(當然,得設定過期時間)。

如何寫單例組件

1、工具函數:

import ReactDOM from 'react-dom';

/**
 * ReactDOM 不推薦直接向 document.body mount 元素
 * 當 node 不存在時,創建一個 div
 */
function domRender(reactElem, node) {
 let div;
 if (node) {
  div = typeof node === 'string'
   ? window.document.getElementById(node)
   : node;
 } else {
  div = window.document.createElement('div');
  window.document.body.appendChild(div);
 }
 return ReactDOM.render(reactElem, div);
}

2、組件:

export class SingletonLoading extends Component {
 globalLoadingCount = 0;
 pageLoadingCount = 0;

 state = {
  show: false,
  className: '',
  isGlobal: undefined
 }

 delayTimer = null;

 start = (options = {}) => {
  // ...
 }

 stop = (options = {}) => {
  // ...
 }

 stopAll() {
  if (!this.state.show) return;
  this.globalLoadingCount = 0;
  this.pageLoadingCount = 0;
  this.setState({show: false});
 }

 get isGlobalLoading() {
  return this.state.isGlobal && this.state.show;
 }

 get noWaiting() {
  return this.noGlobalWaiting && this.pageLoadingCount < 1;
 }

 get toPageLoading() {
  return this.noGlobalWaiting && this.isGlobalLoading;
 }

 get noGlobalWaiting() {
  return this.globalLoadingCount < 1;
 }

 render() {
  return <BreakLoading {...this.state} />;
 }
}

// 使用上面的工具函數
export const loading = domRender(<SingletonLoading />);

3、使用組件:

import loading from 'xxx';

// ...
loading.start();
loading.stop();

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

新津县| 通辽市| 灵宝市| 淄博市| 长岛县| 宁明县| 益阳市| 阳江市| 滨海县| 米泉市| 黄骅市| 东乌珠穆沁旗| 会同县| 天门市| 临漳县| 海原县| 佳木斯市| 渝中区| 卢龙县| 长宁县| 江阴市| 博白县| 富平县| 玉环县| 栖霞市| 九江市| 和顺县| 卢湾区| 平乐县| 铜梁县| 鸡西市| 蛟河市| 陕西省| 什邡市| 衡南县| 万荣县| 大宁县| 长岛县| 锦州市| 门头沟区| 台安县|