Skip to content

Instantly share code, notes, and snippets.

@nelix
Forked from yitsushi/EventSystem.js
Created July 20, 2014 11:49
Show Gist options
  • Save nelix/039421966ae2149c863a to your computer and use it in GitHub Desktop.
Save nelix/039421966ae2149c863a to your computer and use it in GitHub Desktop.
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
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment