Skip to content

Instantly share code, notes, and snippets.

@ppscvalentin
Created August 22, 2017 05:15
Show Gist options
  • Save ppscvalentin/0eb82b48d7878b357f31f7a36db46b9d to your computer and use it in GitHub Desktop.
Save ppscvalentin/0eb82b48d7878b357f31f7a36db46b9d to your computer and use it in GitHub Desktop.
var events = (function(){
var topics = {};
var hOP = topics.hasOwnProperty;
return {
subscribe: function(topic, listener) {
// Create the topic's object if not yet created
if(!hOP.call(topics, topic)) topics[topic] = [];
// Add the listener to queue
var index = topics[topic].push(listener) -1;
// Provide handle back for removal of topic
return {
remove: function() {
delete topics[topic][index];
}
};
},
publish: function(topic, info) {
// If the topic doesn't exist, or there's no listeners in queue, just leave
if(!hOP.call(topics, topic)) return;
// Cycle through topics queue, fire!
topics[topic].forEach(function(item) {
item(info != undefined ? info : {});
});
}
};
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment