Dispatcher.js 780 B

12345678910111213141516171819202122232425262728293031323334353637
  1. var dispCbs = [];
  2. var dispIns = [];
  3. function Dispatcher() {
  4. dispIns.push(this);
  5. dispCbs.push({});
  6. }
  7. Dispatcher.prototype = {
  8. on(type, cb) {
  9. let cbtypes = dispCbs[dispIns.indexOf(this)];
  10. let cbs = cbtypes[type] = cbtypes[type] || [];
  11. if (!~cbs.indexOf(cb)) {
  12. cbs.push(cb);
  13. }
  14. },
  15. off(type, cb) {
  16. let cbtypes = dispCbs[dispIns.indexOf(this)];
  17. let cbs = cbtypes[type] = cbtypes[type] || [];
  18. let curTypeCbIdx = cbs.indexOf(cb);
  19. if (~curTypeCbIdx) {
  20. cbs.splice(curTypeCbIdx, 1);
  21. }
  22. },
  23. fire(type, ...args) {
  24. let cbtypes = dispCbs[dispIns.indexOf(this)];
  25. let cbs = cbtypes[type] = cbtypes[type] || [];
  26. for (let i = 0; i < cbs.length; i++) {
  27. cbs[i].apply(null, args);
  28. }
  29. }
  30. };
  31. module.exports = Dispatcher;