1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2024-09-28 20:19:12 +01:00
HackMyResume/src/verbs/verb.coffee

93 lines
1.8 KiB
CoffeeScript
Raw Normal View History

###*
Definition of the Verb class.
@module verbs/verb
@license MIT. See LICENSE.md for details.
###
# Use J. Resig's nifty class implementation
Class = require '../utils/class'
EVENTS = require 'events'
2016-01-31 13:37:12 +00:00
HMEVENT = require '../core/event-codes'
2016-02-02 02:14:36 +00:00
Promise = require 'pinkie-promise'
###*
An instantiation of a HackMyResume command.
@class Verb
###
Verb = module.exports = Class.extend
###* Constructor. Automatically called at creation. ###
2016-01-31 13:37:12 +00:00
init: ( moniker, workhorse ) ->
@moniker = moniker
@workhorse = workhorse
2016-02-02 02:14:36 +00:00
@emitter = new EVENTS.EventEmitter()
return
2016-01-31 13:37:12 +00:00
###* Invoke the command. ###
invoke: ->
@stat HMEVENT.begin, cmd: @moniker
2016-02-02 02:14:36 +00:00
argsArray = Array::slice.call arguments
that = @
@promise = new Promise (res, rej) ->
that.resolve = res; that.reject = rej
that.workhorse.apply that, argsArray; return
2016-01-31 13:37:12 +00:00
###* Forward subscriptions to the event emitter. ###
on: ->
2016-01-31 13:37:12 +00:00
@emitter.on.apply @emitter, arguments
###* Fire an arbitrary event, scoped to "hmr:". ###
fire: (evtName, payload) ->
payload = payload || { }
2016-01-31 13:37:12 +00:00
payload.cmd = @moniker
@emitter.emit 'hmr:' + evtName, payload
true
###* Handle an error condition. ###
err: ( errorCode, payload, hot ) ->
payload = payload || { }
payload.sub = payload.fluenterror = errorCode
payload.throw = hot
2016-02-02 02:14:36 +00:00
@setError errorCode, payload
if payload.quit
@reject payload
@fire 'error', payload
if hot
throw payload
true
###* Fire the 'hmr:status' error event. ###
stat: ( subEvent, payload ) ->
payload = payload || { }
payload.sub = subEvent
2016-01-31 13:37:12 +00:00
@fire 'status', payload
true
2016-01-31 13:37:12 +00:00
2016-02-02 02:14:36 +00:00
hasError: -> @errorCode || @errorObj
###* Associate error info with the invocation. ###
setError: ( code, obj ) ->
@errorCode = code
@errorObj = obj
return