mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 17:45:10 +01:00
31 lines
615 B
JavaScript
31 lines
615 B
JavaScript
|
'use strict';
|
||
|
|
||
|
import alt from '../alt';
|
||
|
import EventActions from '../actions/event_actions';
|
||
|
|
||
|
|
||
|
|
||
|
class DebugHandler {
|
||
|
constructor() {
|
||
|
let symbols = [];
|
||
|
|
||
|
for (let k in EventActions) {
|
||
|
if (typeof EventActions[k] === 'symbol') {
|
||
|
symbols.push(EventActions[k]);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
this.bindListeners({
|
||
|
onWhateverEvent: symbols
|
||
|
});
|
||
|
}
|
||
|
|
||
|
onWhateverEvent() {
|
||
|
let args = arguments[0];
|
||
|
let symbol = arguments[1];
|
||
|
console.debug(symbol, args);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default alt.createStore(DebugHandler, 'DebugHandler');
|