make canon and settings use EventEmitter
This commit is contained in:
parent
81cb24ef17
commit
3d3cef1a6f
2 changed files with 15 additions and 22 deletions
|
|
@ -39,7 +39,7 @@ define(function(require, exports, module) {
|
|||
|
||||
var console = require('pilot/console');
|
||||
var Trace = require('pilot/stacktrace').Trace;
|
||||
//var Event = require('events').Event;
|
||||
var MEventEmitter = require("pilot/event_emitter").MEventEmitter;
|
||||
|
||||
exports.startup = function(data, reason) {
|
||||
if (!data.env || !data.env.settings) {
|
||||
|
|
@ -91,7 +91,7 @@ exports.Canon.prototype = {
|
|||
}
|
||||
};
|
||||
|
||||
// exports.addedRequestOutput = new Event();
|
||||
oop.implement(exports, MEventEmitter);
|
||||
|
||||
/**
|
||||
* Current requirements are around displaying the command line, and provision
|
||||
|
|
@ -130,7 +130,7 @@ exports.addRequestOutput = function(request) {
|
|||
exports.requests.shiftObject();
|
||||
}
|
||||
|
||||
exports.addedRequestOutput(request);
|
||||
exports.$dispatchEvent('addedRequestOutput', { request: request });
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
@ -189,10 +189,10 @@ exports.Request = function(options) {
|
|||
this.end = null;
|
||||
this.completed = false;
|
||||
this.error = false;
|
||||
|
||||
// this.changed = new Event();
|
||||
};
|
||||
|
||||
oop.implement(exports.Request.prototype, MEventEmitter);
|
||||
|
||||
/**
|
||||
* Lazy init to register with the history should only be done on output.
|
||||
* init() is expensive, and won't be used in the majority of cases
|
||||
|
|
@ -238,7 +238,7 @@ exports.Request.prototype.output = function(content) {
|
|||
}
|
||||
|
||||
this.outputs.push(content);
|
||||
this.changed();
|
||||
this.$dispatchEvent('changed', {});
|
||||
|
||||
return this;
|
||||
};
|
||||
|
|
@ -254,11 +254,9 @@ exports.Request.prototype.done = function(content) {
|
|||
|
||||
if (content) {
|
||||
this.output(content);
|
||||
} else {
|
||||
this.changed();
|
||||
}
|
||||
|
||||
this.$dispatchEvent('changed', {});
|
||||
};
|
||||
|
||||
|
||||
|
||||
});
|
||||
|
|
|
|||
|
|
@ -43,9 +43,10 @@
|
|||
|
||||
define(function(require, exports, module) {
|
||||
|
||||
var console = require("util/console");
|
||||
var types = require("types");
|
||||
var Event = require("events").Event;
|
||||
var console = require("pilot/console");
|
||||
var oop = require("pilot/oop").oop;
|
||||
var types = require("pilot/types");
|
||||
var MEventEmitter = require("pilot/event_emitter").MEventEmitter;
|
||||
|
||||
exports.startup = function(data, reason) {
|
||||
// TODO add extension point in new style
|
||||
|
|
@ -141,12 +142,6 @@ function Settings(persister) {
|
|||
if (persister) {
|
||||
this.setPersister(persister);
|
||||
}
|
||||
|
||||
/**
|
||||
* Event that tells people when a setting has changed.
|
||||
*/
|
||||
// TODO: Fix events
|
||||
// this.settingChange = new Event({ keyElement: 0 });
|
||||
};
|
||||
|
||||
Settings.prototype = {
|
||||
|
|
@ -235,9 +230,7 @@ Settings.prototype = {
|
|||
persister.persistValue(this, key, value);
|
||||
}
|
||||
|
||||
// Inform subscriptions of the change
|
||||
// TODO: fix events
|
||||
// this.settingChange(key, converted);
|
||||
this.$dispatchEvent('settingChange', { key: key, value: value });
|
||||
return this;
|
||||
},
|
||||
|
||||
|
|
@ -318,6 +311,8 @@ Settings.prototype = {
|
|||
}
|
||||
};
|
||||
|
||||
oop.implement(Settings.prototype, MEventEmitter);
|
||||
|
||||
exports.settings = new Settings(new MemoryPersister());
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue