为了账号安全,请及时绑定邮箱和手机立即绑定

【九月打卡】第10天 手写 EventBus

标签:
JavaScript

课程名称2周刷完100道前端优质面试真题
课程章节:第8章 前端面试技能拼图6: 编写高质量代码 - 正确,完整,清晰,鲁棒
主讲老师双越
课程内容
今天学习的内容包括:
8-16 手写EventBus自定义事件-包括on和once
8-17 手写EventBus自定义事件-on和once分开存储
8-18 手写EventBus自定义事件-单元测试

课程收获

API 操作:

on 同一个key,可绑定多个函数,依次执行。
once 同一个key,可绑定多个函数,依次执行,但只会触发一次。
emit 触发关键字,传参。
off 同一个key,可解绑某个或全部函数。

const e = new EventBus();
e.on('key1', fn2);
e.once('key1', fn3);
e.off('key1', fn1);
e.emit('key1', 10, 20);

API 实现思路:

整体用对象存储,key 对应数组,以执行函数对象 { fn, isOnce } 填充。
on 即往对应 key 数组添加执行函数对象。
once 同上,但要标记 isOnce: true
off 即找出 key 数组内对应函数对象删除或清空整个数组。
emit 找出 key 对应数组依次执行,并 filter isOnce为 true 的,重新赋值对应数组。

    class EventBus {
      constructor() {
        this.events = {};
      }
      emit(type, ...arg) {
        const fnList = this.events[type];
        if (fnList == null) return;
        this.events[type] = fnList.filter((item) => {
          const { fn, isOnce } = item;
          fn(...arg);
          return !isOnce;
        });
      }
      on(type, fn, isOnce = false) {
        const events = this.events;
        if (!events[type]) {
          events[type] = [];
        }
        events[type].push({
          fn,
          isOnce,
        });
      }
      once(type, fn) {
        this.on(type, fn, true);
      }
      off(type, fn) {
        if (fn) {
          const fnList = this.events[type];
          if (fnList && fnList.length) {
            this.events[type] = fnList.filter((item) => item.fn !== fn);
          }
        } else {
          this.events[type] = [];
        }
      }
    }

以上,结束。

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消