Make a simple custom EventEmitter 怎樣給文件命名才能顯得比較專業

来源:https://www.cnblogs.com/sad89683/archive/2018/03/19/8605545.html
-Advertisement-
Play Games

Make a simple custom EventEmitter ...


Thoughts

Recently I have been reading the book Async Javascript about JS asynchronicity and JS event is one of the useful solutions to the problem. To get a deeper understanding of how events work, I create a custom EventEmitter which constains most of the working functionalities of Node EventEmitter. The source code is no more than 60 lines.

General ideas

The general ideas is to have an object (this.handlers) to hold the mapping from event name(type: string) to its associated listeners/handlers(type: Array\). When each event is triggerd, walk through the associated listeners/handlers and execute them.

  1. class Emitter {
  2. constructor(){
  3. /**
  4. * keep mapping information。
  5. * e.g.
  6. * {
  7. * 'event1': [fn1, fn2],
  8. * 'event2': [fn3, fn4, fn5]
  9. * }
  10. */
  11. this.handlers = {};
  12. }
  13. }
複製代碼

Some details about the methodson - event binding

  1. on(evt, handler) {
  2. this.handlers[evt] = this.handlers[evt] || [];
  3. let hdl = this.handlers[evt];
  4. hdl.push(handler);
  5. return this;
  6. }
複製代碼

We don't check the duplicates when binding the handler for simplicity. That is to say, if you call on for the same function twice, then it will be called twice when the event is triggered. The method returns this to allow for method chaining。

off - event unbinding

  1. removeListener(evt, handler) {
  2. this.handlers[evt] = this.handlers[evt] || [];
  3. let hdl = this.handlers[evt];
  4. let index = hdl.indexOf(handler);
  5. if(index >= 0) {
  6. hdl.splice(index, 1);
  7. }
  8. return this;
  9. }
複製代碼

Note that here we compare the function reference with strict comparision when unbinding a function. Function in Javascript is compared by their reference, same as how objects comparision works.

  1. function f1() {
  2. console.log('hi');
  3. }
  4. function f2() {
  5. console.log('hi');
  6. }
  7. let f3 = f1;
  8. console.log(f1 === f2); //false
  9. console.log(f1 === f3); //true
複製代碼

once - binding, but only can be triggerd once

  1. once(evt, handler) {
  2. this.handlers[evt] = this.handlers[evt] || [];
  3. let hdl = this.handlers[evt];
  4. hdl.push(function f(...args){
  5. handler.apply(this, args);
  6. this.removeListener(evt, f);
  7. });
  8. return this;
  9. }
複製代碼

It works similarly with on method. But we need to wrap the handler with another function such that we can remove the binding once the handler is executed to achieve triggered only once.

emit - trigger event

  1. emit(evt, ...args) {
  2. this.handlers[evt] = this.handlers[evt] || [];
  3. let hdl = this.handlers[evt];
  4. hdl.forEach((it) => {
  5. it.apply(this, args);
  6. });
  7. return this;
  8. }
複製代碼

When an event is triggered, find all its associated handlers(i.e. this.handlers[evt]) and execute them.

eventNames - get the list of registered events which has active(i.e. not-empty) handlers

  1. eventNames() {
  2. return Object.keys(this.handlers).reduce((arr, evt) => {
  3. if(this.listenerCount(evt)) {
  4. arr.push(evt);
  5. }
  6. return arr;
  7. }, []);
  8. }
複製代碼

Here we don't simply return all the keys of the this.handlers , as some events can be binded with some handlers and then remove them afterwards. In the case, the event name exists as a valid key in this.handlers but without active handlers. E.g.

  1. let server = new Emitter();
  2. let fn = function(){};
  3. server.on('connection', fn);
  4. server.removeListener('connection', fn);
  5. server.handlers.connection; //[]
複製代碼

Therefore, we need to filter out the events with empty hanlders. Here we use Array.prototype.reduce to make the code a little bit cleaner. There are many situations where reduce can be useful, such as computing the sum of an array:

  1. function sumWithForEach(arr) { // with forEach
  2. let sum = 0;
  3. arr.forEach(it => {
  4. sum += it;
  5. })
  6. return sum;
  7. }
  8. function sumWithReduce(arr) { // with reduce
  9. return arr.reduce((sum, current) => {
  10. return sum + current;
  11. })
  12. }
複製代碼

ReferenceAsync JavascriptNoticeIf you benefit from this Repo,Please「Star 」to Support. If you want to follow the latest news/articles for the series of reading notes, Please 「Watch」to Subscribe.


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 添加jedis依賴 在項目pom.xml文件中添加依賴 添加redis配置 在項目resources目錄中找到application.properties文件添加reids配置信息 測試例子 首先我們需要定義一個RedisConfig配置類,通過這個配置類對redis的相關屬性進行設置與獲取 接下來 ...
  • 這裡是最基本的搭建:http://www.cnblogs.com/xuyiqing/p/8600888.html 接下來做到了簡單的增刪改查:http://www.cnblogs.com/xuyiqing/p/8601506.html 但是發現代碼重覆過多等問題 接下來整合併實現DAO開發: 一:原 ...
  • java web用監聽器listener簡單的實現線上統計人數 ...
  • 參數和變數 按引用傳遞參數 按照順序進行賦值,函數中的變數a就指向了x,x是第一個實參,a這個參數指向了x所引用的對象,並不是把3這個數複製一個放到函數中,這種調用對象的方式,稱之為按引用傳遞。 一個程式的所有的變數並不是在哪個位置都可以訪問的。訪問許可權決定於這個變數是在哪裡賦值的。 變數的作用域決 ...
  • 首先看C3p0這個連接池,最大優勢可以自動讀取預設的配置文件 配置文件中有常規的4個主選項和一些其他配置 只需要使用C3p0中的實現javax.sql.DateSource介面的實現類ComboPooledDataSource 創建對象即可 private static ComboPooledDat ...
  • 未對 equals 方法進行重寫,就是用於判斷引用數據類型的變數所指向的對象的地址是否相等,即是否指向同一個對象; == 對於基本數據類型的變數,比較的是變數存儲的值是否相等,而作用於引用類型的變數時,比較的是變數所指向的對象在記憶體中的地址值是否相等。 ...
  • 調用函數 標準的PHP發行包中有1000多個標準函數 假設函數庫已經編譯到安裝發行包中或include()或require()語句包含了相應的函數庫,就可以指定函數名調用函數 計算5的3次方,就可以調用PHP的pow()函數 也可以不把值賦給變數,而是直接輸出 也可以進行拼接 或者使用printf( ...
  • Python很火,我也下了個來耍耍一陣子。可是漸漸地,我已經不滿足於它的基本庫了,我把目光轉到了Numpy~~~~~ 然而想法總是比現實容易,因為我之前下的是Python3.3.x,所有沒有自帶pip!!!(這裡得插一句:很多人以為Python都是自帶pip的,之前的我也是(掩臉笑),印象中是Pyt ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...