Skip to content

Commit 8a4cd6a

Browse files
committedFeb 7, 2014
event: add some documentation
1 parent caac481 commit 8a4cd6a

File tree

1 file changed

+61
-3
lines changed

1 file changed

+61
-3
lines changed
 

‎opal/browser/event/base.rb

+61-3
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,24 @@ module Browser
33
class Event
44
include Native
55

6+
# @see https://developer.mozilla.org/en-US/docs/Web/Guide/Events/Creating_and_triggering_events
67
class Definition
78
include Native
89

10+
# @private
911
def self.new(&block)
1012
data = super(`{ bubbles: true, cancelable: true }`)
1113
block.call(data) if block
1214

1315
data.to_n
1416
end
1517

18+
# Set the event as bubbling.
1619
def bubbles=(value)
1720
`#@native.bubbles = #{value}`
1821
end
1922

23+
# Set the event as cancelable.
2024
def cancelable=(value)
2125
`#@native.cancelable = #{value}`
2226
end
@@ -57,17 +61,22 @@ def self.target(&block)
5761
class Callback
5862
attr_reader :target, :name, :selector
5963

64+
# @private
6065
def initialize(target, name, selector = nil, &block)
6166
@target = target
6267
@name = name
6368
@selector = selector
6469
@block = block
6570
end
6671

67-
def call(e)
68-
to_proc.call(e)
72+
# Call the callback with the given event.
73+
#
74+
# @param event [native] the native event object
75+
def call(event)
76+
to_proc.call(event)
6977
end
7078

79+
# Get the native function linked to the callback.
7180
def to_proc
7281
@proc ||= -> event {
7382
%x{
@@ -86,10 +95,13 @@ def to_proc
8695
}
8796
end
8897

98+
# @!attribute [r] event
99+
# @return [Class] the class for the event
89100
def event
90101
Event.class_for(@name)
91102
end
92103

104+
# Stop listening for the event linked to the callback.
93105
def off
94106
target.off(self)
95107
end
@@ -102,6 +114,7 @@ def initialize(target, name, pair)
102114
@pair = pair
103115
end
104116

117+
# Stop listening for the event linked to the delegate.
105118
def off
106119
delegate = @target.delegated[@name]
107120
delegate.last.delete(@pair)
@@ -115,6 +128,26 @@ def off
115128

116129
Delegates = Struct.new(:callback, :handlers)
117130

131+
# @overload on(name, &block)
132+
#
133+
# Start listening for an event on the target.
134+
#
135+
# @param name [String] the event name
136+
#
137+
# @yieldparam event [Event] the event
138+
#
139+
# @return [Callback]
140+
#
141+
# @overload on(name, selector, &block)
142+
#
143+
# Start listening for an event on the target children.
144+
#
145+
# @param name [String] the event name
146+
# @param selector [String] the CSS selector to trigger the event on
147+
#
148+
# @yieldparam event [Event] the event
149+
#
150+
# @return [Delegate]
118151
def on(name, selector = nil, &block)
119152
raise ArgumentError, 'no block has been given' unless block
120153

@@ -152,6 +185,13 @@ def on(name, selector = nil, &block)
152185
end
153186
end
154187

188+
# Start listening for an event in the capturing phase.
189+
#
190+
# @param name [String] the event name
191+
#
192+
# @yieldparam event [Event] the event
193+
#
194+
# @return [Callback]
155195
def on!(name, &block)
156196
raise ArgumentError, 'no block has been given' unless block
157197

@@ -230,6 +270,13 @@ def attach!(*)
230270
end
231271
end
232272

273+
# @overload off()
274+
# Stop listening for any event.
275+
#
276+
# @overload off(what)
277+
# Stop listening for an event.
278+
#
279+
# @param what [Callback, String, Regexp] what to stop listening for
233280
def off(what = nil)
234281
case what
235282
when Callback
@@ -295,6 +342,12 @@ def detach(callback)
295342
end
296343
end
297344

345+
# Trigger an event on the target.
346+
#
347+
# @param name [String] the event name
348+
# @param args [Array] optional arguments to the event callback
349+
#
350+
# @yieldparam definition [Definition] definition to customize the event
298351
def trigger(event, *args, &block)
299352
if event.is_a? String
300353
event = Event.create(event, *args, &block)
@@ -303,7 +356,12 @@ def trigger(event, *args, &block)
303356
dispatch(event)
304357
end
305358

306-
# Trigger the event without bubbling.
359+
# Trigger an event on the target without bubbling.
360+
#
361+
# @param name [String] the event name
362+
# @param args [Array] optional arguments to the event callback
363+
#
364+
# @yieldparam definition [Definition] definition to customize the event
307365
def trigger!(event, *args, &block)
308366
trigger event, *args do |e|
309367
block.call(e) if block

0 commit comments

Comments
 (0)
Please sign in to comment.