Skip to content

Instantly share code, notes, and snippets.

@yitsushi
Created May 6, 2014 09:52
Show Gist options
  • Star 22 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save yitsushi/e3b7823f7d4bf34faa4f to your computer and use it in GitHub Desktop.
Save yitsushi/e3b7823f7d4bf34faa4f to your computer and use it in GitHub Desktop.
EventSystem that I use with React.js to communicate between components
var EventSystem = (function() {
var self = this;
self.queue = {};
return {
publish: function (event, data) {
var queue = self.queue[event];
if (typeof queue === 'undefined') {
return false;
}
while(queue.length > 0) {
(queue.shift())(data);
}
return true;
},
subscribe: function(event, callback) {
if (typeof self.queue[event] === 'undefined') {
self.queue[event] = [];
}
self.queue[event].push(callback);
}
};
}());
var RiskList = React.createClass({
getInitialState: function() {
return { risks: [] };
},
componentDidMount: function() {
// someting
},
render: function() {
EventSystem.publish('risk.count.update', this.state.risks.length);
// something
}
}
var RiskPage = React.createClass({
updateRiskCount: function(count) {
this.setState({
riskCount: count
});
},
componentDidMount: function() {
EventSystem.subscribe('risk.count.update', this.updateRiskCount);
},
getInitialState: function() {
return {
riskCount: 0
};
},
render: function() {
// something
}
});
@binjospookie
Copy link

Is removing something from the events array, so I had to:
jQuery.each( queue, function( key, method ) {
(method)(data);
});

I had to:

Array.prototype.forEach.call(
   queue,
    ( element ) =>
    {
        (element)(data);
    }

); 

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment