mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2024-11-26 10:10:12 +00:00
70 lines
1.5 KiB
JavaScript
70 lines
1.5 KiB
JavaScript
|
|
||
|
/**
|
||
|
Definition of the Verb class.
|
||
|
@module verbs/verb
|
||
|
@license MIT. See LICENSE.md for details.
|
||
|
*/
|
||
|
|
||
|
(function() {
|
||
|
var Class, EVENTS, Verb;
|
||
|
|
||
|
Class = require('../utils/class');
|
||
|
|
||
|
EVENTS = require('events');
|
||
|
|
||
|
|
||
|
/**
|
||
|
An instantiation of a HackMyResume command.
|
||
|
@class Verb
|
||
|
*/
|
||
|
|
||
|
Verb = module.exports = Class.extend({
|
||
|
|
||
|
/** Constructor. Automatically called at creation. */
|
||
|
init: function(moniker) {
|
||
|
this.moniker = moniker;
|
||
|
this.emitter = new EVENTS.EventEmitter();
|
||
|
},
|
||
|
|
||
|
/** Forward subscriptions to the event emitter. */
|
||
|
on: function() {
|
||
|
return this.emitter.on.apply(this.emitter, arguments);
|
||
|
},
|
||
|
|
||
|
/** Fire an arbitrary event, scoped to "hmr:". */
|
||
|
fire: function(evtName, payload) {
|
||
|
payload = payload || {};
|
||
|
payload.cmd = this.moniker;
|
||
|
this.emitter.emit('hmr:' + evtName, payload);
|
||
|
return true;
|
||
|
},
|
||
|
|
||
|
/** Handle an error condition. */
|
||
|
err: function(errorCode, payload, hot) {
|
||
|
payload = payload || {};
|
||
|
payload.sub = payload.fluenterror = errorCode;
|
||
|
payload["throw"] = hot;
|
||
|
this.fire('error', payload);
|
||
|
if (hot) {
|
||
|
throw payload;
|
||
|
}
|
||
|
return true;
|
||
|
},
|
||
|
|
||
|
/** Fire the 'hmr:status' error event. */
|
||
|
stat: function(subEvent, payload) {
|
||
|
payload = payload || {};
|
||
|
payload.sub = subEvent;
|
||
|
this.fire('status', payload);
|
||
|
return true;
|
||
|
},
|
||
|
|
||
|
/** Associate error info with the invocation. */
|
||
|
setError: function(code, obj) {
|
||
|
this.errorCode = code;
|
||
|
this.errorObj = obj;
|
||
|
}
|
||
|
});
|
||
|
|
||
|
}).call(this);
|