Last active
December 10, 2015 01:18
-
-
Save bit-dragon/4356844 to your computer and use it in GitHub Desktop.
(Observer Pattern) PubSub on javascript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var publisher = { | |
subscribers: { | |
any: [] // Event type: subscribers | |
}, | |
subscribe: function (fn, type) { | |
type = type || 'any'; | |
if (typeof this.subscribers[type] === 'undefined') { | |
this.subscribers[type] = []; | |
} | |
this.subscribers[type].push(fn); | |
}, | |
unsubscribe: function (fn, type) { | |
this.visitSubscribers('unsubscribe', fn, type); | |
}, | |
publish: function (publication, type) { | |
this.visitSubscribers('publish', publication, type); | |
}, | |
visitSubscribers: function (action, arg, type) { | |
var pubtype = type || 'any', | |
subscribers = this.subscribers[pubtype], | |
i, | |
max = subscribers.length; | |
for (i = 0; i < max; i++) { | |
if (action === 'publish') { | |
subscribers[i](arg); | |
} else { | |
if (subscribers[i] === arg) { | |
subscribers.splice(i, 1); | |
} | |
} | |
} | |
} | |
} | |
function makePublisher(o) { | |
var i; | |
for (i in publisher) { | |
if (publisher.hasOwnProperty(i) && typeof publisher[i] === 'function') { | |
o[i] = publisher[i]; | |
} | |
} | |
o.subscribers = { any: [] }; | |
} | |
var paper = { | |
daily: function () { | |
this.publish('big news today'); | |
}, | |
monthly: function () { | |
this.publish('interesting analysus', 'monthly'); | |
} | |
} | |
makePublisher(paper); | |
var joe = { | |
drinkCoffee: function (paper) { | |
console.log('Just read' + paper); | |
}, | |
sundayPreNap: function (monthly) { | |
console.log('About to fall asleep reading this' + monthly) | |
} | |
} | |
paper.subscribe(joe.drinkCoffee); | |
paper.subscribe(joe.sundayPreNap, 'monthly'); | |
paper.daily(); | |
paper.daily(); | |
paper.monthly(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment