js的单例的简单实现

class Timer {
  constructor() {
    this.timerArr = [];
    this.timerAcc = 0;
    this.timerCycle = 100;
    this.timerFn = () => {
      // 判断是否有轮询方法
      if (this.timerArr.length) {
        this.timerArr.forEach(({ FN, cycle }) => {
          // FN是否为function, 且是否是到轮询周期
          if (Object.prototype.toString.call(FN) === '[object Function]' && !(this.timerAcc % cycle)) {
            FN();
          }
        });
        this.timerAcc = this.timerAcc + 1 >= 12000 ? 0 : this.timerAcc + 1;
      } else {
        // 若没有轮询方法 清除定时器
        clearInterval(this.timer);
        this.timer = null;
      }
    };
    this.timer = null;
  }

  add({ FN, ID, cycle }) {
    // 生成唯一标识
    const symbol = Symbol.for(ID + new Date().getTime());
    this.timerArr.push({
      FN,
      symbol,
      cycle,
    });
    // 若timer为空则重新创建定时器
    if (!this.timer) this.timer = setInterval(this.timerFn, this.timerCycle);
    return symbol;
  }

  remove({ symbol }) {
    this.timerArr = this.timerArr.filter(item => item.symbol !== symbol);
  }
}
const tim = new Timer();

export default tim;

实现了一个简单的工厂函数,不同的是,在文件的结尾,对外提供的是一个实例

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值