1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
module Faye::WebSocket::API
class Event
attr_reader :type, :bubbles, :cancelable
attr_accessor :target, :current_target, :event_phase
CAPTURING_PHASE = 1
AT_TARGET = 2
BUBBLING_PHASE = 3
def initialize(event_type, options)
@type = event_type
options.each { |key, value| instance_variable_set("@#{ key }", value) }
end
def init_event(event_type, can_bubble, cancelable)
@type = event_type
@bubbles = can_bubble
@cancelable = cancelable
end
def stop_propagation
end
def prevent_default
end
end
class OpenEvent < Event
end
class MessageEvent < Event
attr_reader :data
end
class CloseEvent < Event
attr_reader :code, :reason
end
class ErrorEvent < Event
attr_reader :message
end
TYPES = {
'open' => OpenEvent,
'message' => MessageEvent,
'close' => CloseEvent,
'error' => ErrorEvent
}
def Event.create(type, options = {})
TYPES[type].new(type, options)
end
end
|