0.2.4 • Published 4 years ago

@danehansen/event-dispatcher v0.2.4

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

EventDispatcher npm bundle size (scoped) npm

Class : public class EventDispatcher
Inheritance : EventDispatcher > Object
Subclasses : Preloader, Sprite, Timer

The EventDispatcher class is the base class for all classes that dispatch events. It is totally ripped off from the AS3 EventDispatcher, but simplified. EventDispatcher can also be used without creating an instance like singleton emitter.

Installation

npm install --save @danehansen/event-dispatcher

Usage

As a module:

import EventDispatcher from '@danehansen/event-dispatcher';
var eventDispatcher = new EventDispatcher();
eventDispatcher.addEventListener('event', onEvent);
eventDispatcher.dispatchEvent('event');

function onEvent(evt) {
  console.log('hi!');
}

In your browser:

<script src='danehansen-EventDispatcher.min.js'></script>
<script>
  var EventDispatcher = window.danehansen.EventDispatcher;
  var eventDispatcher = new EventDispatcher();
  eventDispatcher.addEventListener('event', onEvent);
  eventDispatcher.dispatchEvent('event');

  function onEvent(evt) {
    console.log('hi!');
  }
</script>

Public Static Methods

  • addEventListener(type:String, listener:Function)
    static Registers an event listener object with EventDispatcher so that it will dispatch notification of an event.
  • dispatchEvent(type:String, ...args:*)
    static Emits an event, and passes along any extra arguments to the registered listeners.
  • removeEventListener (type:String, listener:Function)
    static Removes a listener from EventDispatcher.

Public Methods

  • EventDispatcher(target:Object)
    Aggregates an instance of the EventDispatcher class.
  • addEventListener(type:String, listener:Function)
    Registers an event listener object with an EventDispatcher object so that the listener receives notification of an event.
  • clearEventListeners()
    Clears all event listeners of the instance.
  • dispatchEvent(type:String)
    Dispatches an event into the event flow.
  • removeEventListener (type:String, listener:Function)
    Removes a listener from the EventDispatcher object.
0.2.4

4 years ago

0.2.3

5 years ago

0.2.2

5 years ago

0.2.1

6 years ago

0.2.0

7 years ago

0.1.7

7 years ago

0.1.6

7 years ago

0.1.5

7 years ago

0.1.4

7 years ago

0.1.3

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago